 /* ======================================================
           NEW HORIZON COOPERATIVE - INTERNAL CSS
           Version: 6.0 (Fixed Header & Nav Layout + Carousel)
           ====================================================== */

        /* ======================================================
           1. CSS VARIABLES
           ====================================================== */
        :root {
            --color-primary: #0D6B4A;
            --color-primary-dark: #064A32;
            --color-primary-light: #1A8C65;
            --color-primary-10: rgba(13, 107, 74, 0.10);
            --color-primary-20: rgba(13, 107, 74, 0.20);
            
            --color-secondary: #1A5A8C;
            --color-secondary-dark: #0E3D61;
            --color-secondary-light: #2E7EB8;
            --color-secondary-10: rgba(26, 90, 140, 0.10);
            
            --color-gold: #D4A843;
            --color-gold-light: #E8C97A;
            
            --color-white: #FFFFFF;
            --color-off-white: #F5F7F8;
            --color-light-gray: #E8ECEF;
            --color-gray: #D5DADF;
            --color-text: #1F2A3A;
            --color-text-light: #4A5A6E;
            --color-text-muted: #8A9AAA;
            
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            
            --container-width: 1200px;
            --section-padding: 80px 0;
            --section-padding-mobile: 50px 0;
            
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
            
            --transition: all 0.3s ease;
            --transition-slow: all 0.6s ease;
            
            /* Header heights for spacing */
            --top-bar-height: 38px;
            --header-height: 64px;
            --total-header-height: 102px;
        }

        /* ======================================================
           2. RESET & BASE
           ====================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: var(--total-header-height);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-primary-dark);
            margin-bottom: 0.8rem;
        }
        h1 { font-size: 3.8rem; }
        h2 { font-size: 2.8rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.4rem; }

        p {
            margin-bottom: 1rem;
            color: var(--color-text-light);
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--color-secondary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul, ol {
            list-style: none;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: var(--section-padding);
        }

        .bg-light {
            background-color: var(--color-off-white);
        }

        .bg-white {
            background-color: var(--color-white);
        }

        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 2.5rem;
        }

        .section-tag {
            display: inline-block;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-secondary);
            background: var(--color-secondary-10);
            padding: 6px 20px;
            border-radius: 50px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            color: var(--color-primary-dark);
        }

        .section-title .highlight {
            color: var(--color-secondary);
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-light);
            max-width: 650px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        /* ======================================================
           3. BUTTONS
           ====================================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 34px;
            border-radius: 50px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            line-height: 1.2;
        }

        .btn i {
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
        }

        .btn-primary:hover {
            background-color: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(13, 107, 74, 0.3);
        }

        .btn-secondary {
            background-color: var(--color-secondary);
            color: var(--color-white);
            border-color: var(--color-secondary);
        }

        .btn-secondary:hover {
            background-color: var(--color-secondary-dark);
            border-color: var(--color-secondary-dark);
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(26, 90, 140, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--color-white);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background-color: var(--color-white);
            color: var(--color-primary);
            border-color: var(--color-white);
            transform: translateY(-3px);
        }

        .btn-outline-dark {
            background-color: transparent;
            color: var(--color-primary);
            border-color: var(--color-primary);
        }

        .btn-outline-dark:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(13, 107, 74, 0.25);
        }

        .btn-outline-light {
            background-color: transparent;
            color: var(--color-white);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .btn-outline-light:hover {
            background-color: var(--color-white);
            color: var(--color-primary);
            transform: translateY(-3px);
        }

        .btn-sm {
            padding: 8px 22px;
            font-size: 0.85rem;
        }

        .btn-lg {
            padding: 18px 44px;
            font-size: 1.1rem;
        }

        /* ======================================================
           4. TOP BAR - BLUE (Fixed)
           ====================================================== */
        .top-bar {
            background: var(--color-secondary-dark);
            color: rgba(255, 255, 255, 0.85);
            padding: 6px 0;
            font-size: 0.82rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1002;
            height: var(--top-bar-height);
            display: left;
            align-items: left;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 16px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-left i {
            color: var(--color-gold);
            font-size: 0.75rem;
        }

        .top-bar-left a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .top-bar-left a:hover {
            color: var(--color-white);
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .top-bar-right a {
            color: rgba(255, 255, 255, 0.5);
            transition: var(--transition);
            font-size: 0.85rem;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .top-bar-right a:hover {
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        /* ======================================================
           5. HEADER - GREEN (Fixed) - LEFT ALIGNED NAV
           ====================================================== */
        .header {
            position: fixed;
            top: var(--top-bar-height);
            left: 0;
            width: 100%;
            z-index: 1001;
            background: var(--color-primary);
            transition: var(--transition);
            height: var(--header-height);
            display: flex;
            align-items: center;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .header.scrolled {
            background: var(--color-primary-dark);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .header.scrolled .logo-text {
            color: var(--color-white);
        }

        .header.scrolled .nav-item > a {
            color: rgba(255, 255, 255, 0.85);
        }

        .header.scrolled .nav-item > a:hover,
        .header.scrolled .nav-item.active > a {
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.12);
        }

        .header.scrolled .nav-item.active > a::after {
            background: var(--color-gold);
        }

        .header.scrolled .mobile-toggle .bar {
            background: var(--color-white);
        }

        /* Navigation Container */
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        /* Logo */
        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-img {
            height: 38px;
            width: auto;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--color-white);
            transition: var(--transition);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--color-gold);
        }

        /* Main Navigation - Left Aligned */
        .main-nav {
            display: flex;
            align-items: center;
            margin-left: 30px;
            flex: 1;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 2px;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-item > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 16px;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }

        .nav-item > a i {
            font-size: 0.55rem;
            transition: var(--transition);
        }

        .nav-item > a:hover {
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.10);
        }

        .nav-item.active > a {
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-item.active > a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            background: var(--color-gold);
            border-radius: 2px;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%) translateY(12px);
            background: var(--color-white);
            min-width: 220px;
            padding: 6px 0;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 7px solid var(--color-white);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu li a {
            display: block;
            padding: 8px 20px;
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: var(--color-text);
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .dropdown-menu li a:hover {
            background: var(--color-primary-10);
            color: var(--color-primary);
            border-left-color: var(--color-primary);
        }

        /* Header CTA */
        .header-cta {
            margin-left: 12px;
            flex-shrink: 0;
        }

        .header-cta .btn {
            padding: 8px 22px;
            font-size: 0.85rem;
            border-radius: 50px;
            background-color: var(--color-gold);
            border-color: var(--color-gold);
            color: var(--color-primary-dark);
        }

        .header-cta .btn:hover {
            background-color: var(--color-white);
            border-color: var(--color-white);
            color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4.5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 1003;
            flex-shrink: 0;
        }

        .mobile-toggle .bar {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--color-white);
            border-radius: 3px;
            transition: var(--transition);
        }

        .mobile-toggle.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ======================================================
   LOGO STYLES
   ====================================================== */

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    max-height: 44px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-white);
    transition: var(--transition);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text span {
    color: var(--color-gold);
}

/* Scrolled header logo */
.header.scrolled .logo-text {
    color: var(--color-white);
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .logo-text {
        color: var(--color-white);
    }
}

        /* ======================================================
           6. HERO CAROUSEL
           ====================================================== */
        .hero {
            position: relative;
            height: calc(100vh - var(--total-header-height));
            min-height: 550px;
            max-height: 850px;
            overflow: hidden;
        }

        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transform: scale(1.08);
            transition: transform 10s ease;
        }

        .hero-slide.active .hero-bg {
            transform: scale(1);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                145deg,
                rgba(6, 74, 50, 0.88) 0%,
                rgba(14, 61, 97, 0.80) 50%,
                rgba(6, 74, 50, 0.65) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            max-width: 750px;
            padding: 20px 0 40px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-badge {
            display: inline-block;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-gold-light);
            background: rgba(255, 255, 255, 0.10);
            padding: 5px 18px;
            border-radius: 50px;
            margin-bottom: 18px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            width: fit-content;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 1.2rem;
            line-height: 1.08;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-title .highlight {
            color: var(--color-gold-light);
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            max-width: 580px;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* Carousel Controls */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.20);
            color: var(--color-white);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        .carousel-control:hover {
            background: var(--color-white);
            color: var(--color-primary);
            border-color: var(--color-white);
            transform: translateY(-50%) scale(1.08);
        }

        .carousel-control.prev { left: 30px; }
        .carousel-control.next { right: 30px; }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .carousel-indicators .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.30);
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }

        .carousel-indicators .indicator.active {
            background: var(--color-gold);
            border-color: var(--color-gold);
            transform: scale(1.2);
        }

        .carousel-indicators .indicator:hover {
            background: var(--color-white);
            transform: scale(1.1);
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ======================================================
           7. STATISTICS
           ====================================================== */
        .stats-section {
            padding: 60px 0;
            background: var(--color-primary-dark);
            position: relative;
            overflow: hidden;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-icon {
            font-size: 2.2rem;
            color: var(--color-gold);
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--color-white);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.70);
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* ======================================================
           8. ABOUT TEASER
           ====================================================== */
        .about-teaser-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-teaser-text p {
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin: 24px 0;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--color-text);
        }

        .highlight-item i {
            color: var(--color-primary);
            font-size: 1.1rem;
            width: 22px;
        }

        .about-teaser-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-teaser-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .about-teaser-image:hover img {
            transform: scale(1.03);
        }

        .image-experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--color-white);
            padding: 16px 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            text-align: center;
        }

        .image-experience-badge .years {
            display: block;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
        }

        .image-experience-badge .label {
            font-size: 0.85rem;
            color: var(--color-text-light);
        }

        /* ======================================================
   SERVICES SECTION - FOREST GREEN BACKGROUND
   ====================================================== */

