/* ========================================
   KASHOMBA ELECTRICAL SOLUTION - PREMIUM STYLES
   Theme: Black, Gold, Teal, White
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Times New Roman', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #DAA520;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a6c6c;
}

/* ========== LOADING INDICATOR ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-electric {
    text-align: center;
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 30px;
    border-radius: 20px;
}

.loader-bolt {
    font-size: 70px;
    color: #DAA520;
    animation: electricPulse 0.7s ease-in-out infinite;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 15px #DAA520);
}

@keyframes electricPulse {
    0% { opacity: 0.8; transform: scale(1); text-shadow: 0 0 5px #DAA520, 0 0 10px #DAA520; }
    50% { opacity: 1; transform: scale(1.12); text-shadow: 0 0 20px #DAA520, 0 0 30px #0a6c6c; color: #FFD700; }
    100% { opacity: 0.8; transform: scale(1); text-shadow: 0 0 5px #DAA520, 0 0 10px #DAA520; }
}

.electric-lines {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.electric-line {
    width: 4px;
    background: linear-gradient(180deg, #DAA520, #0a6c6c, #DAA520);
    border-radius: 3px;
    animation: electricZap 0.8s ease-in-out infinite;
}

.electric-line:nth-child(1) { animation-delay: 0s; height: 20px; }
.electric-line:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.electric-line:nth-child(3) { animation-delay: 0.2s; height: 25px; }
.electric-line:nth-child(4) { animation-delay: 0.3s; height: 40px; width: 5px; }
.electric-line:nth-child(5) { animation-delay: 0.4s; height: 28px; }
.electric-line:nth-child(6) { animation-delay: 0.5s; height: 32px; }
.electric-line:nth-child(7) { animation-delay: 0.6s; height: 22px; }
.electric-line:nth-child(8) { animation-delay: 0.7s; height: 38px; width: 5px; }

@keyframes electricZap {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.2); background: #FFD700; }
}

.loader-ring {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.loader-ring .ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #DAA520;
    animation: ringSpin 1.2s linear infinite;
}

.loader-ring .ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #0a6c6c;
    animation: ringSpin 1s linear infinite reverse;
}

.loader-ring .ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #FFFFFF;
    animation: ringSpin 0.7s linear infinite;
}

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-company-name {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.loader-company-name .name-top {
    display: block;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.loader-company-name .name-bottom {
    display: block;
    color: #DAA520;
    font-size: 0.85rem;
    letter-spacing: 5px;
    margin-top: 6px;
}

.loader-spark {
    margin-top: 18px;
    font-size: 0.8rem;
    color: #0a6c6c;
    letter-spacing: 2px;
    animation: sparkBlink 1.2s ease-in-out infinite;
}

@keyframes sparkBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; color: #DAA520; }
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 25px;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0a6c6c, #DAA520, #0a6c6c);
    border-radius: 3px;
    animation: progressMove 2s ease-out forwards;
}

@keyframes progressMove {
    0% { width: 0%; }
    20% { width: 20%; }
    40% { width: 45%; }
    60% { width: 70%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #DAA520;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 2.5s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.8; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.4; transform: translateY(-60px) scale(0.5); }
    100% { opacity: 0; transform: translateY(-100px) scale(0); }
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.call-float {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background-color: #0a6c6c;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(10, 108, 108, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1);
    background-color: #DAA520;
    color: #000000;
}

.whatsapp-tooltip, .call-tooltip {
    position: absolute;
    right: 70px;
    background: #000000;
    color: #DAA520;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip,
.call-float:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========== MATO MEDIA TZ GLOWING ANIMATION ========== */
.mato-glow {
    display: inline-block;
    font-weight: bold;
    animation: matoGlow 1.5s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.mato-glow:hover {
    transform: scale(1.05);
    letter-spacing: 1px;
}

@keyframes matoGlow {
    0% {
        color: #DAA520;
        text-shadow: 0 0 2px #DAA520, 0 0 5px #DAA520;
    }
    50% {
        color: #FFD700;
        text-shadow: 0 0 10px #FFD700, 0 0 20px #DAA520, 0 0 30px #DAA520;
    }
    100% {
        color: #DAA520;
        text-shadow: 0 0 2px #DAA520, 0 0 5px #DAA520;
    }
}

.matolink {
    text-decoration: none;
    cursor: pointer;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
header {
    background: #000000;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid #DAA520;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.logo h1 {
    font-size: 1.3rem;
    color: white;
}

.logo h1 span {
    color: #DAA520;
    font-size: 0.8rem;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #DAA520;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #DAA520;
}

/* ========== SLIDER - FAST TRANSITION ========== */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000000;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-caption {
    position: absolute;
    bottom: 30%;
    left: 10%;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    animation: slideUp 0.8s ease;
    border-left: 4px solid #DAA520;
    z-index: 15;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-caption h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #DAA520;
}

.slide-caption p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-slide {
    display: inline-block;
    background: #0a6c6c;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-slide:hover {
    background: #DAA520;
    color: #000000;
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 15;
}

.slider-btn:hover {
    background: #DAA520;
    color: #000000;
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #DAA520;
    width: 30px;
    border-radius: 10px;
}

/* ========== SERVICES ========== */
.services {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #000000;
    position: relative;
    font-family: 'Inter', 'Times New Roman', serif;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #DAA520;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(10, 108, 108, 0.2);
}

.service-card i {
    font-size: 50px;
    color: #0a6c6c;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover i {
    color: #DAA520;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

.btn-read {
    display: inline-block;
    background: transparent;
    color: #0a6c6c;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-read:hover {
    color: #DAA520;
    transform: translateX(5px);
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: 60px 0;
    background: #000000;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.video-item {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-item video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.video-item video:hover {
    transform: scale(1.02);
    border: 2px solid #DAA520;
}

/* ========== PROJECTS SECTION ========== */
.projects-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.project-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

/* ========== WHY CHOOSE ========== */
.why-choose {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
    background: #f8f8f8;
    border-radius: 10px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 108, 108, 0.15);
}

.feature i {
    font-size: 50px;
    color: #0a6c6c;
    margin-bottom: 20px;
}

.feature:hover i {
    color: #DAA520;
}

.feature h3 {
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
}

.feature p {
    color: #666;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 0;
    background: #000000;
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background: #DAA520;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(10, 108, 108, 0.2);
}

.testimonial i {
    font-size: 60px;
    color: #DAA520;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial h4 {
    color: #DAA520;
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #DAA520;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #DAA520;
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col p a {
    color: #ccc;
    text-decoration: none;
}

.footer-col p a:hover {
    color: #DAA520;
}

.footer-col i {
    margin-right: 10px;
    color: #DAA520;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    background: #0a6c6c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background: #DAA520;
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

.developed-by {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* ========== FORMS ========== */
.booking-section, .contact-section, .faq-section {
    padding: 100px 0 80px;
    background: #f8f8f8;
}

.booking-form, .contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #0a6c6c;
    box-shadow: 0 0 5px rgba(10, 108, 108, 0.3);
}

.btn-submit {
    background: #0a6c6c;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #DAA520;
    color: #000000;
    transform: translateY(-2px);
}

.error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* ========== FAQ ========== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #000000;
    transition: 0.3s;
}

.faq-question:hover {
    background: #fff8e7;
}

.faq-question i {
    color: #DAA520;
    transition: 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.faq-answer.active {
    padding: 18px 20px;
    max-height: 300px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #000000;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.contact-detail i {
    font-size: 24px;
    color: #0a6c6c;
    margin-right: 15px;
    width: 40px;
}

.contact-detail a {
    color: #555;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #DAA520;
}

/* ========== SERVICE DETAIL PAGES ========== */
.service-detail-section {
    padding: 120px 0 80px;
    background: #f8f8f8;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-card h1 {
    color: #0a6c6c;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-detail-card h2 {
    color: #000000;
    margin: 25px 0 15px;
    border-left: 4px solid #DAA520;
    padding-left: 15px;
}

.price-box {
    background: #fff8e7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #DAA520;
}

.btn-back {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    margin-right: 10px;
    transition: 0.3s;
}

.btn-back:hover {
    background: #0a6c6c;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0a6c6c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
    border: none;
    font-size: 20px;
}

.back-to-top:hover {
    background: #DAA520;
    transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .slide-caption h2 { font-size: 1.5rem; }
    .slide-caption { padding: 20px; max-width: 400px; }
    .slider-container { height: 500px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        z-index: 999;
    }
    nav ul.active { display: flex; }
    nav ul li { margin: 10px 0; }
    .slider-container { height: 400px; }
    .slide-caption { bottom: 15%; left: 5%; right: 5%; max-width: 90%; padding: 20px; }
    .slide-caption h2 { font-size: 1.2rem; }
    .slide-caption p { font-size: 0.9rem; }
    .section-title { font-size: 1.8rem; }
    .services-grid, .video-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .project-item img { height: 250px; }
    .booking-form, .contact-form { padding: 20px; margin: 0 15px; }
    .contact-grid { grid-template-columns: 1fr; margin: 0 15px; }
    .whatsapp-float, .call-float { width: 45px; height: 45px; font-size: 22px; }
    .call-float { bottom: 130px; }
}

@media (max-width: 480px) {
    .logo h1 { font-size: 0.9rem; }
    .logo img { width: 40px; }
    .slider-container { height: 350px; }
    .section-title { font-size: 1.5rem; }
    .projects-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .project-item img { height: 200px; }
    .loader-company-name .name-top { font-size: 1.3rem; letter-spacing: 2px; }
    .loader-company-name .name-bottom { font-size: 0.7rem; letter-spacing: 3px; }
    .loader-bolt { font-size: 50px; }
    .slide-caption { padding: 12px; }
    .btn-slide { padding: 8px 15px; font-size: 12px; }
}