     :root {
            --primary: #EDD2A1;
            --secondary: #333333;
            --accent: #8B4513;
            --light: #FFFFFF;
            --gray: #f8f8f8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--primary);
            color: var(--secondary);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--accent);
            position: relative;
            font-family: 'Playfair Display', serif;
        }
        
        h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--light);
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .service-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
        }
        
        .service-desc {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .service-feature {
            background-color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .service-btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            margin-top: auto;
        }
        
        .service-btn:hover {
            background-color: transparent;
            color: var(--accent);
        }
        
        /* Promo Banner Slider */
        .promo-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 500px;
            margin: 30px 0;
        }
        
        @media (max-width: 1024px) {
            .promo-slider {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .promo-slider {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .promo-slider {
                height: 250px;
            }
        }
        
        .promo-slides {
            display: flex;
            height: 100%;
            width: 100%;
            transition: transform 0.8s ease-in-out;
        }
        
        .promo-slide {
            flex: 0 0 100%;
            height: 100%;
            position: relative;
        }
        
        .promo-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px;
            padding-top: 60px;
        }
        
        .slide-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
            max-width: 600px;
        }
        
        .slide-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            max-width: 500px;
            opacity: 0.9;
        }
        
        .slide-btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--secondary);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .slide-btn:hover {
            background-color: white;
            transform: translateY(-3px);
        }
        
        .promo-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .promo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .promo-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* Testimonials Section - IMPROVED WITH TOUCH */
        .testimonials-section {
            background-color: var(--gray);
            padding: 80px 0;
        }
        
        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            min-height: 350px;
            overflow: hidden;
            touch-action: pan-y; /* Enable vertical scrolling if needed */
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.8s ease-in-out;
            height: 100%;
            cursor: grab; /* Show grab cursor for desktop touch */
        }
        
        .testimonial-slider:active {
            cursor: grabbing; /* Show grabbing cursor when active */
        }
        
        .testimonial-slide {
            flex: 0 0 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px 30px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            min-height: 350px;
            user-select: none; /* Prevent text selection during swipe */
        }
        
        .quote-icon {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 25px;
            line-height: 1.7;
            color: #555;
            max-width: 700px;
            overflow: visible;
            word-wrap: break-word;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .testimonial-role {
            color: #777;
            font-size: 0.9rem;
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .testimonial-dot.active {
            background-color: var(--accent);
            transform: scale(1.2);
        }
        
        /* MOBILE FIXES FOR TESTIMONIALS */
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 0;
            }
            
            .testimonial-container {
                min-height: 400px;
                padding: 0 15px;
            }
            
            .testimonial-slide {
                padding: 30px 20px;
                min-height: 380px;
            }
            
            .testimonial-text {
                font-size: 1.1rem;
                line-height: 1.6;
                padding: 0 5px;
                overflow-y: auto;
                max-height: 220px;
            }
            
            .quote-icon {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            
            .testimonial-author {
                font-size: 1rem;
            }
            
            .testimonial-role {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 480px) {
            .testimonial-container {
                min-height: 420px;
            }
            
            .testimonial-slide {
                padding: 25px 15px;
                min-height: 400px;
            }
            
            .testimonial-text {
                font-size: 1rem;
                line-height: 1.5;
                max-height: 240px;
            }
            
            .testimonial-dots {
                margin-top: 20px;
            }
        }
        
        /* Scrollbar for long testimonials */
        .testimonial-text::-webkit-scrollbar {
            width: 4px;
        }
        
        .testimonial-text::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .testimonial-text::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        /* Brands Section */
        .brands-section {
            background-color: var(--light);
            padding: 60px 0;
        }
        
        .brands-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }
        
        .brands-slider {
            display: flex;
            animation: slideLeft 40s linear infinite;
            gap: 60px;
        }
        
        .brand-logo {
            height: 80px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: filter 0.3s, opacity 0.3s;
            flex-shrink: 0;
        }
        
        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-text {
                font-size: 1rem;
            }
            
            .brands-slider {
                animation: slideLeft 35s linear infinite;
            }
            
            .testimonial-text {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            h2 {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .slide-title {
                font-size: 1.6rem;
            }
            
            .slide-content {
                padding: 20px;
                padding-top: 50px;
            }
            
            .brand-logo {
                height: 60px;
            }
            
            .testimonial-slide {
                padding: 30px 20px;
            }
            
            .testimonial-text {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 40px 0;
            }
            
            .services-section {
                padding: 50px 0;
            }
            
            .service-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .promo-slider {
                height: 220px;
            }
            
            .slide-title {
                font-size: 1.4rem;
            }
            
            .slide-text {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .slide-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }/* ==================== CRITICAL GAP FIX ==================== */


/* ==================== HEADER FIXES ==================== */

/* Force desktop nav into ONE line */
@media (min-width: 992px) {

    .desktop-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-width: 0 !important;
    }

    .desktop-nav .nav-links {
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        align-items: center !important;
    }

    .desktop-nav .nav-link {
        white-space: nowrap !important;
        margin: 0 6px !important;
        padding: 6px 8px !important;
        font-size: 14px !important;
    }
}

/* Prevent logo block from collapsing */
.logo-container {
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

/* Logo text visibility + color fix */
.logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.logo-tagline {
    font-size: 11px !important;
    color: #000000 !important; /* BLACK */
    white-space: nowrap !important;
    overflow: visible !important;
}

/* Desktop header social icons */
.nav-social .social-icon {
    color: #000000 !important;
    background: transparent !important;
}


/* ==================== BRANDS SIMPLE SLIDER ==================== */
/* ===== BRAND WAVE SLIDER ===== */

.bw-brands {
    background: #fff;
    padding: 50px 0;
}

.bw-container {
    max-width: 900px;
    margin: auto;
    padding: 0 15px;
    text-align: center;
}

.bw-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.bw-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* Slider shell */
.bw-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Moving track */
.bw-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Each slide */
.bw-slide {
    min-width: 100%;
    padding: 25px;
    box-sizing: border-box;
}

.bw-slide img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.bw-slide h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.bw-slide p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.bw-slide span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
}

/* Dots */
.bw-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.bw-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.bw-dot.active {
    background: #111;
    transform: scale(1.2);
}

/* Mobile refinement */
@media (max-width: 480px) {
    .bw-slide img {
        width: 100px;
        height: 100px;
    }
}


/* ==================== PROMO BANNER SPACING ==================== */

.promo-slider {
    margin: 40px 0 !important;
}

/* ==================== FOOTER MINIMAL ==================== */

footer {
    background: var(--secondary);
    color: white;
    padding: 30px 0 15px;
    margin-top: 40px;
}

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

.footer-column h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.contact-item {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-item i {
    color: var(--primary);
    width: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom p {
    margin: 5px 0;
}

/* ==================== BW BRANDS – STATIC GRID OVERRIDE ==================== */
/* Client requested: static images, no names, no slider, mobile double grid */

.bw-slider-wrapper,
.bw-slider-track,
.bw-slide,
.bw-dots {
    display: none !important;
}

/* New static grid */
.bw-static-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.bw-static-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    padding: 18px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

/* Tablet */
@media (max-width: 768px) {
    .bw-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile – DOUBLE GRID CONFIRMED */
@media (max-width: 480px) {
    .bw-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bw-static-item img {
        width: 100px;
        height: 100px;
        padding: 14px;
    }
}

/* ==================== TESTIMONIAL HEIGHT REDUCTION ==================== */
/* Uses new JS logic – reduce excess vertical space */

.testimonial-container {
    min-height: 280px;
}

.testimonial-slide {
    min-height: 280px;
    padding: 30px 25px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Tablet */
@media (max-width: 768px) {
    .testimonial-container {
        min-height: 300px;
    }

    .testimonial-slide {
        min-height: 300px;
        padding: 25px 20px;
    }

    .testimonial-text {
        max-height: 180px;
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .testimonial-container {
        min-height: 320px;
    }

    .testimonial-slide {
        min-height: 320px;
        padding: 22px 18px;
    }

    .testimonial-text {
        max-height: 200px;
        font-size: 0.95rem;
    }
}


