/* Wrapper for the 2-column layout */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two equal columns */
            gap: 30px;
          
            padding: 40px;
        
            
        }

        /* --- Left Column: Contact Details & Map --- */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-item .icon {
            font-size: 24px;
            color: #0056b3;
            width: 50px;
            height: 50px;
            background: #e7f0fb;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .info-item h3 {
            margin-bottom: 5px;
            font-size: 18px;
        }

        .info-item p {
            color: #666;
            font-size: 15px;
        }

        /* Map Styling */
        .map-container {
            margin-top: 10px;
            width: 100%;
            height:800px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #eee;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- Right Column: Query Form --- */
        .contact-form h2 {
            margin-bottom: 20px;
            color: #333;
            font-size: 28px;
            border-bottom: 2px solid #0056b3;
            display: inline-block;
            padding-bottom: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #0056b3;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #004494;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr; /* Stack columns on mobile */
                padding: 20px;
            }
        }
				  .form-container {
            max-width: 500px;  
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            color: #333;
            font-weight: 700;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .control-label {
            font-weight: 600;
            color: #555;
        }
        
        .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #4e73df;
            box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
        }
        
        .btn-primary {
            background-color: #4e73df;
            border-color: #4e73df;
            font-weight: 600;
            padding: 12px 20px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #2e59d9;
            border-color: #2653d4;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Notification Popup Styles */
        .notification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .notification-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .notification-popup {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .notification-overlay.show .notification-popup {
            transform: scale(1);
        }
        
        .notification-icon {
            font-size: 60px;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .notification-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .notification-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
        }
        
        .close-notification {
            background-color: #4e73df;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .close-notification:hover {
            background-color: #2e59d9;
        }
        
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .required-field {
            color: #e74a3b;
        }  table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .additional-info {
            margin-top: 30px;
        }
        .info-item {
            margin-bottom: 10px;
        }   /* ── Gallery Grid ── */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .gallery-grid { grid-template-columns: 1fr; }
        }

        /* ── Gallery Item ── */
        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            aspect-ratio: 4 / 3;
            background: var(--bg-secondary);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: brightness(0.85) saturate(0.9);
        }
        .gallery-item:hover img {
            transform: scale(1.08);
            filter: brightness(1) saturate(1);
        }
        .gallery-item__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 20px;
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .gallery-item:hover .gallery-item__overlay {
            opacity: 1;
        }
        .gallery-item__zoom {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(234, 179, 8, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 18px;
            transform: translateY(12px);
            transition: transform 0.35s ease, background 0.2s ease;
            box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
        }
        .gallery-item:hover .gallery-item__zoom {
            transform: translateY(0);
        }
        .gallery-item__zoom:hover {
            background: #eab308;
        }

        /* ── Gallery Stats ── */
        .gallery-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 48px;
        }
        @media (max-width: 600px) {
            .gallery-stats { grid-template-columns: repeat(2, 1fr); }
        }
        .gallery-stat {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        .gallery-stat__number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--accent);
        }
        .gallery-stat__label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ── Lightbox ── */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 60px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.35s ease;
        }
        .lightbox-overlay.active img {
            transform: scale(1);
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10;
        }
        .lightbox-close:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 10;
        }
        .lightbox-nav:hover {
            background: rgba(234, 179, 8, 0.2);
            border-color: rgba(234, 179, 8, 0.4);
            color: var(--accent);
        }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        .lightbox-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            letter-spacing: 0.05em;
        }
        @media (max-width: 600px) {
            .lightbox-nav { width: 40px; height: 40px; font-size: 16px; }
            .lightbox-prev { left: 10px; }
            .lightbox-next { right: 10px; }
        } /* ── Clients Logo Grid ── */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .clients-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .clients-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .clients-grid__item {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            transition: all 0.3s ease;
        }
        .clients-grid__item:hover {
            border-color: rgba(234, 179, 8, 0.3);
            box-shadow: 0 0 20px rgba(234, 179, 8, 0.05);
            transform: translateY(-2px);
        }
        .clients-grid__item img {
            max-width: 100%;
            max-height: 110px;
            object-fit: contain;
            filter: brightness(0.85) grayscale(0.3);
            transition: all 0.3s ease;
        }
        .clients-grid__item:hover img {
            filter: brightness(1) grayscale(0);
        }
  /* ====== PRODUCT BANNER ====== */
        .product-banner {
            position: relative;
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f0f4f8 100%);
            overflow: hidden;
        }
        .product-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d1d5db' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V4h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V4h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }
        .product-banner .container {
            position: relative;
            z-index: 2;
        }
        .product-banner__breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 13px;
        }
        .product-banner__breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }
        .product-banner__breadcrumb a:hover { color: var(--accent); }
        .product-banner__breadcrumb .separator { color: var(--text-dim); }
        .product-banner__breadcrumb .current { color: var(--text-primary); font-weight: 500; }
        .product-banner__title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 600;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        .product-banner__title .highlight { color: var(--accent); }
        .product-banner__subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.7;
        }
        .product-banner__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-light);
            border: 1px solid rgba(0,102,204,0.15);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
        }
        .product-banner__shape {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(0,102,204,0.06);
            z-index: 1;
        }
        .product-banner__shape-2 {
            position: absolute;
            right: 80px;
            top: 40%;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(0,102,204,0.04);
            z-index: 1;
        }

        /* ====== PRODUCT DETAIL ====== */
        .product-detail {
            padding: 80px 0 100px;
            background: var(--bg-primary);
        }
        .product-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .product-image-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 100px;
        }
        .product-image-card img {
            width: 100%;
            border-radius: 16px;
            display: block;
            transition: transform 0.5s;
        }
        .product-image-card:hover img {
            transform: scale(1.02);
        }
        .product-image-card__caption {
            text-align: center;
            padding-top: 16px;
            font-size: 13px;
            color: var(--text-dim);
        }
        .product-info {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .product-info__label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
        }
        .product-info__label::before {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--accent);
        }
        .product-info__title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.15;
            color: var(--text-primary);
        }
        .product-info__desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .product-info__desc strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        .product-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: #fff;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-whatsapp:hover {
            background: #22c55e;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(37,211,102,0.3);
        }
        .btn-enquire {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: var(--text-primary);
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid var(--border-light);
            cursor: pointer;
        }
        .btn-enquire:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: var(--shadow-md);
        }

        /* ====== FEATURES GRID ====== */
        .product-features {
            background: var(--bg-secondary);
            padding: 80px 0;
        }
        .product-features .section-label {
            justify-content: center;
        }
        .product-features .section-title {
            text-align: center;
        }
        .product-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 48px;
        }
        .feature-card {
            background: #fff;
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 24px 28px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
        }
        .feature-card:hover {
            border-color: rgba(0,102,204,0.15);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .feature-card__icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: var(--accent-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 16px;
        }
        .feature-card__text h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }
        .feature-card__text p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ====== LOCATIONS ON PRODUCT PAGE ====== */
        .product-locations {
            padding: 80px 0;
            background: var(--bg-primary);
        }
        .product-locations .section-label {
            justify-content: center;
        }
        .product-locations .section-title {
            text-align: center;
        }
        .product-locations .locations-toggle {
            margin: 24px auto 0;
        }
        .product-locations .locations-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            margin-top: 24px;
        }
        .product-locations .locations-panel.open {
            max-height: 2000px;
        }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 1024px) {
            .product-detail-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .product-image-card {
                position: static;
                max-width: 500px;
                margin: 0 auto;
            }
            .product-features-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .product-banner {
                padding: 120px 0 60px;
            }
            .product-banner__shape,
            .product-banner__shape-2 {
                display: none;
            }
            .product-features-grid {
                grid-template-columns: 1fr;
            }
        }@charset "utf-8";