.services-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(135deg, #064A32 0%, #0D6B4A 30%, #0D6B4A 70%, #064A32 100%);
    overflow: hidden;
}

/* Decorative background elements */
.services-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Animated floating dots */
.services-section .floating-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.services-section .floating-dot:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.services-section .floating-dot:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 8%;
    animation-delay: 2s;
}

.services-section .floating-dot:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.1); }
}

/* Section header refinements for services section */
.services-section .section-tag {
    background: rgba(212, 168, 67, 0.15);
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.services-section .section-title {
    color: var(--color-white);
}

.services-section .section-title .highlight {
    color: var(--color-gold-light);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Glass morphism effect on cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Colorful border accents on cards */
.service-card:nth-child(1):hover {
    border-color: #FF6B6B;
}
.service-card:nth-child(2):hover {
    border-color: #FFD93D;
}
.service-card:nth-child(3):hover {
    border-color: #6BCB77;
}
.service-card:nth-child(4):hover {
    border-color: #4D96FF;
}
.service-card:nth-child(5):hover {
    border-color: #FF6BD6;
}
.service-card:nth-child(6):hover {
    border-color: #FF9F43;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold), #B8942E);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
    background: linear-gradient(135deg, #FFD93D, var(--color-gold));
}

/* Different icon colors for each card */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #FFD93D, #F9A825);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
}
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #6BCB77, #2D7D46);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 203, 119, 0.3);
}
.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #4D96FF, #1A5A8C);
    color: white;
    box-shadow: 0 4px 15px rgba(77, 150, 255, 0.3);
}
.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #FF6BD6, #C2185B);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 214, 0.3);
}
.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #FF9F43, #E17055);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-white);
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--color-gold-light);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-gold-light);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--color-white);
    gap: 14px;
}

