
        :root {
            --primary: #0A4D3C;
            --secondary: #2D7A67;
            --accent: #E8A547;
            --dark: #0D1F1A;
            --light: #F8FAFB;
            --cream: #FFF9F0;
            --text: #1A3A32;
            --text-light: #5A7269;
            --bg-primary: #F8FAFB;
            --bg-secondary: #FFFFFF;
            --bg-accent: #FFF9F0;
            --border-color: rgba(10, 77, 60, 0.1);
        }

        /* Responsive Logo Implementation */
        .logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .logo-picture {
            display: block;
            width: 100%;
            height: auto;
            max-width: 100%;
        }

        .logo-img {
            width: 250px;
            height: 115px;
            display: block;
            object-fit: contain;
            object-position: left center;
            transition: all 0.3s ease;
            /* Maintain aspect ratio based on original 2284x1048 (approximately 2.18:1) */
            aspect-ratio: 2.18 / 1;
            background: transparent;
            mix-blend-mode: multiply;
        }

        /* Desktop (1024px and above) - 250px default */
        @media (min-width: 1024px) {
            .logo {
                width: 250px;
                max-width: 250px;
                min-width: 220px;
            }
            
            .logo-img {
                width: 250px;
                height: auto;
                max-height: 115px;
            }
        }

        /* Tablet Landscape (768px - 1023px) - 220px */
        @media (min-width: 768px) and (max-width: 1023px) {
            .logo {
                width: 220px;
                max-width: 220px;
                min-width: 200px;
            }
            
            .logo-img {
                width: 220px;
                height: auto;
                max-height: 101px;
            }
        }

        /* Tablet Portrait (481px - 767px) - 200px */
        @media (min-width: 481px) and (max-width: 767px) {
            .logo {
                width: 200px;
                max-width: 200px;
                min-width: 180px;
            }
            
            .logo-img {
                width: 200px;
                height: auto;
                max-height: 92px;
            }
        }

        /* Mobile (up to 480px) - 180px */
        @media (max-width: 480px) {
            .logo {
                width: 180px;
                max-width: 180px;
                min-width: 160px;
            }
            
            .logo-img {
                width: 180px;
                height: auto;
                max-height: 83px;
            }
        }

        /* Extra Small Mobile (up to 360px) - Scaled down further */
        @media (max-width: 360px) {
            .logo {
                width: 160px;
                max-width: 160px;
                min-width: 140px;
            }
            
            .logo-img {
                width: 160px;
                height: auto;
                max-height: 73px;
            }
        }

        /* High DPI/Retina Display Optimizations */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo-img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Logo Hover Effects */
        .logo:hover .logo-img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Logo Focus States for Accessibility */
        .logo:focus-within .logo-img {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Print Media Optimization */
        @media print {
            .logo {
                max-width: 200px;
            }
            
            .logo-img {
                max-height: 92px;
                filter: grayscale(100%);
            }
        }

        /* Reduced Motion Preference */
        @media (prefers-reduced-motion: reduce) {
            .logo-img {
                transition: none;
            }
            
            .logo:hover .logo-img {
                transform: none;
            }
        }

        /* Dark Mode Logo Adjustments - Now handled by JavaScript image switching */
        [data-theme="dark"] .logo-img {
            background: transparent;
            mix-blend-mode: normal;
        }

        [data-theme="dark"] .logo:hover .logo-img {
            background: transparent;
            mix-blend-mode: normal;
        }

        /* Container Query Support (Future-proofing) */
        @supports (container-type: inline-size) {
            .logo {
                container-type: inline-size;
            }
            
            @container (max-width: 200px) {
                .logo-img {
                    max-height: 60px;
                }
            }
        }

        /* Flexible Logo Sizing with CSS Custom Properties */
        .logo {
            --logo-scale: 1;
            --logo-default-width: 250px;
            --logo-default-height: 115px;
            position: relative;
        }

        .logo-img {
            /* width: calc(var(--logo-default-width) * var(--logo-scale)); */
            height: auto;
            max-height: calc(var(--logo-default-height) * var(--logo-scale));
            /* Enhanced performance optimizations */
            will-change: transform;
            backface-visibility: hidden;
            transform: translateZ(0);
            border-radius: 3px;
        }

        /* Efficient Scaling Algorithm with Viewport Units */
        @media (min-width: 320px) {
            .logo {
                --logo-scale: clamp(0.64, 1.5vw + 0.5, 1);
            }
        }

        /* Container-based Flexible Positioning */
        .logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-shrink: 0;
            position: relative;
            right: 25px;
            z-index: 10;
        }

        /* Enhanced Performance Optimizations */
        .logo-picture {
            display: block;
            width: 100%;
            height: auto;
            contain: layout style paint;
        }

        /* Crisp Rendering Optimizations */
        .logo-img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            image-rendering: pixelated;
            image-rendering: optimizeQuality;
            /* Smooth scaling for better visual quality */
            transform-origin: left center;
            /* GPU acceleration for smooth transitions */
            transform: translate3d(0, 0, 0);
        }

        /* Advanced Lazy Loading Support */
        .logo-img[loading="eager"] {
            /* Prioritize logo loading */
            content-visibility: visible;
        }

        /* Intersection Observer Ready */
        .logo-img[data-loaded="false"] {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .logo-img[data-loaded="true"] {
            opacity: 1;
        }

        [data-theme="dark"] {
            --primary: #2D7A67;
            --secondary: #3D8A77;
            --accent: #F4B55E;
            --dark: #F8FAFB;
            --light: #0D1F1A;
            --cream: #1A2825;
            --text: #E8F0ED;
            --text-light: #A8BCB5;
            --bg-primary: #0D1F1A;
            --bg-secondary: #1A2825;
            --bg-accent: #1F2F2B;
            --border-color: rgba(232, 240, 237, 0.1);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px; /* Account for fixed header height + padding */
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
                scroll-padding-top: 100px;
            }
        }

        /* Add scroll margin to all sections to prevent content being hidden behind fixed header */
        section {
            scroll-margin-top: 100px;
        }

        /* Specific scroll margin for main content areas */
        #home,
        #about,
        #services,
        #team,
        #downloads,
        #careers,
        #contact {
            scroll-margin-top: 100px;
        }

        body {
            font-family: 'Archivo', sans-serif;
            color: var(--text);
            background: var(--bg-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
            min-width: 320px; /* Prevent breaking on very small screens */
        }

        /* Container utility */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 3rem;
            }
        }

        /* Navigation */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg-secondary);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .nav-wrapper.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 400;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--accent);
            font-style: italic;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--primary);
            color: white !important;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(10, 77, 60, 0.3);
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .theme-toggle:hover {
            background: var(--primary);
            color: white;
            transform: rotate(180deg);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Mobile Navigation Overlay */
        .nav-links.mobile-active {
            display: flex;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 1000;
                border-left: 1px solid var(--border-color);
            }

            .nav-links.mobile-active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 0.8rem 0;
                font-size: 1.1rem;
            }

            .nav-cta {
                text-align: center;
                width: 100%;
            }

            .theme-toggle {
                margin-left: 0;
            }
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 3rem;
            padding: 6rem 3rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 165, 71, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }

        .hero-content h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 4.2rem;
            line-height: 1.1;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-weight: 400;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content h1 .highlight {
            color: var(--primary);
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-style: normal;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 600px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease 0.4s backwards;
            flex-wrap: wrap;
        }

        .stat-item {
            min-width: 120px;
        }

        .stat-item h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: baseline;
            gap: 2px;
        }

        .stat-item p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            min-height: 44px; /* iOS minimum tap target */
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(10, 77, 60, 0.2);
        }

        .btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 77, 60, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* Focus States for Accessibility */
        .btn:focus,
        .nav-links a:focus,
        .service-link:focus,
        .theme-toggle:focus,
        .mobile-menu-toggle:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        .btn:focus:not(:focus-visible),
        .nav-links a:focus:not(:focus-visible),
        .service-link:focus:not(:focus-visible) {
            outline: none;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.3s backwards;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* Enhanced Image Carousel */
        .carousel-container {
            position: relative;
            width: 100%; /* 100% of viewport width */
            max-width: 1200px; /* Maximum 1200px */
            height: 450px;
            overflow: hidden;
            border-radius: 25px;
            background: transparent;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
            margin: 0 auto;
            touch-action: pan-y;
            user-select: none;
        }

        .carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Discrete mode - no auto-scroll animation */
        .carousel-track.discrete-mode {
            animation: none;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .carousel-slide.active {
            opacity: 1;
        }

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

        .carousel-slide:hover img {
            transform: scale(1.03);
        }

        .carousel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide:hover .carousel-overlay {
            transform: translateY(0);
        }

        .carousel-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .carousel-overlay p {
            font-size: 0.95rem;
            opacity: 0.95;
            line-height: 1.4;
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            14.28% {
                transform: translateX(calc(-100% / 7));
            }
            28.56% {
                transform: translateX(calc(-200% / 7));
            }
            42.84% {
                transform: translateX(calc(-300% / 7));
            }
            57.12% {
                transform: translateX(calc(-400% / 7));
            }
            71.4% {
                transform: translateX(calc(-500% / 7));
            }
            85.68% {
                transform: translateX(calc(-600% / 7));
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Navigation Arrows */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.6rem;
            color: var(--primary);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 15;
            opacity: 0.8;
            visibility: visible;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .carousel-container:hover .carousel-nav {
            opacity: 1;
        }

        .carousel-nav:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 6px 25px rgba(10, 77, 60, 0.3);
        }

        .carousel-nav:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }


        /* Discrete navigation mode */
        .carousel-container.discrete-mode .carousel-track {
            animation: none;
        }

        .carousel-container.discrete-mode .carousel-slide {
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Hide any remaining indicators */
        .carousel-indicators,
        .indicator,
        .carousel-container .indicator,
        .carousel-container .carousel-indicators {
            display: none !important;
            visibility: hidden !important;
        }

        /* Responsive Design for Arrows */
        @media (max-width: 768px) {
            .carousel-nav {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
            }

            .carousel-nav.prev {
                left: 15px;
            }

            .carousel-nav.next {
                right: 15px;
            }

        }

        @media (max-width: 480px) {
            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .carousel-nav.prev {
                left: 10px;
            }

            .carousel-nav.next {
                right: 10px;
            }

        }

        /* Animated Statistics Counter */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease 0.4s backwards;
            flex-wrap: wrap;
        }

        .stat-item {
            min-width: 120px;
            position: relative;
        }

        .stat-item h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: baseline;
            gap: 2px;
            overflow: hidden;
            position: relative;
        }

        .stat-number {
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .stat-item.animating .stat-number {
            animation: countUp 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes countUp {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            50% {
                transform: translateY(-10%);
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .stat-item p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Add pulse effect for stats */
        .stat-item.animating::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(232, 165, 71, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: statPulse 2s ease-out;
            pointer-events: none;
        }

        @keyframes statPulse {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Enhanced animation completion effects */
        .stat-item.animation-complete {
            position: relative;
        }

        .stat-item.animation-complete::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, var(--accent), var(--primary));
            border-radius: 10px;
            opacity: 0;
            z-index: -1;
            animation: completionGlow 0.6s ease-out;
        }

        @keyframes completionGlow {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            50% {
                opacity: 0.3;
                transform: scale(1.1);
            }
            100% {
                opacity: 0;
                transform: scale(1);
            }
        }

        /* Performance optimizations */
        .stat-number {
            will-change: transform;
            backface-visibility: hidden;
            transform: translateZ(0);
            display: block;
        }

        .stat-item.animating .stat-number {
            will-change: transform, opacity;
        }

        .stat-item:not(.animating) .stat-number {
            will-change: auto;
        }

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

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

        /* Partners Section */
        .partners-section {
            background: var(--bg-accent);
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .section-header {
            max-width: 1400px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .section-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .partners-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }

        @media (max-width: 480px) {
            .partners-grid {
                grid-template-columns: 1fr;
            }
        }

        .partner-card {
            background: var(--bg-secondary);
            padding: 2.5rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .partner-card img {
            max-width: 140px;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .partner-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Services Section */
        .services-section {
            padding: 7rem 3rem;
            background: var(--bg-primary);
        }

        .services-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .service-card {
            background: var(--bg-secondary);
            padding: 3rem;
            border-radius: 25px;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(10, 77, 60, 0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* About Section */
        .about-section {
            background: var(--light);
            color: var(--dark);
            padding: 7rem 3rem;
            position: relative;
        }

        [data-theme="dark"] .about-section {
            background: var(--bg-accent);
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(232, 165, 71, 0.1));
            pointer-events: none;
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-text h2 .highlight {
            color: var(--accent);
            font-style: italic;
        }

        .about-text p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .feature-item {
            background: var(--bg-secondary);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: var(--bg-accent);
            border-color: var(--accent);
        }

        .feature-item h4 {
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-item p {
            font-size: 0.95rem;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 5rem 3rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: drift 30s linear infinite;
        }

        @keyframes drift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: var(--light);
            color: var(--text);
            padding: 4rem 3rem 2rem;
        }

        [data-theme="dark"] footer {
            background: #0A1612;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        [data-theme="dark"] .footer-logo {
            color: var(--text);
        }

        .footer-logo span {
            color: var(--accent);
            font-style: italic;
        }

        .footer-about p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section h4 {
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        [data-theme="dark"] .footer-section h4 {
            color: var(--text);
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        .certifications {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .cert-badge {
            background: var(--bg-secondary);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            border: 1px solid var(--border-color);
        }

        .footer-cert-logos {
            max-width: 1400px;
            margin: 0 auto 2rem;
            padding: 1.5rem 0;
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .footer-cert-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-cert-logo-item img {
            height: 60px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            opacity: 0.72;
            filter: grayscale(15%);
            transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
        }

        .footer-cert-logo-item img:hover {
            opacity: 1;
            transform: scale(1.06);
            filter: grayscale(0%);
        }

        [data-theme="dark"] .footer-cert-logo-item img {
            filter: brightness(1.1) grayscale(15%);
        }

        [data-theme="dark"] .footer-cert-logo-item img:hover {
            filter: brightness(1.25) grayscale(0%);
        }

        /* Responsive - Mobile First Approach */

        /* Small Mobile Devices (320px - 480px) */
        @media (max-width: 480px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.5rem;
                margin-top: 70px;
            }

            .hero-content h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .stat-item h3 {
                font-size: 2.5rem;
            }

            .stat-item p {
                font-size: 0.9rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                text-align: center;
                padding: 0.9rem 2rem;
            }

            .carousel-container {
                height: 250px;
            }
            
            .carousel-overlay {
                padding: 1rem;
            }
            
            .carousel-overlay h4 {
                font-size: 1rem;
            }
            
            .carousel-overlay p {
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-label {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }

            .partners-section,
            .services-section,
            .about-section,
            .cta-section {
                padding: 3rem 1.5rem;
            }

            .partners-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .partner-card {
                padding: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-content p {
                font-size: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .certifications {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-cert-logos {
                gap: 1.5rem;
                padding: 1.25rem 0;
            }

            .footer-cert-logo-item img {
                height: 44px;
                max-width: 110px;
            }
        }

        /* Medium Mobile Devices (481px - 767px) */
        /* Downloads Section Accordion Styles */
        .downloads-accordion-container {
            background: var(--bg-secondary);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .downloads-accordion-item {
            border-bottom: 1px solid var(--border-color);
        }

        .downloads-accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.5rem 2rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-header:hover {
            background: var(--bg-accent);
            color: var(--primary);
        }

        .accordion-header:focus {
            outline: 2px solid var(--accent);
            outline-offset: -2px;
        }

        .downloads-accordion-item.active .accordion-header {
            background: var(--primary);
            color: white;
        }

        .downloads-accordion-item.active .accordion-header:hover {
            background: var(--secondary);
        }

        .accordion-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .downloads-accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: var(--bg-primary);
        }

        .downloads-accordion-item.active .accordion-content {
            max-height: 2000px; /* Large enough to accommodate content */
        }

        .accordion-content .downloads-table {
            margin: 0;
            border-radius: 0;
            border: none;
            box-shadow: none;
        }

        /* Smooth animation for accordion content */
        @media (prefers-reduced-motion: reduce) {
            .accordion-content {
                transition: none;
            }
            
            .accordion-icon {
                transition: none;
            }
        }

        /* Mobile responsive accordion */
        @media (max-width: 768px) {
            .accordion-header {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }
            
            .accordion-icon {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .accordion-header {
                padding: 1rem;
                font-size: 0.95rem;
            }
        }

        @media (min-width: 481px) and (max-width: 767px) {
            nav {
                padding: 1rem 2rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 4rem 2rem;
                margin-top: 75px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .stat-item {
                flex: 1 1 45%;
            }
            
            .carousel-container {
                height: 300px;
            }

            .section-title {
                font-size: 2rem;
            }

            .partners-section,
            .services-section,
            .about-section,
            .cta-section {
                padding: 4rem 2rem;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-text h2 {
                font-size: 2.5rem;
            }

            .about-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Tablets (768px - 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {
            nav {
                padding: 1.2rem 2.5rem;
            }

            .nav-links {
                gap: 1.5rem;
                font-size: 0.9rem;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 5rem 2.5rem;
            }

            .hero-content h1 {
                font-size: 3.2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-stats {
                gap: 2.5rem;
            }
            
            .carousel-container {
                height: 350px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .partners-section,
            .services-section,
            .about-section {
                padding: 5rem 2.5rem;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .footer-cert-logo-item img {
                height: 52px;
                max-width: 125px;
            }
        }

        /* Large Tablets and Small Laptops (1025px - 1280px) */
        @media (min-width: 1025px) and (max-width: 1280px) {
            nav {
                padding: 1.2rem 2.5rem;
            }

            .hero {
                grid-template-columns: 1fr 1.2fr;
                gap: 3rem;
                padding: 5rem 2.5rem;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }

        /* Desktop (1281px and above) - Default styles apply */
        @media (min-width: 1281px) {
            .hero {
                grid-template-columns: 1fr 1.4fr;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Large Desktop (1920px and above) */
        @media (min-width: 1920px) {
            nav,
            .section-header,
            .partners-grid,
            .services-grid,
            .about-content,
            .cta-content,
            .footer-content,
            .footer-bottom {
                max-width: 1600px;
            }

            .hero {
                max-width: 1600px;
            }

            .hero-content h1 {
                font-size: 4.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        /* Landscape Mobile Devices */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 3rem 2rem;
            }

            .hero-stats {
                flex-wrap: wrap;
            }

            .stat-item h3 {
                font-size: 2.5rem;
            }

            .about-section {
                padding: 4rem 2rem;
            }
        }

        /* Print Styles */
        @media print {
            .nav-wrapper,
            .theme-toggle,
            .mobile-menu-toggle,
            .hero-cta,
            .service-link,
            .cta-section {
                display: none;
            }

            body {
                background: white;
                color: black;
            }

            .hero,
            .services-section,
            .about-section,
            .partners-section {
                page-break-inside: avoid;
            }
        }

        /* High DPI Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .image-card img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .btn,
            .nav-links a,
            .service-card,
            .partner-card {
                min-height: 44px; /* Minimum touch target size */
            }

            .nav-links a::after {
                display: none; /* Remove hover underline effect on touch devices */
            }
        }

        /* Reduced Motion for Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .hero::before {
                animation: none;
            }

            .cta-section::before {
                animation: none;
            }
        }

        /* Modern Downloads Section Styles */
        .downloads-controls {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .search-box {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            overflow: hidden;
            background: var(--bg-secondary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(10, 77, 60, 0.15);
        }

        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--text);
            font-size: 1rem;
            font-weight: 500;
        }

        .search-box input:focus {
            outline: none;
        }

        .search-box input::placeholder {
            color: var(--text-light);
        }

        .search-btn {
            padding: 1rem 1.5rem;
            border: none;
            background: var(--primary);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn:hover {
            background: var(--secondary);
        }

        .search-btn svg {
            transition: transform 0.3s ease;
        }

        .search-btn:hover svg {
            transform: scale(1.1);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            color: var(--text);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .filter-tab::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;
        }

        .filter-tab:hover::before {
            left: 100%;
        }

        .filter-tab:hover,
        .filter-tab.active {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            border-color: #FF6B35;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        /* Modern Table-Style Downloads Container */
        .downloads-table-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
        }

        /* Category Headers with Orange Design */
        .downloads-category {
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .downloads-category:last-child {
            border-bottom: none;
        }

        .category-header {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .category-header:hover::before {
            left: 100%;
        }

        .category-header:hover {
            background: linear-gradient(135deg, #E55A2B, #E8851A);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .category-title {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .category-title h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .category-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .category-toggle {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        .category-toggle svg {
            transition: transform 0.3s ease;
        }

        .downloads-category.collapsed .category-toggle svg {
            transform: rotate(-90deg);
        }

        /* Downloads Table with Alternating Row Colors */
        .downloads-table {
            background: var(--bg-primary);
            /* Fixed height container for exactly 4 download rows */
            max-height: 400px; /* Approximate height for 4 rows (4 * ~100px per row) */
            overflow-y: auto;
            overflow-x: hidden;
            /* Smooth scrolling behavior */
            scroll-behavior: smooth;
            /* Custom scrollbar styling */
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--bg-secondary);
        }

        /* Webkit scrollbar styling for better visual integration */
        .downloads-table::-webkit-scrollbar {
            width: 8px;
        }

        .downloads-table::-webkit-scrollbar-track {
            background: var(--bg-secondary);
            border-radius: 4px;
        }

        .downloads-table::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 4px;
            transition: background 0.3s ease;
        }

        .downloads-table::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        /* Dark mode scrollbar adjustments */
        [data-theme="dark"] .downloads-table {
            scrollbar-color: var(--accent) var(--bg-accent);
        }

        [data-theme="dark"] .downloads-table::-webkit-scrollbar-track {
            background: var(--bg-accent);
        }

        [data-theme="dark"] .downloads-table::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--accent), var(--primary));
        }

        [data-theme="dark"] .downloads-table::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        .downloads-category.collapsed .downloads-table {
            display: none;
        }

        .download-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .download-row:nth-child(even) {
            background: var(--bg-secondary);
        }

        .download-row:nth-child(odd) {
            background: var(--bg-primary);
        }

        .download-row:last-child {
            border-bottom: none;
        }

        .download-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.3s ease;
        }

        .download-row:hover {
            background: var(--bg-accent);
            transform: translateX(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .download-row:hover::before {
            transform: scaleY(1);
        }

        .download-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .download-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .download-row:hover .download-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #FF6B35, #F7931E);
        }

        .download-details {
            flex: 1;
            min-width: 0;
        }

        .download-details h4 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            line-height: 1.3;
        }

        .download-details p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 0 0 0.75rem 0;
            line-height: 1.4;
        }

        .download-meta {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .file-type,
        .file-size,
        .file-date {
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .file-type {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
        }

        .file-size {
            background: var(--accent);
            color: var(--dark);
        }

        .file-date {
            background: var(--bg-secondary);
            color: var(--text-light);
            border: 1px solid var(--border-color);
        }

        /* Modern Orange Download Links */
        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .download-link::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;
        }

        .download-link:hover::before {
            left: 100%;
        }

        .download-link:hover {
            background: linear-gradient(135deg, #E55A2B, #E8851A);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .download-link:active {
            transform: translateY(0) scale(1.02);
        }

        .download-link svg {
            transition: transform 0.3s ease;
        }

        .download-link:hover svg {
            transform: translateY(-1px);
        }

        /* Smooth Animations and Transitions */
        .downloads-category {
            animation: fadeInUp 0.6s ease forwards;
        }

        .downloads-category:nth-child(1) { animation-delay: 0.1s; }
        .downloads-category:nth-child(2) { animation-delay: 0.2s; }
        .downloads-category:nth-child(3) { animation-delay: 0.3s; }
        .downloads-category:nth-child(4) { animation-delay: 0.4s; }

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

        /* Focus States for Accessibility */
        .category-header:focus,
        .download-link:focus,
        .filter-tab:focus,
        .search-btn:focus {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        /* Responsive Design for Modern Downloads Section */
        @media (max-width: 1200px) {
            .downloads-table-container {
                margin: 0 1rem;
            }

            .category-header,
            .download-row {
                padding: 1.25rem 1.5rem;
            }

            .download-info {
                gap: 1rem;
            }

            /* Adjust scrollable height for medium screens */
            .downloads-table {
                max-height: 380px; /* Slightly smaller for medium screens */
            }
        }

        @media (max-width: 768px) {
            .downloads-controls {
                gap: 1.5rem;
            }

            .filter-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .filter-tabs::-webkit-scrollbar {
                display: none;
            }

            .filter-tab {
                flex-shrink: 0;
                white-space: nowrap;
            }

            .downloads-table-container {
                margin: 0 0.5rem;
                border-radius: 15px;
            }

            /* Adjust scrollable height for tablet screens */
            .downloads-table {
                max-height: 350px; /* Smaller height for tablets */
            }

            .category-header {
                padding: 1rem 1.5rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .category-title {
                width: 100%;
                justify-content: space-between;
            }

            .category-toggle {
                position: absolute;
                top: 1rem;
                right: 1.5rem;
            }

            .download-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                padding: 1.5rem;
            }

            .download-info {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .download-icon {
                align-self: center;
            }

            .download-details {
                text-align: center;
                width: 100%;
            }

            .download-meta {
                justify-content: center;
            }

            .download-link {
                align-self: center;
                width: fit-content;
            }
        }

        @media (max-width: 480px) {
            .search-box {
                max-width: 100%;
                margin: 0;
            }

            .filter-tab {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .downloads-table-container {
                margin: 0;
                border-radius: 10px;
            }

            /* Adjust scrollable height for mobile screens */
            .downloads-table {
                max-height: 300px; /* Smaller height for mobile devices */
            }

            .category-header {
                padding: 1rem;
            }

            .category-title h3 {
                font-size: 1rem;
            }

            .category-count {
                font-size: 0.75rem;
                padding: 0.2rem 0.6rem;
            }

            .download-row {
                padding: 1rem;
            }

            .download-icon {
                width: 40px;
                height: 40px;
                border-radius: 8px;
            }

            .download-details h4 {
                font-size: 1rem;
            }

            .download-details p {
                font-size: 0.85rem;
            }

            .download-meta {
                gap: 0.5rem;
            }

            .file-type,
            .file-size,
            .file-date {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
            }

            .download-link {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* Large Desktop Optimizations */
        @media (min-width: 1440px) {
            .downloads-table-container {
                max-width: 1400px;
            }

            .category-header {
                padding: 2rem 2.5rem;
            }

            .category-title h3 {
                font-size: 1rem;
            }

            .download-row {
                padding: 2rem 2.5rem;
            }

            .download-icon {
                width: 60px;
                height: 60px;
            }

            .download-details h4 {
                font-size: 1.2rem;
            }

            .download-link {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* Accessibility and Motion Preferences */
        @media (prefers-reduced-motion: reduce) {
            .downloads-category,
            .download-row,
            .download-icon,
            .download-link,
            .category-header,
            .filter-tab {
                animation: none;
                transition: none;
            }

            .download-row:hover,
            .download-link:hover,
            .category-header:hover {
                transform: none;
            }
        }

        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            .category-header {
                background: var(--primary);
                border: 2px solid var(--text);
            }

            .download-link {
                background: var(--primary);
                border: 2px solid var(--text);
            }

            .download-row {
                border: 1px solid var(--text);
            }
        }

        /* Print Styles for Downloads */
        @media print {
            .downloads-controls,
            .category-toggle,
            .download-link {
                display: none;
            }

            .downloads-table-container {
                box-shadow: none;
                border: 1px solid #000;
            }

            .category-header {
                background: #f0f0f0;
                color: #000;
            }

            .download-row {
                break-inside: avoid;
            }
        }

        /* Career Section Styles */
        .careers-intro {
            margin-bottom: 4rem;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .culture-item {
            text-align: center;
            padding: 2rem;
            background: var(--bg-secondary);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .culture-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .culture-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .culture-item h3 {
            color: var(--text);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .culture-item p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .jobs-section {
            margin-bottom: 4rem;
        }

        .jobs-section h3 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text);
            font-size: 2rem;
        }

        .department-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .dept-tab {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dept-tab:hover,
        .dept-tab.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .job-card {
            background: var(--bg-secondary);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .job-header h4 {
            color: var(--text);
            font-size: 1.2rem;
            margin: 0;
            flex: 1;
        }

        .job-type {
            padding: 0.25rem 0.75rem;
            background: var(--accent);
            color: var(--dark);
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .job-location {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .job-description {
            color: var(--text);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .job-requirements {
            color: var(--text-light);
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--bg-accent);
            border-radius: 10px;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .apply-btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .apply-btn:hover {
            background: var(--secondary);
            transform: scale(1.05);
        }

        .careers-footer {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .benefits-section h3,
        .application-process h3,
        .hr-contact h3 {
            color: var(--text);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .benefits-grid {
            display: grid;
            gap: 1rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .benefit-icon {
            font-size: 1.5rem;
            min-width: 30px;
        }

        .benefit-item span:last-child {
            color: var(--text);
            font-weight: 500;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .step-content p {
            color: var(--text-light);
            line-height: 1.5;
        }

        .hr-contact p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .contact-info p {
            color: var(--text);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        /* Responsive Design for Downloads and Careers */
        @media (max-width: 768px) {
            .downloads-controls {
                gap: 1.5rem;
            }

            .filter-tabs,
            .department-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }

            .downloads-grid {
                grid-template-columns: 1fr;
            }

            .download-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .jobs-grid {
                grid-template-columns: 1fr;
            }

            .job-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .careers-footer {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .process-steps {
                gap: 1rem;
            }

            .culture-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .search-box {
                max-width: 100%;
            }

            .filter-tab,
            .dept-tab {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .download-item,
            .job-card,
            .culture-item {
                padding: 1.5rem;
            }

            .download-icon {
                font-size: 2rem;
            }

            .culture-icon {
                font-size: 2.5rem;
            }
        }

        /* Dropdown Navigation Styles */
        .dropdown-nav {
            position: relative;
        }

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown-nav:hover .dropdown-arrow,
        .dropdown-nav.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .dropdown-nav:hover .dropdown-menu,
        .dropdown-nav.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: var(--bg-secondary);
            border-left-color: var(--primary);
            color: var(--primary);
        }

        .dropdown-view-all {
            border-top: 1px solid var(--border-color);
            margin-top: 0.5rem;
            padding-top: 1rem;
            font-weight: 600;
        }

        /* Team Section Styles */
        .team-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .team-category-btn {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .team-category-btn:hover,
        .team-category-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .team-section {
            margin-bottom: 4rem;
        }

        .team-section-title {
            text-align: center;
            color: var(--text);
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .team-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .team-member-card {
            background: var(--bg-secondary);
            border-radius: 20px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .team-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .member-photo {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member-card:hover .member-photo img {
            transform: scale(1.05);
        }

        .member-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-member-card:hover .member-overlay {
            opacity: 1;
        }

        .member-contact {
            display: flex;
            gap: 1rem;
        }

        .member-contact a {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .member-contact a:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }

        .member-info {
            padding: 2rem;
        }

        .member-info h4 {
            color: var(--text);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .member-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .member-bio {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .member-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .expertise-tag {
            padding: 0.25rem 0.75rem;
            background: var(--accent);
            color: var(--dark);
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Mobile Dropdown Styles */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: var(--bg-secondary);
                border-radius: 0;
                margin-top: 0.5rem;
                display: none;
            }

            .dropdown-nav.mobile-active .dropdown-menu {
                display: block;
            }

            .dropdown-trigger {
                width: 100%;
                justify-content: space-between;
            }

            .team-categories {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }

            .team-category-btn {
                white-space: nowrap;
                flex-shrink: 0;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .member-photo {
                height: 250px;
            }

            .member-info {
                padding: 1.5rem;
            }

            .team-section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .member-photo {
                height: 200px;
            }

            .member-info {
                padding: 1rem;
            }

            .member-info h4 {
                font-size: 1.1rem;
            }

            .member-contact {
                gap: 0.5rem;
            }

            .member-contact a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* Team Section Filtering Animation */
        .team-section {
            transition: all 0.3s ease;
        }

        .team-section.hidden {
            display: none;
        }

        .team-member-card {
            animation: fadeInUp 0.6s ease forwards;
        }

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

        /* Products Accordion Styles */
        .products-section {
            padding: 4rem 0;
            background: var(--bg-primary);
        }

        .products-accordion {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .accordion-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* Uniform spacing for all vendor accordion sections */
        .accordion-item {
            margin-bottom: 1.5rem !important;
        }

        /* Remove bottom margin from the last accordion item */
        .accordion-item:last-child {
            margin-bottom: 0 !important;
        }

        .accordion-item:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .accordion-item.active {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-header:hover {
            background: var(--bg-accent);
        }

        .accordion-item.active .accordion-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .product-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .product-icon {
            font-size: 2.2rem;
            min-width: 60px;
            text-align: center;
        }

        .product-title h3 {
            color: var(--text);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .accordion-item.active .product-title h3 {
            color: white;
        }

        .product-subtitle {
            color: var(--text-light);
            font-size: 1rem;
            margin: 0;
            transition: color 0.3s ease;
        }

        .accordion-item.active .product-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .accordion-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .accordion-item.active .accordion-indicator {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(45deg);
        }

        .expand-icon {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .accordion-item.active .expand-icon {
            color: white;
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            background: var(--bg-primary);
        }

        .accordion-item.active .accordion-content {
            max-height: 600px; /* Set maximum height constraint */
            padding: 2rem;
            overflow-y: auto; /* Enable vertical scrolling */
            overflow-x: hidden; /* Prevent horizontal scrolling */
            /* Custom scrollbar styling */
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--bg-secondary);
        }

        /* Webkit scrollbar styling for better visual integration */
        .accordion-item.active .accordion-content::-webkit-scrollbar {
            width: 8px;
        }

        .accordion-item.active .accordion-content::-webkit-scrollbar-track {
            background: var(--bg-secondary);
            border-radius: 4px;
        }

        .accordion-item.active .accordion-content::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 4px;
            transition: background 0.3s ease;
        }

        .accordion-item.active .accordion-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        /* Responsive height adjustments */
        @media (min-width: 1200px) {
            .accordion-item.active .accordion-content {
                max-height: 700px;
            }
        }

        @media (min-width: 768px) and (max-width: 1199px) {
            .accordion-item.active .accordion-content {
                max-height: 600px;
            }
        }

        @media (max-width: 767px) {
            .accordion-item.active .accordion-content {
                max-height: 500px;
            }
        }

        @media (max-width: 480px) {
            .accordion-item.active .accordion-content {
                max-height: 400px;
                padding: 1.5rem;
            }
        }

        /* Smooth scroll behavior for accordion content */
        .accordion-content {
            scroll-behavior: smooth;
        }

        /* Focus indicator for scrollable content */
        .accordion-item.active .accordion-content:focus-within {
            outline: 2px solid var(--accent);
            outline-offset: -2px;
        }

        /* Dark mode scrollbar adjustments */
        [data-theme="dark"] .accordion-item.active .accordion-content {
            scrollbar-color: var(--accent) var(--bg-accent);
        }

        [data-theme="dark"] .accordion-item.active .accordion-content::-webkit-scrollbar-track {
            background: var(--bg-accent);
        }

        [data-theme="dark"] .accordion-item.active .accordion-content::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--accent), var(--primary));
        }

        [data-theme="dark"] .accordion-item.active .accordion-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease 0.2s;
        }

        .accordion-item.active .content-grid {
            opacity: 1;
            transform: translateY(0);
        }

        .content-section {
            background: var(--bg-secondary);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .content-section h4 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            /* border-bottom: 2px solid var(--accent); */
        }

        .content-section p {
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            color: var(--text);
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            background: var(--bg-accent);
            padding-left: 1rem;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        /* Responsive CSS Grid Layout with Equal Spacing for Application Grid Containers */
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            align-items: stretch;
            justify-content: center;
            width: 100%;
            margin: 0 auto;
            padding: 1rem 0;
            /* Ensure consistent spacing distribution */
            grid-auto-rows: minmax(auto, 1fr);
            /* Auto-scaling when new elements are added */
            grid-auto-flow: row;
        }

        /* Enhanced spacing for uniform visual distribution */
        .applications-grid .application-item {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100%;
            /* Ensure equal height for all grid items */
            height: auto;
        }

        /* Responsive breakpoints for optimal spacing */
        @media (min-width: 1200px) {
            .applications-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2.5rem;
                max-width: 1400px;
            }
        }

        @media (min-width: 768px) and (max-width: 1199px) {
            .applications-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
        }

        @media (min-width: 481px) and (max-width: 767px) {
            .applications-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .applications-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0.5rem 0;
            }
        }

        /* Auto-scaling grid for dynamic content */
        .applications-grid:has(.application-item:nth-child(n+5)) {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .applications-grid:has(.application-item:nth-child(n+7)) {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        /* Fallback for browsers that don't support :has() */
        @supports not selector(:has(*)) {
            .applications-grid.many-items {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .applications-grid.very-many-items {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        .application-item {
            background: var(--bg-accent);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .application-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .application-item strong {
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .application-item span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .specs-table {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--bg-accent);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .spec-row:hover {
            background: var(--primary);
            color: white;
        }

        .spec-label {
            font-weight: 600;
            color: var(--text);
            transition: color 0.3s ease;
        }

        .spec-value {
            color: var(--text-light);
            font-family: 'Courier New', monospace;
            transition: color 0.3s ease;
        }

        .spec-row:hover .spec-label,
        .spec-row:hover .spec-value {
            color: white;
        }

        /* Responsive Design for Accordion */
        @media (max-width: 768px) {
            .products-accordion {
                padding: 0 1rem;
            }

            .accordion-header {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .product-info {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .product-icon {
                font-size: 2.5rem;
            }

            .product-title h3 {
                font-size: 1.2rem;
            }

            .accordion-content {
                padding: 1rem;
            }

            .accordion-item.active .accordion-content {
                padding: 1.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .content-section {
                padding: 1rem;
            }

            .applications-grid {
                grid-template-columns: 1fr;
            }

            .spec-row {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .accordion-header {
                padding: 1rem;
            }

            .product-icon {
                font-size: 2rem;
            }

            .product-title h3 {
                font-size: 1.1rem;
            }

            .accordion-indicator {
                width: 40px;
                height: 40px;
            }

            .expand-icon {
                font-size: 1.2rem;
            }
        }

        /* Animation for accordion opening */
        @keyframes accordionSlideDown {
            from {
                max-height: 0;
                opacity: 0;
            }
            to {
                max-height: 2000px;
                opacity: 1;
            }
        }

        .accordion-item.active .accordion-content {
            animation: accordionSlideDown 0.5s ease forwards;
        }

        /* Pulse animation for active accordion */
        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }
            50% {
                box-shadow: 0 15px 40px rgba(45, 122, 103, 0.3);
            }
            100% {
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }
        }

        .accordion-item.active {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Get in Touch Section Styles */
        .get-in-touch-section {
            padding: 2rem 0;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .get-in-touch-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(232, 165, 71, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(45, 122, 103, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .get-in-touch-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .get-in-touch-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .get-in-touch-header h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
        }

        .get-in-touch-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .get-in-touch-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            will-change: transform, box-shadow;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .contact-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(232, 165, 71, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
            z-index: 1;
        }

        .contact-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .contact-card:active {
            transform: translateY(-4px) scale(1.01);
        }

        .contact-card-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateZ(0);
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(45, 122, 103, 0.3);
        }

        .contact-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .contact-card:hover .contact-title {
            color: var(--primary);
        }

        .contact-info {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-info p {
            color: var(--text);
            transform: translateY(-2px);
        }

        .contact-action {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--accent);
            color: var(--primary);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateZ(0);
        }

        .contact-card:hover .contact-action {
            background: var(--primary);
            color: white;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 5px 15px rgba(45, 122, 103, 0.3);
        }

        .contact-action:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        /* Specific card styling */
        .contact-card.phone .contact-icon {
            background: linear-gradient(135deg, #4CAF50, #45a049);
        }

        .contact-card.email .contact-icon {
            background: linear-gradient(135deg, #2196F3, #1976D2);
        }

        .contact-card.address .contact-icon {
            background: linear-gradient(135deg, #FF9800, #F57C00);
        }

        .contact-card.logistics .contact-icon {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        }

        .contact-card.technical .contact-icon {
            background: linear-gradient(135deg, #607D8B, #455A64);
        }

        .contact-card.escalation .contact-icon {
            background: linear-gradient(135deg, #F44336, #D32F2F);
        }

        .contact-card.careers .contact-icon {
            background: linear-gradient(135deg, #795548, #5D4037);
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .contact-cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .get-in-touch-section {
                padding: 2rem 0;
            }

            .get-in-touch-container {
                padding: 0 1.5rem;
            }

            .get-in-touch-header h2 {
                font-size: 2.2rem;
            }

            .get-in-touch-header p {
                font-size: 1.1rem;
            }

            .contact-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-card {
                padding: 2rem;
            }

            .contact-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .contact-title {
                font-size: 1.2rem;
            }

            .contact-info p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .get-in-touch-header h2 {
                font-size: 1.8rem;
            }

            .contact-card {
                padding: 1.5rem;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }

            .contact-title {
                font-size: 1.1rem;
            }

            .contact-info p {
                font-size: 0.9rem;
            }

            .contact-action {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* Large desktop optimizations */
        @media (min-width: 1440px) {
            .contact-cards-grid {
                grid-template-columns: repeat(3, 1fr);
                max-width: 1200px;
                margin: 2rem auto 2rem;
            }

            .contact-card {
                padding: 3rem;
            }

            .contact-icon {
                width: 90px;
                height: 90px;
                font-size: 2.8rem;
            }

            .contact-title {
                font-size: 1.5rem;
            }

            .contact-info p {
                font-size: 1.1rem;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            .contact-card,
            .contact-icon,
            .contact-action,
            .contact-card::before,
            .contact-card::after {
                transition: none;
                animation: none;
            }

            .contact-card:hover {
                transform: none;
            }
        }

        /* Dark mode specific adjustments */
        [data-theme="dark"] .contact-card {
            background: var(--bg-secondary);
            border-color: rgba(232, 240, 237, 0.15);
        }

        [data-theme="dark"] .contact-card:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        [data-theme="dark"] .contact-card::after {
            background: radial-gradient(circle, rgba(45, 122, 103, 0.15) 0%, transparent 70%);
        }

        /* Scroll to Top Button Styles */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 8px 25px rgba(10, 77, 60, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1000;
            will-change: transform, opacity;
            backface-visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 35px rgba(10, 77, 60, 0.4);
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        .scroll-to-top:active {
            transform: translateY(-2px) scale(1.05);
            transition-duration: 0.1s;
        }

        .scroll-to-top:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        .scroll-to-top::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .scroll-to-top:hover::before {
            width: 80px;
            height: 80px;
        }

        .scroll-to-top-icon {
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .scroll-to-top:hover .scroll-to-top-icon {
            transform: translateY(-2px);
            animation: bounceUp 0.6s ease-in-out;
        }

        @keyframes bounceUp {
            0%, 100% {
                transform: translateY(-2px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* Dark mode adjustments */
        [data-theme="dark"] .scroll-to-top {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        [data-theme="dark"] .scroll-to-top:hover {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .scroll-to-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.3rem;
            }

            .scroll-to-top-icon {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 15px;
                right: 15px;
                font-size: 1.2rem;
            }

            .scroll-to-top-icon {
                font-size: 1.2rem;
            }
        }

        /* Large desktop optimizations */
        @media (min-width: 1440px) {
            .scroll-to-top {
                width: 70px;
                height: 70px;
                bottom: 40px;
                right: 40px;
                font-size: 1.7rem;
            }

            .scroll-to-top-icon {
                font-size: 1.7rem;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            .scroll-to-top,
            .scroll-to-top-icon,
            .scroll-to-top::before {
                transition: none;
                animation: none;
            }

            .scroll-to-top:hover {
                transform: none;
            }

            .scroll-to-top:hover .scroll-to-top-icon {
                transform: none;
                animation: none;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .scroll-to-top {
                border: 3px solid var(--text);
                background: var(--primary);
            }

            .scroll-to-top:hover {
                border-color: var(--accent);
            }

            .scroll-to-top:focus {
                outline-width: 4px;
            }
        }

        /* Print styles */
        @media print {
            .scroll-to-top {
                display: none;
            }
        }

        /* Smooth scrolling behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Override smooth scrolling for reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        /* Dark Mode Preference */
        @media (prefers-color-scheme: dark) {
            :root:not([data-theme="light"]) {
                --primary: #2D7A67;
                --secondary: #3D8A77;
                --accent: #F4B55E;
                --dark: #F8FAFB;
                --light: #0D1F1A;
                --cream: #1A2825;
                --text: #E8F0ED;
                --text-light: #A8BCB5;
                --bg-primary: #0D1F1A;
                --bg-secondary: #1A2825;
                --bg-accent: #1F2F2B;
                --border-color: rgba(232, 240, 237, 0.1);
            }
        }

        /* Dark Mode Anchor Styling */
        [data-theme="dark"] a {
            color: #F4B55E;
        }

        [data-theme="dark"] a:hover {
            color: #E8A547;
        }

        [data-theme="dark"] a:visited {
            color: #F4B55E;
        }

        /* Dark Mode Preference for Anchor Elements */
        @media (prefers-color-scheme: dark) {
            :root:not([data-theme="light"]) a {
                color: #FFFFFF;
            }

            :root:not([data-theme="light"]) a:hover {
                color: #E8A547;
            }

            :root:not([data-theme="light"]) a:visited {
                color: #F4B55E;
            }
        }

        /* Horizontal Border After Product Sub-Groups */
        .product-sub-group {
            border-bottom: 2px solid #FF6B35;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }

        /* Our Office Card Styles */
        .office-card {
            position: relative;
        }

        .office-thumbnails-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .office-thumbnail-small {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
        }

        .office-thumbnail-small:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .office-thumbnail-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.3s ease;
        }

        .office-thumbnail-small:hover img {
            transform: scale(1.05);
        }

        .thumbnail-overlay-small {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .office-thumbnail-small:hover .thumbnail-overlay-small {
            opacity: 1;
        }

        .view-icon-small {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--primary);
            transform: scale(0);
            transition: transform 0.3s ease 0.1s;
        }

        .office-thumbnail-small:hover .view-icon-small {
            transform: scale(1);
        }

        /* Responsive adjustments for office thumbnails */
        @media (max-width: 768px) {
            .office-thumbnails-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .office-thumbnails-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.4rem;
            }
            
            .office-thumbnail-small {
                aspect-ratio: 1;
                border-radius: 6px;
            }
            
            .view-icon-small {
                width: 25px;
                height: 25px;
                font-size: 0.8rem;
            }
        }

        /* Dark mode adjustments for office thumbnails */
        [data-theme="dark"] .office-thumbnail-small {
            border-color: rgba(232, 240, 237, 0.15);
        }

        [data-theme="dark"] .office-thumbnail-small:hover {
            border-color: var(--primary);
        }

        [data-theme="dark"] .view-icon-small {
            background: rgba(26, 40, 37, 0.9);
            color: var(--accent);
        }

        /* Focus states for accessibility */
        .office-thumbnail-small:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        /* Our Office Section Styles */
        .office-section {
            padding: 6rem 0;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .office-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(232, 165, 71, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(45, 122, 103, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .office-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .office-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .office-header .section-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .office-header .section-title {
            font-family: 'DM Serif Display', serif;
            font-size: 2.2rem;
            color: var(--text);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .office-header .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .office-description {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Responsive Office Gallery Grid */
        .office-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .office-thumbnail {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: var(--bg-secondary);
            border: 2px solid var(--border-color);
            will-change: transform;
            transform: translateZ(0);
        }

        .office-thumbnail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: 3;
        }

        .office-thumbnail:hover::before {
            transform: translateX(100%);
        }

        .office-thumbnail:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .office-thumbnail:active {
            transform: translateY(-5px) scale(1.01);
        }

        .office-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.4s ease;
            background: var(--bg-accent);
        }

        .office-thumbnail:hover img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                transparent 40%,
                rgba(0, 0, 0, 0.3) 70%,
                rgba(0, 0, 0, 0.8) 100%
            );
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .office-thumbnail:hover .thumbnail-overlay {
            opacity: 1;
        }

        .overlay-content {
            color: white;
            text-align: left;
            width: 100%;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }

        .office-thumbnail:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .overlay-content p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .view-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
            transform: scale(0);
        }

        .office-thumbnail:hover .view-icon {
            transform: scale(1);
        }

        /* Loading Spinner for Thumbnails */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border: 3px solid var(--border-color);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .office-thumbnail.loading .loading-spinner {
            opacity: 1;
        }

        .office-thumbnail.loading img {
            opacity: 0.3;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Office Modal Styles */
        .office-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(0px);
        }

        .office-modal.active {
            opacity: 1;
            visibility: visible;
            backdrop-filter: blur(5px);
        }

        .modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            transition: opacity 0.3s ease;
        }

        .modal-container {
            position: relative;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
            background: var(--bg-secondary);
            border-radius: 20px;
            overflow: hidden;
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
        }

        .office-modal.active .modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-primary);
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text);
            margin: 0;
        }

        .modal-close {
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg-accent);
            color: var(--text);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .modal-content {
            position: relative;
            padding: 0;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 400px;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .modal-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            object-position: center;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .modal-image.loaded {
            opacity: 1;
        }

        .image-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--text-light);
        }

        .loading-spinner-large {
            width: 60px;
            height: 60px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        .image-error {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--text-light);
        }

        .error-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .retry-btn {
            padding: 0.75rem 1.5rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .retry-btn:hover {
            background: var(--secondary);
            transform: scale(1.05);
        }

        /* Carousel Navigation */
        .carousel-navigation {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            pointer-events: none;
        }

        .carousel-btn {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

/* ===== CONTACT FORM SECTION STYLES ===== */

/* Contact Form Section - Modern Design with Dark/Light Mode Support */
.contact-form-section {
    padding: 2rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(232, 165, 71, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(45, 122, 103, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-form-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-form-header .section-label {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form-header .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.contact-form-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Layout Grid */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Main Contact Form Card */
.contact-form-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form-card:hover::before {
    transform: scaleX(1);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

/* Form Title */
.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Modern Form Styling */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

/* Input Group Styling */
.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Form Input Styling */
.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 122, 103, 0.1);
    transform: translateY(-2px);
}

.form-input:focus + .input-icon,
.form-textarea:focus + .input-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    opacity: 0.5;
}

/* Textarea Specific Styling */
.form-textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
    line-height: 1.6;
}

.textarea-wrapper .input-icon {
    top: 1rem;
}

/* Required Field Indicator */
.required-indicator {
    color: var(--accent);
    font-weight: 700;
    margin-left: 2px;
}

/* Form Validation States */
.input-group.error .form-input,
.input-group.error .form-textarea {
    border-color: #e53e3e;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.input-group.error .input-icon {
    color: #e53e3e;
}

.input-group.success .form-input,
.input-group.success .form-textarea {
    border-color: #38a169;
    box-shadow: 0 0 0 4px rgba(56, 161, 105, 0.1);
}

.input-group.success .input-icon {
    color: #38a169;
}

.error-message {
    font-size: 0.85rem;
    color: #e53e3e;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.input-group.error .error-message {
    opacity: 1;
    transform: translateY(0);
}

/* Submit Button Styling */
.form-submit-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(45, 122, 103, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn::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.6s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(45, 122, 103, 0.4);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.form-submit-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition-duration: 0.1s;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(45, 122, 103, 0.2);
}

/* Loading State */
.form-submit-btn.loading {
    pointer-events: none;
}

.form-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Information Sidebar */
.contact-info-sidebar {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 2.5rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-info-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Quick Contact Items */
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: var(--bg-primary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.quick-contact-item:hover::before {
    transform: scaleY(1);
}

.quick-contact-item:hover {
    background: var(--bg-accent);
    border-color: var(--primary);
    transform: translateX(8px);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-contact-item:hover .contact-item-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s ease;
}

.quick-contact-item:hover .contact-item-value {
    color: var(--primary);
}

/* Business Hours */
.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-accent);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--text);
}

.hours-time {
    color: var(--text-light);
}

.hours-item.today {
    background: var(--primary);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.hours-item.today .hours-day,
.hours-item.today .hours-time {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-form-layout {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .contact-form-card {
        padding: 2.5rem;
    }
    
    .contact-info-sidebar {
        padding: 2rem;
    }
}

@media (max-width: 968px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-sidebar {
        position: static;
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-container {
        padding: 0 1.5rem;
    }
    
    .contact-form-header .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form-description {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .contact-info-sidebar {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .quick-contact-item {
        padding: 1rem;
    }
    
    .contact-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .contact-form-header {
        margin-bottom: 3rem;
    }
    
    .contact-form-header .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-description {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contact-info-sidebar {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.9rem 0.9rem 0.9rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .quick-contact-item {
        padding: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .business-hours {
        padding: 1.25rem;
    }
    
    .hours-item {
        font-size: 0.85rem;
    }
}

/* Dark Mode Specific Adjustments */
[data-theme="dark"] .contact-form-card {
    background: var(--bg-secondary);
    border-color: rgba(232, 240, 237, 0.15);
}

[data-theme="dark"] .contact-form-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .contact-info-sidebar {
    background: var(--bg-secondary);
    border-color: rgba(232, 240, 237, 0.15);
}

[data-theme="dark"] .contact-info-sidebar:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
    background: var(--bg-primary);
    border-color: rgba(232, 240, 237, 0.15);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 122, 103, 0.2);
}

[data-theme="dark"] .quick-contact-item {
    background: var(--bg-primary);
    border-color: rgba(232, 240, 237, 0.1);
}

[data-theme="dark"] .quick-contact-item:hover {
    background: var(--bg-accent);
    border-color: var(--primary);
}

[data-theme="dark"] .business-hours {
    background: var(--bg-accent);
    border-color: rgba(232, 240, 237, 0.1);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .contact-form-card,
    .contact-info-sidebar,
    .form-input,
    .form-textarea,
    .form-submit-btn,
    .quick-contact-item,
    .contact-item-icon {
        transition: none;
        animation: none;
    }
    
    .contact-form-card:hover,
    .contact-info-sidebar:hover,
    .form-submit-btn:hover,
    .quick-contact-item:hover {
        transform: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-form-card {
        border: 3px solid var(--text);
    }
    
    .form-input,
    .form-textarea {
        border: 2px solid var(--text);
    }
    
    .form-submit-btn {
        border: 2px solid var(--text);
    }
    
    .quick-contact-item {
        border: 2px solid var(--text);
    }
}

/* Focus States for Accessibility */
.form-input:focus,
.form-textarea:focus,
.form-submit-btn:focus,
.quick-contact-item:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .contact-form-section {
        break-inside: avoid;
    }
    
    .contact-form-card,
    .contact-info-sidebar {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .form-submit-btn {
        display: none;
    }
}
            backdrop-filter: blur(10px);
        }

        .carousel-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(10, 77, 60, 0.3);
        }

        .carousel-btn:active {
            transform: scale(1.05);
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .image-counter {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .modal-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
        }

        .image-info {
            flex: 1;
        }

        .image-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text);
            margin: 0 0 0.5rem 0;
        }

        .image-description {
            color: var(--text-light);
            line-height: 1.5;
            margin: 0;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
        }

        .action-btn {
            width: 45px;
            height: 45px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            color: var(--text);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.1);
        }

        /* Responsive Design for Office Section */
        @media (min-width: 1200px) {
            .office-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199px) {
            .office-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .office-container {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 767px) {
            .office-section {
                padding: 4rem 0;
            }
            
            .office-container {
                padding: 0 1rem;
            }
            
            .office-header .section-title {
                font-size: 2.2rem;
            }
            
            .office-description {
                font-size: 1.1rem;
            }
            
            .office-gallery {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .office-thumbnail {
                aspect-ratio: 16/10;
            }
            
            .thumbnail-overlay {
                padding: 1.5rem;
            }
            
            .overlay-content h3 {
                font-size: 1.1rem;
            }
            
            .overlay-content p {
                font-size: 0.85rem;
            }
            
            .view-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .office-section {
                padding: 3rem 0;
            }
            
            .office-header {
                margin-bottom: 3rem;
            }
            
            .office-header .section-title {
                font-size: 1.8rem;
            }
            
            .office-description {
                font-size: 1rem;
            }
            
            .office-thumbnail {
                aspect-ratio: 4/3;
            }
            
            .thumbnail-overlay {
                padding: 1rem;
            }
            
            .modal-container {
                width: 95%;
                max-height: 95vh;
            }
            
            .modal-header {
                padding: 1rem 1.5rem;
            }
            
            .modal-title {
                font-size: 1.2rem;
            }
            
            .modal-close {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
            
            .image-container {
                height: 50vh;
                min-height: 300px;
            }
            
            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .carousel-navigation {
                padding: 0 1rem;
            }
            
            .modal-footer {
                padding: 1.5rem;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .modal-actions {
                justify-content: center;
            }
        }

        /* Dark Mode Adjustments */
        [data-theme="dark"] .office-modal .modal-backdrop {
            background: rgba(0, 0, 0, 0.9);
        }

        [data-theme="dark"] .modal-container {
            border-color: rgba(232, 240, 237, 0.15);
            box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
        }

        [data-theme="dark"] .carousel-btn {
            background: rgba(26, 40, 37, 0.9);
            color: var(--accent);
        }

        [data-theme="dark"] .carousel-btn:hover {
            background: var(--primary);
            color: white;
        }

        [data-theme="dark"] .image-counter {
            background: rgba(26, 40, 37, 0.8);
        }

        /* Accessibility Improvements */
        @media (prefers-reduced-motion: reduce) {
            .office-thumbnail,
            .office-thumbnail img,
            .thumbnail-overlay,
            .overlay-content,
            .view-icon,
            .modal-container,
            .modal-image,
            .carousel-btn {
                transition: none;
                animation: none;
            }
            
            .office-thumbnail:hover {
                transform: none;
            }
            
            .loading-spinner,
            .loading-spinner-large {
                animation: none;
            }
        }

        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            .office-thumbnail {
                border: 3px solid var(--text);
            }
            
            .modal-container {
                border: 3px solid var(--text);
            }
            
            .carousel-btn {
                border: 2px solid var(--text);
            }
        }

        /* Focus States for Accessibility */
        .office-thumbnail:focus,
        .modal-close:focus,
        .carousel-btn:focus,
        .action-btn:focus,
        .retry-btn:focus {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
        }

        /* Print Styles */
        @media print {
            .office-modal {
                display: none;
            }
            
            .office-thumbnail {
                break-inside: avoid;
            }
        }

/* ===== CAREERS SECTION STYLES ===== */

/* Careers Section - Consistent with About Us Section */
.careers-section {
    background: var(--light);
    color: var(--dark);
    /* padding: 7rem 3rem; */
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .careers-section {
    background: var(--bg-accent);
    color: var(--text);
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(232, 165, 71, 0.1));
    pointer-events: none;
}

/* Ensure text elements inherit proper colors in dark mode */
[data-theme="dark"] .careers-section .section-title,
[data-theme="dark"] .careers-section .section-subtitle,
[data-theme="dark"] .careers-section h2,
[data-theme="dark"] .careers-section h3,
[data-theme="dark"] .careers-section h4 {
    color: var(--text);
}

[data-theme="dark"] .careers-section p,
[data-theme="dark"] .careers-section .lead-text {
    color: var(--text-light);
}

.careers-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-bottom: 0;
    overflow: hidden;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.careers-hero-content {
    position: relative;
    z-index: 2;
}

.careers-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.highlight-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Culture Showcase */
.culture-showcase {
    padding: 80px 0;
    /* background: linear-gradient(to bottom, #f8fafc, #ffffff); */
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    /* color: #1a202c; */
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.culture-description {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.culture-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #718096;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    /* background: white; */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-card p {
    color: #718096;
    line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
    /* padding: 80px 0; */
    /* background: white; */
}

.jobs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-top: 1rem;
}

/* Job Filters */
.job-filters {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-reset-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-reset-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
}

/* Job Cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.job-card.modern-card {
    /* background: white; */
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card.modern-card:hover::before {
    transform: scaleX(1);
}

.job-card.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.job-card-header {
    margin-bottom: 1.5rem;
}

.job-title-section {
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-department {
    background: #e6fffa;
    color: #234e52;
}

.badge-type {
    background: #f0f4ff;
    color: #3c4fe0;
}

.badge-new {
    background: #f0fff4;
    color: #22543d;
}

.badge-urgent {
    background: #fed7d7;
    color: #742a2a;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.job-location,
.job-experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-card-body {
    margin-bottom: 2rem;
}

.job-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-highlights h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.job-highlights ul {
    list-style: none;
    padding: 0;
}

.job-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #718096;
}

.job-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.job-card-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.job-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* No Jobs Message */
.no-jobs-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #718096;
}

.no-jobs-content svg {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-jobs-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Application Section */
.application-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f7fafc, #edf2f7); */
}

.application-container {
    max-width: 800px;
    margin: 0 auto;
}

.application-content {
    text-align: center;
}

.application-methods {
    margin: 3rem 0;
}

.application-card {
    /* background: white; */
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.application-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.application-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.application-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.application-details {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: left;
    border: 1px solid var(--border-color);
}

.application-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.email-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

/* Application Tips */
.application-tips {
    margin-top: 4rem;
    text-align: left;
}

.application-tips h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    text-align: center;
}

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

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    /* background: white; */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.tip-content p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* Contact Section */
.careers-contact {
    padding: 80px 0;
    background: white;
}

.contact-container {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-card p {
    color: #718096;
    margin-bottom: 1rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero {
        padding: 80px 0 60px;
    }
    
    .careers-hero-title {
        font-size: 2.5rem;
    }
    
    .careers-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .culture-showcase,
    .jobs-section,
    .application-section,
    .careers-contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-hero-title {
        font-size: 2rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1rem;
    }
    
    .value-card,
    .job-card.modern-card,
    .application-card {
        padding: 1.5rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
.btn:focus,
.filter-select:focus,
.contact-link:focus,
.email-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .value-card,
    .job-card.modern-card,
    .application-card,
    .contact-card {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-outline {
        border-color: #000;
        color: #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-pattern {
        animation: none;
    }
}

/* ===== LOCATION MAP SECTION STYLES ===== */

/* Location Map Section */
.location-map-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.location-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(232, 165, 71, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(45, 122, 103, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.map-header h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
}

.map-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.map-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.map-info {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.location-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.address-item:hover {
    background: var(--bg-accent);
    border-color: var(--accent);
    transform: translateX(5px);
}

.address-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.address-item div {
    flex: 1;
}

.address-item strong {
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.map-actions {
    text-align: center;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(10, 77, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.map-directions-btn::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;
}

.map-directions-btn:hover::before {
    left: 100%;
}

.map-directions-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 77, 60, 0.4);
}

.map-directions-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.map-directions-btn svg {
    transition: transform 0.3s ease;
}

.map-directions-btn:hover svg {
    transform: scale(1.1);
}

.map-embed {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.map-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    transition: all 0.3s ease;
}

.map-embed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-embed:hover::after {
    opacity: 1;
}

/* Responsive Design for Location Map */
@media (min-width: 1200px) {
    .map-container {
        gap: 4rem;
    }
    
    .map-info {
        padding: 3rem;
    }
    
    .map-embed iframe {
        height: 450px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .map-info {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .map-embed iframe {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .location-map-section {
        padding: 3rem 0;
    }
    
    .map-header h3 {
        font-size: 2rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        padding: 2rem;
    }
    
    .location-details h4 {
        font-size: 1.2rem;
    }
    
    .address-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .address-item svg {
        align-self: center;
    }
    
    .map-directions-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .map-embed iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .location-map-section {
        padding: 2.5rem 0;
    }
    
    .map-header {
        margin-bottom: 2rem;
    }
    
    .map-header h3 {
        font-size: 1.75rem;
    }
    
    .map-info {
        padding: 1.5rem;
    }
    
    .location-details h4 {
        font-size: 1.1rem;
    }
    
    .address-details {
        gap: 1rem;
    }
    
    .address-item {
        padding: 0.875rem;
    }
    
    .map-directions-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .map-embed iframe {
        height: 250px;
    }
}

/* Dark Mode Adjustments */
[data-theme="dark"] .location-map-section {
    background: var(--bg-accent);
}

[data-theme="dark"] .map-info {
    background: var(--bg-secondary);
    border-color: rgba(232, 240, 237, 0.15);
}

[data-theme="dark"] .map-info:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .address-item {
    background: var(--bg-primary);
    border-color: rgba(232, 240, 237, 0.1);
}

[data-theme="dark"] .address-item:hover {
    background: var(--bg-accent);
    border-color: var(--accent);
}

[data-theme="dark"] .map-embed {
    border-color: rgba(232, 240, 237, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .map-embed:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .map-info,
    .map-embed,
    .address-item,
    .map-directions-btn,
    .map-directions-btn::before {
        transition: none;
        animation: none;
    }
    
    .map-info:hover,
    .map-embed:hover,
    .address-item:hover,
    .map-directions-btn:hover {
        transform: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .map-info {
        border: 2px solid var(--text);
    }
    
    .map-embed {
        border: 2px solid var(--text);
    }
    
    .address-item {
        border: 1px solid var(--text);
    }
    
    .map-directions-btn {
        border: 2px solid var(--text);
    }
}

/* Focus States for Accessibility */
.map-directions-btn:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.map-embed iframe:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .location-map-section {
        break-inside: avoid;
    }
    
    .map-embed {
        display: none;
    }
    
    .map-directions-btn {
        display: none;
    }
    
    .address-item {
        break-inside: avoid;
    }
}

/* ============================================================
   CUSTOMERS & AWARDS SECTION
   ============================================================ */

.customers-awards-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.customers-awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

/* ── Tab Navigation ── */
.customers-awards-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 60px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 20px rgba(10, 77, 60, 0.08);
    border: 1px solid var(--border-color);
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.35s ease;
    white-space: nowrap;
}

.nav-tab .tab-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-tab:hover {
    color: var(--primary);
    background: rgba(10, 77, 60, 0.06);
}

.nav-tab:hover .tab-icon {
    transform: scale(1.15);
}

.nav-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(10, 77, 60, 0.3);
}

.nav-tab.active .tab-icon {
    transform: scale(1.1);
}

/* ── Section Panels ── */
.customers-section,
.awards-section {
    display: none;
    animation: fadeSlideIn 0.45s ease forwards;
}

.customers-section.active,
.awards-section.active {
    display: block;
}

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

/* ── Subsection Title ── */
.subsection-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.65rem;
    color: var(--dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   CUSTOMERS PANEL
   ══════════════════════════════════════════════════════ */

/* ── Customer Statistics ── */
.customer-stats {
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(10, 77, 60, 0.12);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    display: inline;
}

.stat-card .stat-value-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.4rem;
}

.stat-card .stat-suffix {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
    margin-left: 1px;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0.4rem 0 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .stat-description {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(10, 77, 60, 0.1);
}

.testimonial-content {
    flex: 1;
}

.quote-icon {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    line-height: 0.7;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 0.75rem;
    display: block;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.1rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.1rem;
}

.author-company {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
}

/* ── Client Logos ── */
.client-logos-section {
    margin-bottom: 4rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.logo-item {
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
}

.logo-placeholder {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.logo-placeholder:hover {
    box-shadow: 0 8px 30px rgba(10, 77, 60, 0.1);
    border-color: rgba(10, 77, 60, 0.25);
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.4;
    text-align: center;
}

/* ── Case Studies ── */
.case-studies-section {
    margin-bottom: 1rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.case-study-card {
    background: var(--bg-secondary);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(10, 77, 60, 0.12);
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.75rem;
    position: relative;
}

.case-study-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.case-study-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.case-study-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-description {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.case-study-metrics {
    display: flex;
    gap: 1.25rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.metric-value {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   AWARDS PANEL
   ══════════════════════════════════════════════════════ */

/* ── Awards Timeline ── */
.awards-timeline-section {
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 3px var(--accent);
    transform: translateX(-5px);
}

.timeline-marker {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 1.2rem;
}

.timeline-year {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
}

.timeline-content {
    flex: 1;
}

.award-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(232, 165, 71, 0.1), transparent 70%);
}

.award-card:hover {
    transform: translateY(-3px) translateX(4px);
    box-shadow: 0 12px 40px rgba(10, 77, 60, 0.1);
}

.award-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    display: block;
}

.award-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.award-issuer {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.award-description {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── Award Certificate Images ── */
.award-certificates-section {
    margin-bottom: 4rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.certificate-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(10, 77, 60, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-secondary);
    cursor: pointer;
    position: relative;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(10, 77, 60, 0.15);
}

.certificate-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    pointer-events: none;
}

.certificate-item:hover .certificate-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.certificate-view-icon {
    font-size: 2.2rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.certificate-item:hover .certificate-view-icon {
    opacity: 1;
    transform: scale(1);
}

.certificate-caption {
    padding: 1rem 1.25rem;
}

.certificate-caption h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.certificate-caption p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── Certifications Grid ── */
.certifications-section {
    margin-bottom: 4rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.certification-card {
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-4px);
}

.cert-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-card:hover .cert-badge {
    box-shadow: 0 12px 40px rgba(10, 77, 60, 0.1);
}

.cert-badge::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.certification-card:hover .cert-badge::before {
    transform: scaleX(1);
}

.cert-icon {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.cert-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.2;
}

.cert-description {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    text-align: center;
}

.cert-issuer {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cert-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ── Achievements Grid ── */
.achievements-section {
    margin-bottom: 1rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 77, 60, 0.08);
}

.achievement-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.08), rgba(232, 165, 71, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.achievement-description {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════════════════ */

[data-theme="dark"] .customers-awards-nav {
    background: var(--bg-secondary);
}

[data-theme="dark"] .nav-tab.active {
    background: var(--primary);
    box-shadow: 0 4px 18px rgba(45, 122, 103, 0.4);
}

[data-theme="dark"] .stat-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .logo-placeholder,
[data-theme="dark"] .case-study-card,
[data-theme="dark"] .award-card,
[data-theme="dark"] .cert-badge,
[data-theme="dark"] .achievement-item,
[data-theme="dark"] .certificate-item {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .case-study-header {
    background: linear-gradient(135deg, #1A4D3C 0%, #2D6A57 100%);
}

[data-theme="dark"] .timeline-year {
    background: var(--bg-secondary);
}

[data-theme="dark"] .timeline-item::before {
    border-color: var(--bg-primary);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .customers-awards-section {
        padding: 4rem 0;
    }

    .customers-awards-nav {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .nav-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.88rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .customers-awards-nav {
        width: 100%;
        border-radius: 16px;
    }

    .nav-tab {
        flex: 1;
        justify-content: center;
        padding: 0.7rem 0.8rem;
        font-size: 0.82rem;
    }

    .nav-tab .tab-text {
        display: none;
    }

    .nav-tab .tab-icon {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 70px 1fr;
    }

    .stat-card .stat-number {
        font-size: 2.2rem;
    }
}

/* ============================================================
   CUSTOMERS PANEL — Sector Cards
   ============================================================ */

/* Intro strip */
.customers-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    padding: 1.75rem 2.5rem;
    margin-bottom: 2.5rem;
}

.customers-intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    text-align: center;
}

.customers-intro-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.ci-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ci-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sector grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Sector card */
.sector-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(10, 77, 60, 0.1);
}

.sector-card:hover::before {
    transform: scaleX(1);
}

/* Sector header row */
.sector-header {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.sector-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.1), rgba(232, 165, 71, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background 0.3s ease;
}

.sector-card:hover .sector-icon-wrap {
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.18), rgba(232, 165, 71, 0.2));
}

.sector-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.sector-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.1rem;
}

.sector-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.25;
}

.sector-count {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(10, 77, 60, 0.08);
    padding: 0.18rem 0.6rem;
    border-radius: 20px;
    width: fit-content;
}

/* Company list */
.sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.sector-list li {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.45;
    padding-left: 1.1rem;
    position: relative;
}

.sector-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* Dark mode */
[data-theme="dark"] .customers-intro {
    background: linear-gradient(135deg, #1A4D3C 0%, #2D6A57 100%);
}

[data-theme="dark"] .sector-card {
    background: var(--bg-secondary);
}

[data-theme="dark"] .sector-count {
    background: rgba(45, 122, 103, 0.2);
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .customers-intro {
        padding: 1.25rem 1.5rem;
    }

    .ci-number {
        font-size: 1.9rem;
    }

    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .customers-intro {
        flex-direction: column;
        gap: 1rem;
    }

    .customers-intro-divider {
        width: 60px;
        height: 1px;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }
}