/* CSS Document */
/* ====== RESET & VARIABLES ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-tertiary: #eef1f5;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;
    --accent: #EF7F1B;
    --accent-dark: #0052a3;
    --accent-light: #e6f0ff;
    --accent-medium: #3388dd;
    --border-subtle: #e5e7eb;
    --border-light: #d1d5db;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--accent);
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 100;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: #fff;
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-right a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.top-bar-right a:hover {
    color: #fff;
}

/* ====== NAVBAR ====== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo img {
    height: 68px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a,
.nav-dropdown > span {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-dropdown:hover > span {
    color: var(--accent);
    background: var(--accent-light);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 8px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-xl);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
    color: var(--accent);
    background: var(--accent-light);
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f0f4f8 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: saturate(0.3);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.7) 40%,
        rgba(255,255,255,0.3) 70%,
        rgba(255,255,255,0.6) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid rgba(0,102,204,0.15);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-tag i {
    font-size: 10px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 480px;
}

.hero-grid-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
    box-shadow: var(--shadow-md);
}

.hero-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-grid-item:hover img {
    transform: scale(1.05);
}

.hero-grid-item:first-child {
    grid-row: 1 / 3;
}

.hero-grid-item .grid-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ====== STATS MARQUEE ====== */
.stats-marquee {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
    overflow: hidden;
    background: var(--bg-primary);
}