.service-link:hover i {
    transform: translateX(6px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-card {
        padding: 30px 24px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 26px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* Dark mode support - already dark themed */
@media (prefers-color-scheme: light) {
    .services-section {
        background: linear-gradient(135deg, #064A32 0%, #0D6B4A 30%, #0D6B4A 70%, #064A32 100%);
    }
}

/* Animations for service cards */
.service-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animation - will work with Intersection Observer */
.service-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

    /* ======================================================
   FEATURED PRODUCTS - ENHANCED WITH FOREST GREEN BACKGROUND
   ====================================================== */

/* Section background with forest green gradient */
.featured-products {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 40%, var(--color-primary-light) 70%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements with gold accents */
.featured-products::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-products::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(145deg, #ffffff, #f5f7f8);
}

/* Card hover effects */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--color-gold);
}

/* Alternate card background colors - lighter for contrast */
.product-card:nth-child(1) {
    background: linear-gradient(145deg, #ffffff, #f0f7f4);
}

.product-card:nth-child(2) {
    background: linear-gradient(145deg, #ffffff, #f4f0f7);
}

.product-card:nth-child(3) {
    background: linear-gradient(145deg, #ffffff, #f7f4f0);
}

.product-card:nth-child(4) {
    background: linear-gradient(145deg, #ffffff, #f0f4f7);
}

.product-card:nth-child(5) {
    background: linear-gradient(145deg, #ffffff, #f7f0f4);
}

.product-card:nth-child(6) {
    background: linear-gradient(145deg, #ffffff, #f4f7f0);
}

.product-card:nth-child(7) {
    background: linear-gradient(145deg, #ffffff, #f0f7f7);
}

.product-card:nth-child(8) {
    background: linear-gradient(145deg, #ffffff, #f7f7f0);
}

.product-card:hover .product-hover-actions {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .product-info h4 {
    color: var(--color-primary);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: linear-gradient(135deg, #e8ecef, #d5dadf);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gradient overlay on image */
.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
}

/* Hover overlay actions */
.product-hover-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0;
    display: flex;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.product-hover-actions button {
    background: none;
    border: none;
    color: var(--color-text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-hover-actions button:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.product-hover-actions button.quick-view:hover {
    background: var(--color-secondary);
}

.product-hover-actions button.add-to-cart:hover {
    background: var(--color-gold);
    color: var(--color-primary-dark);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--color-gold), #B8942E);
    color: var(--color-text);
}

.product-badge.artisan {
    background: linear-gradient(135deg, #C0603B, #A04A2A);
}

.product-badge.new {
    background: linear-gradient(135deg, var(--color-secondary), #0E3D61);
}

.product-badge.organic {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
}

.product-info {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

/* Different background colors for product info - lighter for readability */
.product-card:nth-child(1) .product-info {
    background: rgba(240, 247, 244, 0.92);
}

.product-card:nth-child(2) .product-info {
    background: rgba(244, 240, 247, 0.92);
}

.product-card:nth-child(3) .product-info {
    background: rgba(247, 244, 240, 0.92);
}

.product-card:nth-child(4) .product-info {
    background: rgba(240, 244, 247, 0.92);
}

.product-card:nth-child(5) .product-info {
    background: rgba(247, 240, 244, 0.92);
}

.product-card:nth-child(6) .product-info {
    background: rgba(244, 247, 240, 0.92);
}

.product-card:nth-child(7) .product-info {
    background: rgba(240, 247, 247, 0.92);
}

.product-card:nth-child(8) .product-info {
    background: rgba(247, 247, 240, 0.92);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.product-rating i {
    color: var(--color-gold);
}

.product-rating i.far {
    color: var(--color-gray);
}

.product-rating span {
    color: var(--color-text-muted);
    margin-left: 6px;
    font-size: 0.8rem;
}

.product-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-text);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.product-origin {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-origin i {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
    display: block;
    margin-top: 2px;
}

.product-info .btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    color: var(--color-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 107, 74, 0.2);
}

.product-info .btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.product-info .btn:hover i {
    transform: translateX(5px);
}

.product-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 107, 74, 0.35);
    background: linear-gradient(135deg, var(--color-primary-dark), #064A32);
}

/* View all products button enhancement - with gold accent */
.mt-4 .btn-outline-dark {
    padding: 14px 44px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mt-4 .btn-outline-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.3);
    background: var(--color-gold);
    color: var(--color-primary-dark);
    border-color: var(--color-gold);
}

.mt-4 .btn-outline-dark i {
    transition: transform 0.3s ease;
}

.mt-4 .btn-outline-dark:hover i {
    transform: translateX(5px);
}

/* Section header refinement - UPDATED FOR GREEN BACKGROUND */
.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    background: rgba(212, 168, 67, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.section-title .highlight {
    color: var(--color-gold-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-image {
        height: 220px;
    }
    
    .products-grid {
        gap: 25px;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .featured-products {
        background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info h4 {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .product-hover-actions {
        padding: 6px 12px;
        gap: 4px;
        bottom: 12px;
    }
    
    .product-hover-actions button {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .product-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
        top: 12px;
        right: 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 16px 18px 20px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 14px 16px 18px;
    }
    
    .product-price span {
        font-size: 0.75rem;
    }
    
    .mt-4 .btn-outline-dark {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .product-hover-actions {
        padding: 4px 10px;
        gap: 2px;
        bottom: 10px;
    }
    
    .product-hover-actions button {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Dark mode support - Keep consistent with green theme */
@media (prefers-color-scheme: dark) {
    .featured-products {
        background: linear-gradient(135deg, #064A32 0%, #0D6B4A 40%, #1A8C65 70%, #0D6B4A 100%);
    }
    
    .featured-products::before {
        background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    }
    
    .featured-products::after {
        background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    }
    
    .product-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .product-card:hover {
        border-color: var(--color-gold);
    }
    
    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4),
    .product-card:nth-child(5),
    .product-card:nth-child(6),
    .product-card:nth-child(7),
    .product-card:nth-child(8) {
        background: rgba(255, 255, 255, 0.05) !important;
    }
    
    .product-info {
        background: rgba(0, 0, 0, 0.4) !important;
        border-top-color: rgba(255, 255, 255, 0.05);
    }
    
    .product-card:nth-child(1) .product-info,
    .product-card:nth-child(2) .product-info,
    .product-card:nth-child(3) .product-info,
    .product-card:nth-child(4) .product-info,
    .product-card:nth-child(5) .product-info,
    .product-card:nth-child(6) .product-info,
    .product-card:nth-child(7) .product-info,
    .product-card:nth-child(8) .product-info {
        background: rgba(0, 0, 0, 0.4) !important;
    }
    
    .product-info h4 {
        color: var(--color-white);
    }
    
    .product-origin {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .product-price {
        color: var(--color-gold-light);
    }
    
    .product-price span {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .product-rating span {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .section-title {
        color: var(--color-white);
    }
    
    .section-subtitle {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .mt-4 .btn-outline-dark {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--color-gold);
        color: var(--color-gold-light);
    }
    
    .mt-4 .btn-outline-dark:hover {
        background: var(--color-gold);
        color: var(--color-primary-dark);
        border-color: var(--color-gold);
    }
}

        /* ======================================================
   NEWS SECTION - ENHANCED WITH GRADIENT BACKGROUND
   ====================================================== */

.news-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #dce1e8 100%);
    overflow: hidden;
}

/* Decorative background elements */
.news-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 107, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 90, 140, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.news-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary-20);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-card:hover .news-image-overlay {
    opacity: 1;
}

.news-card:hover .news-image-overlay i {
    transform: scale(1);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--color-light-gray);
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 107, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-image-overlay i {
    font-size: 3rem;
    color: var(--color-white);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    letter-spacing: 0.3px;
}

.news-content {
    padding: 22px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    background: var(--color-secondary-10);
    padding: 3px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.news-card:hover .news-category {
    background: var(--color-secondary);
    color: var(--color-white);
}

.news-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: var(--color-primary);
}

.news-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 20px;
    padding-top: 14px;
    margin-bottom: 14px;
    border-top: 1px solid var(--color-light-gray);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    font-size: 0.75rem;
    color: var(--color-primary-20);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: auto;
}

.news-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.news-link:hover {
    color: var(--color-secondary);
    gap: 14px;
}

.news-link:hover i {
    transform: translateX(6px);
}

/* View All News Button Enhancement */
.mt-4 .btn-outline-dark {
    padding: 14px 44px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mt-4 .btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mt-4 .btn-outline-dark:hover::before {
    left: 100%;
}

.mt-4 .btn-outline-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 107, 74, 0.2);
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.mt-4 .btn-outline-dark i {
    transition: transform 0.3s ease;
}

.mt-4 .btn-outline-dark:hover i {
    transform: translateX(5px);
}

/* Section header refinements for news section */
.news-section .section-tag {
    background: rgba(26, 90, 140, 0.12);
    color: var(--color-secondary);
}

.news-section .section-title .highlight {
    color: var(--color-secondary);
}

.news-section .section-subtitle {
    color: var(--color-text-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .news-image {
        height: 200px;
    }
    
    .news-content h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .news-image {
        height: 190px;
    }
    
    .news-content {
        padding: 18px 20px 22px;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-meta {
        font-size: 0.75rem;
        gap: 14px;
    }
    
    .news-date {
        font-size: 0.7rem;
        padding: 4px 14px;
        bottom: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .news-image {
        height: 170px;
    }
    
    .mt-4 .btn-outline-dark {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .news-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Dark mode support for the gradient background */
@media (prefers-color-scheme: dark) {
    .news-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }
    
    .news-section .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .news-section .section-title {
        color: var(--color-white);
    }
    
    .news-section .section-title .highlight {
        color: var(--color-gold);
    }
    
    .news-card {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .news-card:hover {
        border-color: rgba(212, 168, 67, 0.3);
    }
    
    .news-content h3 {
        color: var(--color-white);
    }
    
    .news-content p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .news-meta {
        border-top-color: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.5);
    }
    
    .news-meta i {
        color: rgba(212, 168, 67, 0.3);
    }
}

        /* ======================================================
   TESTIMONIALS SECTION - PROFESSIONAL DESIGN
   ====================================================== */

.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 30%, #dce3e8 70%, #eef2f5 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -250px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 107, 74, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section header refinements */
.testimonials-section .section-tag {
    background: rgba(26, 90, 140, 0.08);
    color: var(--color-secondary);
    border: 1px solid rgba(26, 90, 140, 0.1);
}

.testimonials-section .section-title {
    color: var(--color-primary-dark);
}

.testimonials-section .section-title .highlight {
    color: var(--color-secondary);
}

.testimonials-section .section-subtitle {
    color: var(--color-text-light);
}

.testimonials-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    background: var(--color-white);
    padding: 48px 56px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
}

/* Decorative accent line on top of testimonial */
.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-gold));
    border-radius: 0 0 4px 4px;
}

.testimonial-quote i {
    font-size: 2.8rem;
    color: rgba(13, 107, 74, 0.12);
    margin-bottom: 16px;
    display: block;
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* Avatar styles - elegant initials */
.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.avatar span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--color-text);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Testimonial controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(13, 107, 74, 0.15);
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.testimonial-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 107, 74, 0.2);
}

.testimonial-btn:active {
    transform: translateY(0) scale(0.95);
}

.testimonial-btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Slide indicators - optional */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-light-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: var(--color-primary-20);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-content {
        padding: 40px 36px 34px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 50%, #dce3e8 100%);
    }
    
    .testimonial-content {
        padding: 32px 24px 28px;
        margin: 0 10px;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonial-quote i {
        font-size: 2.2rem;
    }
    
    .avatar {
        width: 54px;
        height: 54px;
    }
    
    .avatar span {
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .testimonial-btn {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        padding: 28px 18px 24px;
        margin: 0 5px;
    }
    
    .testimonial-quote p {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 12px;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .testimonials-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }
    
    .testimonials-section::before {
        background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    }
    
    .testimonials-section::after {
        background: radial-gradient(circle, rgba(13, 107, 74, 0.06) 0%, transparent 70%);
    }
    
    .testimonials-section .section-title {
        color: var(--color-white);
    }
    
    .testimonials-section .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonial-content {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }
    
    .testimonial-content::before {
        background: linear-gradient(90deg, var(--color-gold), var(--color-secondary), var(--color-primary));
    }
    
    .testimonial-quote i {
        color: rgba(212, 168, 67, 0.15);
    }
    
    .testimonial-quote p {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .author-info h4 {
        color: var(--color-white);
    }
    
    .author-info span {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .testimonial-btn {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
        color: var(--color-white);
    }
    
    .testimonial-btn:hover {
        background: var(--color-gold);
        color: var(--color-primary-dark);
        border-color: var(--color-gold);
    }
}

/* ======================================================
   CTA SECTION - CAT REBRAND
   ====================================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
    background: var(--color-secondary-dark);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(14, 61, 97, 0.92) 0%, rgba(6, 74, 50, 0.88) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.10);
    padding: 6px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Button styling for CAT CTA */
.cta-buttons .btn {
    min-width: 180px;
    justify-content: center;
    padding: 16px 34px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn i {
    font-size: 0.95rem;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--color-gold), #B8942E);
    border-color: var(--color-gold);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 168, 67, 0.4);
    background: linear-gradient(135deg, #E8C97A, var(--color-gold));
    border-color: #E8C97A;
}

.cta-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    backdrop-filter: blur(4px);
}

.cta-buttons .btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons .btn {
        min-width: 160px;
        padding: 14px 28px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: unset;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .cta-tag {
        font-size: 0.7rem;
        padding: 4px 18px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .cta-section {
        background: linear-gradient(135deg, #0a0a1a 0%, #0f1a2e 50%, #0a1a1a 100%);
    }
    
    .cta-overlay {
        background: linear-gradient(145deg, rgba(10, 10, 26, 0.92) 0%, rgba(10, 26, 18, 0.88) 100%);
    }
}

        /* ======================================================
           14. FOOTER
           ====================================================== */
        .footer {
            background: var(--color-primary-dark);
            color: rgba(255, 255, 255, 0.80);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-logo img {
            height: 44px;
            width: auto;
        }

        .footer-logo span {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-white);
        }

        .footer-logo span em {
            color: var(--color-gold);
            font-style: normal;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 16px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.70);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-social a:hover {
            background: var(--color-gold);
            color: var(--color-white);
            transform: translateY(-3px);
            border-color: var(--color-gold);
        }

        .footer-col h4 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.60);
            transition: var(--transition);
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--color-white);
            transform: translateX(4px);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
        }

        .footer-contact i {
            color: var(--color-gold);
            margin-top: 4px;
            min-width: 18px;
            font-size: 0.9rem;
        }

        .newsletter-form .form-group {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.06);
            color: var(--color-white);
            font-family: var(--font-body);
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.40);
        }

        .newsletter-form input:focus {
            border-color: var(--color-gold);
            background: rgba(255, 255, 255, 0.10);
        }

        .newsletter-form .btn {
            padding: 12px 20px;
            border-radius: var(--radius-sm);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-legal {
            display: flex;
            gap: 12px;
            align-items: center;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.50);
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--color-white);
        }

        .footer-legal span {
            color: rgba(255, 255, 255, 0.20);
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.40);
        }

        /* ======================================================
           15. RESPONSIVE
           ====================================================== */
        @media (max-width: 992px) {
            :root {
                --top-bar-height: 34px;
                --header-height: 60px;
                --total-header-height: 94px;
            }

            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .section-title { font-size: 2.2rem; }
            
            .hero-title { font-size: 3rem; }
            .hero { min-height: 500px; max-height: 750px; }
            
            .about-teaser-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about-teaser-image img { height: 300px; }
            
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            
            .carousel-control { width: 44px; height: 44px; font-size: 0.9rem; }
            .carousel-control.prev { left: 16px; }
            .carousel-control.next { right: 16px; }

            .top-bar .container { justify-content: center; }
            .top-bar-left { justify-content: center; }
            
            body { padding-top: var(--total-header-height); }
        }

        @media (max-width: 768px) {
            :root {
                --top-bar-height: 0px;
                --header-height: 56px;
                --total-header-height: 56px;
            }

            body { padding-top: var(--total-header-height); }

            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .section-title { font-size: 1.8rem; }
            
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1rem; line-height: 1.6; }
            .hero-buttons { flex-direction: column; align-items: flex-start; }
            .hero-buttons .btn { width: 100%; justify-content: center; }
            .section-padding { padding: var(--section-padding-mobile); }
            .hero { min-height: 450px; max-height: 650px; }
            
            /* Hide top bar on mobile */
            .top-bar { display: none !important; }
            
            .mobile-toggle { display: flex; }
            
            .main-nav {
                position: fixed;
                top: var(--total-header-height);
                right: -320px;
                width: 300px;
                height: calc(100vh - var(--total-header-height));
                background: var(--color-white);
                padding: 24px 24px 30px;
                transition: var(--transition);
                box-shadow: var(--shadow-xl);
                overflow-y: auto;
                display: block;
                z-index: 999;
            }
            
            .main-nav.active { right: 0; }
            
            .nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
            }
            
            .nav-item > a {
                color: var(--color-text) !important;
                padding: 12px 16px;
                font-size: 1rem;
                border-radius: var(--radius-sm);
            }
            
            .nav-item > a:hover {
                color: var(--color-primary) !important;
                background: var(--color-primary-10);
            }
            
            .nav-item.active > a {
                color: var(--color-primary) !important;
                background: var(--color-primary-10);
            }
            
            .nav-item.active > a::after { display: none; }
            
            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                pointer-events: all;
                box-shadow: none;
                background: var(--color-light-gray);
                border-radius: var(--radius-sm);
                margin-top: 4px;
                padding: 4px 0;
                display: none;
                border: none;
            }
            
            .dropdown-menu::before { display: none; }
            
            .nav-item.dropdown.open .dropdown-menu { display: block; }
            
            .dropdown-menu li a {
                padding: 10px 16px 10px 32px;
                font-size: 0.9rem;
                border-left: none;
                color: var(--color-text) !important;
            }
            
            .dropdown-menu li a:hover { border-left: none; }
            
            .header-cta { display: none; }
            
            .hero-badge { font-size: 0.6rem; padding: 4px 14px; }
            
            .carousel-control { width: 36px; height: 36px; font-size: 0.8rem; }
            .carousel-control.prev { left: 10px; }
            .carousel-control.next { right: 10px; }
            
            .carousel-indicators { bottom: 20px; }
            .carousel-indicators .indicator { width: 10px; height: 10px; }
            
            .stats-section { padding: 40px 0; }
            .stat-number { font-size: 2.2rem; }
            .stat-icon { font-size: 1.8rem; }
            .stats-grid { gap: 16px; }
            
            .services-grid { grid-template-columns: 1fr; gap: 20px; }
            .service-card { padding: 28px 22px; }
            
            .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .product-image { height: 180px; }
            .product-info { padding: 16px 18px; }
            
            .news-grid { grid-template-columns: 1fr; gap: 20px; }
            .news-image { height: 180px; }
            
            .testimonial-content { padding: 28px 20px; }
            .testimonial-quote p { font-size: 1rem; }
            
            .cta-section { padding: 60px 0; }
            .cta-content h2 { font-size: 2rem; }
            .cta-content p { font-size: 1rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-buttons .btn { width: 100%; justify-content: center; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-legal { justify-content: center; }
            .newsletter-form .form-group { flex-direction: column; }
            .newsletter-form .btn { width: 100%; justify-content: center; }
            
            .about-highlights { grid-template-columns: 1fr; }
            .image-experience-badge { bottom: 16px; right: 16px; padding: 12px 18px; }
            .image-experience-badge .years { font-size: 1.5rem; }
        }

        @media (max-width: 480px) {
            :root {
                --header-height: 52px;
                --total-header-height: 52px;
            }

            body { padding-top: var(--total-header-height); }

            .hero-title { font-size: 1.8rem; }
            .hero { min-height: 400px; max-height: 550px; }
            .products-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .stat-item { padding: 12px; }
            .stat-number { font-size: 1.6rem; }
            .main-nav { width: 100%; right: -100%; }
            .section-tag { font-size: 0.7rem; padding: 4px 14px; }
            .btn { padding: 12px 24px; font-size: 0.9rem; }
            .btn-lg { padding: 14px 28px; font-size: 1rem; }
        }

        /* Accessibility */
        :focus-visible {
            outline: 3px solid var(--color-primary);
            outline-offset: 2px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }

        /* ======================================================
   SECTION HEADINGS - UNIVERSAL STYLES
   ====================================================== */

/* Base heading styles that adapt to their section */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--color-gold);
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ======================================================
   ABOUT TEASER SECTION - WHITE BACKGROUND
   ====================================================== */

.about-teaser {
    background: var(--color-white);
}

.about-teaser .section-tag {
    color: var(--color-secondary);
    background: rgba(26, 90, 140, 0.08);
    border: 1px solid rgba(26, 90, 140, 0.1);
}

.about-teaser .section-title {
    color: var(--color-primary-dark);
}

.about-teaser .section-title .highlight {
    color: var(--color-secondary);
}

.about-teaser .section-subtitle {
    color: var(--color-text-light);
}

/* ======================================================
   SERVICES SECTION - FOREST GREEN BACKGROUND
   ====================================================== */

.services-section {
    background: linear-gradient(135deg, #064A32 0%, #0D6B4A 30%, #0D6B4A 70%, #064A32 100%);
}

.services-section .section-tag {
    color: var(--color-gold-light);
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.services-section .section-title {
    color: var(--color-white);
}

.services-section .section-title .highlight {
    color: var(--color-gold-light);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ======================================================
   PRODUCTS SECTION - FOREST GREEN BACKGROUND
   ====================================================== */

.featured-products {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 40%, var(--color-primary-light) 70%, var(--color-primary) 100%);
}

.featured-products .section-tag {
    color: var(--color-gold-light);
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.featured-products .section-title {
    color: var(--color-white);
}

.featured-products .section-title .highlight {
    color: var(--color-gold-light);
}

.featured-products .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ======================================================
   NEWS SECTION - LIGHT GRADIENT BACKGROUND
   ====================================================== */

.news-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #dce1e8 100%);
}

.news-section .section-tag {
    color: var(--color-secondary);
    background: rgba(26, 90, 140, 0.08);
    border: 1px solid rgba(26, 90, 140, 0.1);
}

.news-section .section-title {
    color: var(--color-primary-dark);
}

.news-section .section-title .highlight {
    color: var(--color-secondary);
}

.news-section .section-subtitle {
    color: var(--color-text-light);
}

/* ======================================================
   TESTIMONIALS SECTION - LIGHT GRADIENT BACKGROUND
   ====================================================== */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 30%, #dce3e8 70%, #eef2f5 100%);
}

.testimonials-section .section-tag {
    color: var(--color-secondary);
    background: rgba(26, 90, 140, 0.08);
    border: 1px solid rgba(26, 90, 140, 0.1);
}

.testimonials-section .section-title {
    color: var(--color-primary-dark);
}

.testimonials-section .section-title .highlight {
    color: var(--color-secondary);
}

.testimonials-section .section-subtitle {
    color: var(--color-text-light);
}

/* ======================================================
   CTA SECTION - DARK BACKGROUND
   ====================================================== */

.cta-section {
    position: relative;
    background: var(--color-secondary-dark);
}

.cta-section .section-tag {
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-section .section-title {
    color: var(--color-white);
}

.cta-section .section-title .highlight {
    color: var(--color-gold-light);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.90);
}

/* ======================================================
   RESPONSIVE ADJUSTMENTS FOR ALL SECTIONS
   ====================================================== */

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ======================================================
   DARK MODE SUPPORT FOR ALL SECTIONS
   ====================================================== */

@media (prefers-color-scheme: dark) {
    /* About section - dark mode */
    .about-teaser {
        background: var(--color-primary-dark);
    }
    
    .about-teaser .section-title {
        color: var(--color-white);
    }
    
    .about-teaser .section-title .highlight {
        color: var(--color-gold-light);
    }
    
    .about-teaser .section-subtitle {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .about-teaser .section-tag {
        color: var(--color-gold-light);
        background: rgba(212, 168, 67, 0.15);
        border-color: rgba(212, 168, 67, 0.2);
    }
    
    .about-teaser p {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .about-teaser .highlight-item {
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* News section - dark mode */
    .news-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }
    
    .news-section .section-title {
        color: var(--color-white);
    }
    
    .news-section .section-title .highlight {
        color: var(--color-gold-light);
    }
    
    .news-section .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .news-section .section-tag {
        color: var(--color-gold-light);
        background: rgba(212, 168, 67, 0.15);
        border-color: rgba(212, 168, 67, 0.2);
    }
    
    /* Testimonials section - dark mode */
    .testimonials-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }
    
    .testimonials-section .section-title {
        color: var(--color-white);
    }
    
    .testimonials-section .section-title .highlight {
        color: var(--color-gold-light);
    }
    
    .testimonials-section .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonials-section .section-tag {
        color: var(--color-gold-light);
        background: rgba(212, 168, 67, 0.15);
        border-color: rgba(212, 168, 67, 0.2);
    }
    
    /* Products section - already has green background */
    .featured-products .section-title {
        color: var(--color-white);
    }
    
    .featured-products .section-subtitle {
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* Services section - already has green background */
    .services-section .section-title {
        color: var(--color-white);
    }
    
    .services-section .section-subtitle {
        color: rgba(255, 255, 255, 0.85);
    }
}
    
    