        :root {
            --orange: #ff7849;
            --black: #0d1117;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-gray: #4b5563;
            --bg-deep: #020617;
            --glow: rgba(255, 120, 73, 0.6);
            --glass: rgba(255, 255, 255, 0.08);
            --orbit-line: rgba(255, 120, 73, 0.15);
            --navy: #1e1b4b;
            --green: #10b981;
            --border: #edf2f7;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
        body { background: var(--white); color: var(--black); overflow-x: hidden; scroll-behavior: smooth; }

        /* ========================================
           NAVBAR - MOBILE FIRST
        ======================================== */
        /* Navbar - Desktop Center Links */
        .navbar {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            padding: 15px 4%;
            background: var(--white);
            z-index: 2000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .logo {
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .logo span { color: var(--orange); }

        .nav-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 700;
            transition: 0.3s;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a:hover { color: var(--orange); }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--orange);
            transition: width 0.3s;
        }

        .nav-links a:hover::after { width: 100%; }

        .nav-actions {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .btn-top {
            background: var(--orange);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 900;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
        }

        .btn-top:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 120, 73, 0.4);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--navy);
            cursor: pointer;
            z-index: 3000;
        }

        .menu-close {
            display: none;
            position: fixed;
            top: 20px;
            right: 5%;
            font-size: 2.5rem;
            color: white;
            cursor: pointer;
            z-index: 3001;
            background: var(--orange);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(255, 120, 73, 0.5);
        }
        /* ========================================
           HERO SECTION - MOBILE FIRST
        ======================================== */
        .global-mission-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 5%;
            background: radial-gradient(circle at center, #111827 0%, var(--bg-deep) 100%);
            overflow: hidden;
        }

        .hero-flex { 
            display: flex; 
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%; 
            max-width: 1100px;
            z-index: 20; 
            gap: 30px; 
        }

        .text-area { 
            width: 100%;
        }
        
        .live-badge {
            display: inline-flex; 
            align-items: center; 
            gap: 8px;
            background: rgba(255, 120, 73, 0.1); 
            border: 1px solid var(--orange);
            padding: 8px 16px; 
            border-radius: 50px; 
            color: var(--orange);
            font-weight: 800; 
            font-size: 10px; 
            letter-spacing: 2px; 
            margin-bottom: 20px;
        }
        
        .pulse-core { 
            width: 8px; 
            height: 8px; 
            background: var(--orange); 
            border-radius: 50%; 
            animation: p-core 1.5s infinite; 
        }
        
        @keyframes p-core { 
            0% { transform: scale(1); opacity: 1; } 
            100% { transform: scale(2.5); opacity: 0; } 
        }

        .text-area h1 { 
            font-size: 2rem; 
            color: var(--white); 
            font-weight: 900; 
            line-height: 1.1; 
            margin-bottom: 20px; 
            text-transform: uppercase; 
        }
        
        .text-area h1 span { 
            color: var(--orange); 
            text-shadow: 0 0 30px var(--glow); 
        }
        
        .text-area p { 
            font-size: 0.95rem; 
            color: #94a3b8; 
            margin: 0 auto 30px;
            line-height: 1.6; 
        }

        .orbit-visual { 
            position: relative; 
            height: 350px; 
            width: 100%;
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
        
        .main-hub {
            width: 100px; 
            height: 100px; 
            background: var(--orange); 
            border-radius: 50%;
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center;
            z-index: 50; 
            box-shadow: 0 0 60px var(--orange); 
            text-align: center;
        }
        
        .main-hub i { font-size: 2rem; margin-bottom: 5px; }
        .main-hub b { font-size: 8px; font-weight: 900; line-height: 1.2; letter-spacing: 1px; color: white; }

        .ring-path { 
            position: absolute; 
            border: 1.5px solid var(--orbit-line); 
            border-radius: 50%; 
            pointer-events: none; 
        }
        
        .r1 { width: 250px; height: 250px; border-style: dashed; animation: rot 40s linear infinite; }
        .r2 { width: 350px; height: 350px; opacity: 0.5; }

        @keyframes rot { 
            from { transform: rotate(0deg); } 
            to { transform: rotate(360deg); } 
        }

        .node-glass {
            position: absolute; 
            width: 70px; 
            height: 70px; 
            background: var(--glass);
            border: 1px solid rgba(255,255,255,0.12); 
            backdrop-filter: blur(15px);
            border-radius: 15px; 
            display: flex; 
            flex-direction: column; 
            align-items: center;
            justify-content: center; 
            text-decoration: none; 
            color: white; 
            transition: 0.4s;
            z-index: 60;
        }
        
        .node-glass i { font-size: 1.5rem; color: var(--orange); margin-bottom: 5px; }
        .node-glass span { font-size: 7px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }

        .node-glass:hover { 
            background: var(--orange); 
            transform: scale(1.1); 
            box-shadow: 0 0 30px var(--orange); 
        }
        
        .node-glass:hover i, 
        .node-glass:hover span { color: white; }

        /* Mobile positioning for nodes */
        .wa-local { top: 5%; left: 10%; }
        .zoom-intl { top: 5%; right: 10%; }
        .g-meet { bottom: 5%; left: 10%; }
        .tg-intl { bottom: 5%; right: 10%; }
        .calendly-intl { display: none; } /* Hidden on mobile */
        .call-direct { display: none; } /* Hidden on mobile */

        .hero-btn {
            background: var(--orange); 
            color: white; 
            padding: 14px 28px; 
            border-radius: 50px; 
            text-decoration: none; 
            font-weight: 900; 
            display: inline-flex; 
            align-items: center; 
            gap: 10px; 
            box-shadow: 0 10px 30px var(--glow); 
            font-size: 0.85rem;
            transition: 0.3s;
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--glow);
        }

        /* ========================================
           SECTION 1: CONTACT FORM - MOBILE FIRST
        ======================================== */
        .form-section {
            padding: 60px 5%;
            background: var(--white);
        }

        .contact-wrapper {
            display: flex;
            flex-direction: column;
            max-width: 1300px;
            margin: 0 auto;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .contact-info {
            background: var(--navy);
            padding: 40px 25px;
            color: white;
            display: flex;
            flex-direction: column;
        }
        
        .contact-info h2 { 
            font-size: 2rem; 
            font-weight: 950; 
            line-height: 1.1; 
            margin-bottom: 20px; 
        }
        
        .contact-info h2 span { color: var(--orange); }

        .online-status {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(16, 185, 129, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 30px;
            border: 1px solid rgba(16, 185, 129, 0.3);
            align-self: flex-start;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            background: var(--green);
            border-radius: 50%;
            position: relative;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }
        
        .online-status span { 
            color: var(--green); 
            font-weight: 700; 
            font-size: 0.8rem; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }

        .info-item { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
            margin-bottom: 25px; 
        }
        
        .info-icon { 
            font-size: 1.3rem; 
            color: var(--orange); 
            width: 35px; 
        }
        
        .info-text h4 { 
            margin: 0; 
            color: var(--orange); 
            text-transform: uppercase; 
            font-size: 0.75rem; 
            letter-spacing: 1px; 
        }
        
        .info-text p { 
            margin: 5px 0 0; 
            font-size: 0.95rem; 
            opacity: 0.9; 
        }

        .contact-form-area { 
            padding: 40px 25px; 
            background: white; 
        }
        
        /* ⭐ CRITICAL FIX: MOBILE-FIRST FORM GRID ⭐ */
        .form-grid { 
            display: grid; 
            grid-template-columns: 1fr; /* Mobile: Single column */
            gap: 25px; /* Simplified gap */
        }
        
        .full-width { 
            grid-column: span 1; /* Single column on mobile */
        }

        .input-group { 
            display: flex; 
            flex-direction: column; 
            gap: 10px; 
        }
        
        .input-group label { 
            font-weight: 800; 
            font-size: 0.85rem; 
            color: var(--navy); 
            text-transform: uppercase; 
            letter-spacing: 0.5px;
        }
        
        .input-group input, 
        .input-group select, 
        .input-group textarea {
            padding: 16px 20px; 
            border: 2px solid #f1f5f9; 
            border-radius: 12px;
            font-size: 1rem; 
            background: #fdfdfd; 
            outline: none; 
            transition: 0.3s;
            font-family: 'Outfit', sans-serif;
            -webkit-appearance: none; /* Better mobile rendering */
            appearance: none;
        }
        
        .input-group input:focus, 
        .input-group select:focus, 
        .input-group textarea:focus {
            border-color: var(--orange); 
            box-shadow: 0 5px 15px rgba(255,120,73,0.1); 
            background: white;
        }

        .input-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--orange); 
            color: white; 
            padding: 18px; 
            width: 100%;
            border: none; 
            border-radius: 15px; 
            font-weight: 950; 
            font-size: 1rem;
            text-transform: uppercase; 
            letter-spacing: 2px; 
            cursor: pointer; 
            transition: 0.4s;
            margin-top: 10px;
        }
        
        .submit-btn:hover { 
            background: var(--navy); 
            transform: translateY(-3px); 
            box-shadow: 0 10px 25px rgba(255, 120, 73, 0.3);
        }

        /* ========================================
           WHITE SECTIONS COMMON STYLES
        ======================================== */
        .white-section {
            padding: 60px 5%;
            background: var(--white);
        }

        .light-section {
            padding: 60px 5%;
            background: var(--light-gray);
        }

        .section-tag {
            color: var(--orange);
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
            font-size: 0.75rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--navy);
            line-height: 1.2;
        }

        .section-title span {
            color: var(--orange);
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 40px;
        }

        /* ========================================
           STATS SECTION
        ======================================== */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .stat-card {
            background: linear-gradient(135deg, var(--navy) 0%, #2d2664 100%);
            padding: 30px 25px;
            border-radius: 20px;
            text-align: center;
            color: white;
            box-shadow: 0 10px 30px rgba(30, 27, 75, 0.2);
            transition: 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 27, 75, 0.3);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--orange);
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========================================
           LOCATIONS SECTION
        ======================================== */
        .locations-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .location-card {
            background: white;
            padding: 30px 25px;
            border-radius: 20px;
            border: 2px solid var(--border);
            transition: 0.3s;
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border-color: var(--orange);
        }

        .location-flag {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .location-card h3 {
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .location-card p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .location-tag {
            display: inline-block;
            background: rgba(255, 120, 73, 0.1);
            color: var(--orange);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========================================
           CHANNELS SECTION
        ======================================== */
        .channels-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .channel-card {
            background: white;
            padding: 25px 20px;
            border-radius: 20px;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: 0.3s;
            text-decoration: none;
        }

        .channel-card:hover {
            border-color: var(--orange);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .channel-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--orange), #ff6b3d);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
        }

        .channel-info h4 {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .channel-info p {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* ========================================
           SECTION 13: FAQ
        ======================================== */
        .faq-container-main {
            padding: 100px 8%;
            background: #ffffff;
        }

        .faq-header-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header-center .section-tag {
            color: #ff7849;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .faq-header-center h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: #1e1b4b;
            line-height: 1.1;
        }

        .faq-header-center h2 span {
            color: #ff7849;
        }

        .faq-split-body {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 60px;
        }

        .faq-visual, .faq-list-side {
            flex: 1;
            min-width: 320px;
        }

        .faq-visual img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }

        .faq-item {
            background: #f8fafc;
            border-radius: 20px;
            margin-bottom: 15px;
            border: 1px solid #edf2f7;
            transition: 0.3s;
        }

        .faq-question {
            padding: 22px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #1e1b4b;
        }

        .faq-question i {
            color: #ff7849;
            transition: 0.3s;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: 0.3s ease-in-out;
            color: #4b5563;
            line-height: 1.6;
        }

        .faq-item.active {
            border-color: #ff7849;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 250px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ========================================
           WORKING HOURS
        ======================================== */
        .hours-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hours-card {
            background: white;
            padding: 30px 25px;
            border-radius: 20px;
            border: 2px solid var(--border);
        }

        .hours-card h3 {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hours-card h3 i {
            color: var(--orange);
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-row .day {
            font-weight: 700;
            color: var(--navy);
            font-size: 0.9rem;
        }

        .hours-row .time {
            color: var(--orange);
            font-weight: 800;
            font-size: 0.9rem;
        }

        /* ========================================
           SECTION 8: TESTIMONIALS
        ======================================== */
        .reviews-section {
            padding: 100px 0;
            background: #ffffff;
            text-align: center;
        }

        .header-box { margin-bottom: 60px; padding: 0 5%; }
        .header-box h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 900; letter-spacing: -2px; color: var(--navy); }
        .header-box span { color: var(--orange); }

        .marquee-container {
            display: flex;
            width: 100%;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .marquee-track {
            display: flex;
            gap: 30px;
            padding: 20px 0;
            animation: infiniteScroll 35s linear infinite;
            width: max-content;
        }

        .review-card {
            width: 400px;
            flex-shrink: 0;
            background: #ffffff;
            border: 1.5px solid #f1f5f9;
            padding: 40px;
            border-radius: 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.02);
            text-align: left;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .review-card:hover {
            transform: translateY(-12px);
            border-color: var(--orange);
            box-shadow: 0 25px 50px rgba(255, 120, 73, 0.12);
        }

        .u-profile { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
        
        .u-img-box {
            width: 60px; height: 60px; 
            border-radius: 50%; 
            overflow: hidden;
            border: 3px solid var(--orange);
            background: #f1f5f9;
        }
        .u-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .u-name h5 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
        .u-name .stars { color: #fbbf24; font-size: 0.85rem; margin-top: 4px; }

        .u-comment { font-size: 1.05rem; line-height: 1.7; color: #475569; font-weight: 500; position: relative; }
        .u-comment i { color: #e2e8f0; font-size: 2rem; position: absolute; top: -10px; left: -15px; z-index: -1; }

        @keyframes infiniteScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .marquee-container:hover .marquee-track { animation-play-state: paused; }

        /* ========================================
           FOOTER
        ======================================== */
        .main-footer {
            background: var(--navy);
            color: white;
            padding: 60px 5% 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 35px;
            margin-bottom: 40px;
        }

        .footer-brand h2 {
            font-size: 1.8rem;
            font-weight: 900;
            margin: 0 0 15px 0;
            letter-spacing: -1px;
        }

        .footer-brand h2 span {
            color: var(--orange);
        }

        .footer-brand p {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--orange);
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 35px;
            height: 2px;
            background: var(--orange);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-column ul li a:hover {
            color: var(--orange);
        }

        .newsletter-container {
            background: rgba(255, 255, 255, 0.03);
            padding: 5px;
            border-radius: 50px;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 15px;
        }

        .newsletter-container input {
            background: transparent;
            border: none;
            padding: 10px 15px;
            color: white;
            flex: 1;
            outline: none;
            font-size: 0.9rem;
        }

        .newsletter-container input::placeholder {
            color: #64748b;
        }

        .newsletter-container button {
            background: var(--orange);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            color: white;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
            font-size: 0.85rem;
        }

        .newsletter-container button:hover {
            background: #ff8b66;
            box-shadow: 0 0 15px rgba(255, 120, 73, 0.4);
        }

        .footer-bottom {
            padding: 20px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            text-align: center;
            gap: 10px;
            font-size: 0.85rem;
            color: #64748b;
        }

        .whatsapp-float {
            position: fixed;
            width: 55px;
            height: 55px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* ========================================
           TABLET RESPONSIVE (768px+)
        ======================================== */
        @media (min-width: 768px) {
            .logo {
                font-size: 1.4rem;
            }

            .text-area h1 {
                font-size: 2.8rem;
            }

            .text-area p {
                font-size: 1rem;
            }

            .orbit-visual {
                height: 450px;
            }

            .main-hub {
                width: 130px;
                height: 130px;
            }

            .main-hub i {
                font-size: 2.3rem;
            }

            .r1 { width: 300px; height: 300px; }
            .r2 { width: 450px; height: 450px; }

            .node-glass {
                width: 85px;
                height: 85px;
            }

            .node-glass i {
                font-size: 1.7rem;
            }

            .node-glass span {
                font-size: 8px;
            }

            .form-section {
                padding: 80px 6%;
            }

            .contact-wrapper {
                border-radius: 35px;
            }

            .contact-info,
            .contact-form-area {
                padding: 60px 40px;
            }

            .contact-info h2 {
                font-size: 2.8rem;
            }

            /* ⭐ TABLET: 2 COLUMNS FOR FORM ⭐ */
            .form-grid {
                grid-template-columns: 1fr 1fr;
                column-gap: 30px;
                row-gap: 30px;
            }

            .full-width {
                grid-column: span 2;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .channels-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hours-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 2.5rem;
            }

            .white-section,
            .light-section {
                padding: 80px 6%;
            }
        }
        @media (max-width: 992px) {
                        /* Navbar Mobile */
            .navbar {
                grid-template-columns: 1fr 1fr;
                border-radius: 20px;
                padding: 15px 5%;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 2%;
                right: 2%;
                width: 96%;
                background: white;
                padding: 20px;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
                grid-column: 2;
                text-align: right;
            }

            .nav-actions {
                display: none;
            }

        }
        /* ========================================
           DESKTOP RESPONSIVE (1024px+)
        ======================================== */
        @media (min-width: 1024px) {
            .navbar {
                display: grid;
                grid-template-columns: 1fr 2fr 1fr;
                padding: 15px 4%;
            }

            .nav-links {
                position: static;
                width: auto;
                height: auto;
                background: transparent;
                flex-direction: row;
                padding: 0;
                gap: 30px;
                justify-content: center;
                box-shadow: none;
            }

            .nav-links a {
                color: var(--navy);
                font-size: 0.95rem;
                padding: 0;
                position: relative;
            }

            .nav-links a:hover {
                background: transparent;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: -5px;
                left: 0;
                background: var(--orange);
                transition: width 0.3s;
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            .nav-actions {
                display: flex;
                justify-content: flex-end;
            }

            .btn-top {
                background: var(--orange);
                color: white;
                border: none;
                padding: 12px 28px;
                border-radius: 50px;
                font-weight: 900;
                cursor: pointer;
                transition: 0.3s;
                font-size: 0.9rem;
            }

            .btn-top:hover {
                transform: scale(1.05);
                box-shadow: 0 5px 15px rgba(255, 120, 73, 0.4);
            }

            .btn-top a {
                text-decoration: none;
                color: white;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .menu-toggle {
                display: none;
            }

            .hero-flex {
                flex-direction: row;
                text-align: left;
                gap: 40px;
            }

            .text-area {
                flex: 0.8;
            }

            .text-area h1 {
                font-size: 3.2rem;
            }

            .text-area p {
                margin: 0 0 35px;
                max-width: 450px;
            }

            .orbit-visual {
                flex: 1.2;
                height: 500px;
            }

            .main-hub {
                width: 140px;
                height: 140px;
            }

            .main-hub i {
                font-size: 2.5rem;
            }

            .r1 { width: 320px; height: 320px; }
            .r2 { width: 480px; height: 480px; }

            .node-glass {
                width: 90px;
                height: 90px;
            }

            .node-glass i {
                font-size: 1.8rem;
            }

            .node-glass span {
                font-size: 8px;
            }

            /* Desktop positioning for all nodes */
            .wa-local { top: 10%; left: 15%; }
            .zoom-intl { top: 5%; right: 15%; }
            .g-meet { bottom: 10%; left: 15%; }
            .tg-intl { bottom: 10%; right: 15%; }
            .calendly-intl { display: flex; top: 40%; right: -5%; }
            .call-direct { display: flex; top: 40%; left: -5%; }

            .form-section {
                padding: 100px 8%;
            }

            .contact-wrapper {
                flex-direction: row;
                border-radius: 40px;
            }

            .contact-info {
                flex: 1;
                padding: 80px 60px;
            }

            .contact-info h2 {
                font-size: 3.5rem;
            }

            .contact-form-area {
                flex: 1.6;
                padding: 80px;
            }

            .form-grid {
                column-gap: 50px;
                row-gap: 40px;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .locations-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .channels-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }

            .section-title {
                font-size: 3rem;
            }

            .white-section,
            .light-section {
                padding: 100px 8%;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
            }
        }