.stats-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.stats-track:hover {
    animation-play-state: paused;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 48px;
    white-space: nowrap;
    border-right: 1px solid var(--border-subtle);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.stat-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== SECTION COMMON ====== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* ====== ABOUT BENTO ====== */
.about-bento {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}

.about-main {
    grid-row: 1 / 3;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.about-main p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    border: 1px solid rgba(0,102,204,0.1);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

.about-badge i {
    font-size: 14px;
}

.about-image-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
    min-height: 240px;
    box-shadow: var(--shadow-md);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-card:hover img {
    transform: scale(1.03);
}

.about-exp-card {
    background: var(--accent);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,102,204,0.25);
}

.about-exp-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.about-exp-number span {
    font-size: 36px;
}

.about-exp-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
    font-weight: 500;
}

/* ====== PRODUCTS ====== */
.products-section {
    background: var(--bg-primary);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}

.product-card-body {
    padding: 20px;
}

.product-card-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 14px;
}

.product-card-body h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.product-card-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    margin-top: 12px;
    font-weight: 500;
    transition: gap 0.3s;
}

.product-card-link:hover {
    gap: 10px;
}

/* ====== WHY CHOOSE ====== */
.why-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: saturate(0.3);
}

.why-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg-secondary),
        rgba(247,248,250,0.9),
        var(--bg-secondary)
    );
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.why-feature:hover {
    border-color: rgba(0,102,204,0.2);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.why-feature h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.why-feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.why-image:hover img {
    transform: scale(1.03);
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
    background: var(--bg-tertiary);
}

.testimonials-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-top: 48px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 4px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--border-subtle);
    border-radius: 2px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.testimonial-card {
    min-width: 350px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;max-width: 440px;
    scroll-snap-align: start;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 13px;
}

.testimonial-card blockquote {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-author-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author-info p {
    font-size: 11px;
    color: var(--text-muted);
}

 

/* ====== CLIENTS MARQUEE ====== */
.clients-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.clients-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.clients-track img {
    height: 120px;
    width: auto;
    opacity: 0.35;
    filter: grayscale(1);
    transition: all 0.3s;
}

.clients-track img:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

/* ====== LOCATIONS ====== */
.locations-section {
    background: var(--bg-secondary);
}

.locations-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
    margin-top: 24px;
    box-shadow: var(--shadow-sm);
}

.locations-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

.locations-toggle i {
    transition: transform 0.3s;
}

.locations-toggle.active i {
    transform: rotate(180deg);
}

.locations-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 24px;
}

.locations-panel.open {
    max-height: 2000px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.location-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.location-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
}

.location-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--accent);
}

.location-card ul {
    list-style: none;
}

.location-card ul li {
    margin-bottom: 8px;
}

.location-card ul li a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.location-card ul li a:hover {
    color: var(--accent);
}

.location-card ul li a i {
    font-size: 8px;
    color: var(--text-dim);
}

/* ====== FOOTER ====== */
.footer {
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0,102,204,0.1);
}

.footer h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 13px;
    margin-top: 3px;
}

.footer-contact-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    filter: grayscale(1) brightness(0.6);
    transition: filter 0.3s;
}

.footer-map:hover iframe {
    filter: grayscale(0) brightness(0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    border: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}


/* ====== WHATSAPP MODAL ====== */
.wa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.wa-modal-overlay.show {
    display: flex;
}

.wa-modal {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.wa-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.wa-modal h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.wa-modal p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.wa-modal .form-input {
    margin-bottom: 12px;
}

.wa-modal .form-submit {
    background: #25D366;
}

.wa-modal .form-submit:hover {
    background: #22c55e;
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ====== SCROLL TO TOP ====== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-lg);
}

/* ====== MOBILE NAV ====== */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: none;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: none;
}

.mobile-sub-menu {
    display: none;
    padding-left: 16px;
}

.mobile-sub-menu.open {
    display: block;
}

.mobile-sub-menu a {
    font-size: 14px !important;
    padding: 10px 0 !important;
    color: var(--text-muted) !important;
}

.mobile-nav-contact {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
}

/* ====== REVEAL ANIMATION ====== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-grid {
        max-width: 500px;
        margin: 0 auto;
        height: 360px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-main {
        grid-row: auto;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    .hero-grid {
        height: 280px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        min-width: 300px;
    }
    .section {
        padding: 60px 0;
    }
}
