:root {
            --teal: #01424F;
            --teal-dark: #012830;
            --teal-mid: #02596C;
            --gold: #A67C52;
            --gold-light: #D4AF37;
            --gold-pale: #e8c97a;
            --off-white: #F4F4F4;
            --white: #ffffff;
            --text-dark: #0d1f25;
            --text-mid: #4a6570;
            --text-light: #8aa4ad;
            --border: rgba(166, 124, 82, 0.2);

            /* Design System Tokens */
            --radius-sm: 4px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 999px;

            --shadow-sm: 0 4px 12px rgba(1, 42, 79, 0.04);
            --shadow-md: 0 12px 32px rgba(1, 42, 79, 0.08);
            --shadow-lg: 0 20px 48px rgba(1, 42, 79, 0.12);
            --shadow-xl: 0 28px 64px rgba(0, 0, 0, 0.18);

            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 48px;
            --space-2xl: 80px;
            --space-3xl: 100px;

            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* ══════════════════════════════
   LOADING SCREEN
══════════════════════════════ */
        .loader-overlay {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: linear-gradient(160deg, #07161c 0%, #0c2a32 50%, #071318 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .loader-overlay.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
            animation: loader-fade-in 0.6s ease both;
        }

        @keyframes loader-fade-in {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .loader-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 28px;
            border-radius: 28px;
            overflow: hidden;
            border: 2px solid rgba(212, 175, 55, 0.25);
            box-shadow: 0 0 60px rgba(212, 175, 55, 0.15), 0 20px 40px rgba(0,0,0,0.3);
            animation: loader-logo-pulse 2s ease-in-out infinite;
        }

        @keyframes loader-logo-pulse {
            0%, 100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.1), 0 20px 40px rgba(0,0,0,0.3); }
            50% { box-shadow: 0 0 80px rgba(212, 175, 55, 0.25), 0 20px 40px rgba(0,0,0,0.3); }
        }

        .loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .loader-bar {
            width: 180px;
            height: 3px;
            margin: 0 auto 18px;
            background: rgba(255,255,255,0.06);
            border-radius: 4px;
            overflow: hidden;
        }

        .loader-bar-fill {
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 4px;
            animation: loader-fill 1.8s ease-in-out forwards;
        }

        @keyframes loader-fill {
            0% { width: 0; }
            70% { width: 85%; }
            100% { width: 100%; }
        }

        .loader-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 6px;
            color: rgba(212, 175, 55, 0.5);
            text-transform: uppercase;
        }

        /* ══════════════════════════════
   SCROLL PROGRESS
══════════════════════════════ */
        .scroll-progress {
            position: fixed;
            top: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
            z-index: 1001;
            transition: width 0.05s linear;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
        }

        /* ══════════════════════════════
   SKIP NAVIGATION
══════════════════════════════ */
        .skip-nav {
            position: fixed;
            top: -100%;
            right: 16px;
            z-index: 10001;
            padding: 12px 24px;
            background: var(--gold);
            color: var(--teal-dark);
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 14px;
            border-radius: 0 0 8px 8px;
            text-decoration: none;
            transition: top 0.3s ease;
        }

        .skip-nav:focus {
            top: 0;
        }

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

        html {
            scroll-behavior: smooth
        }

body {
            font-family: 'Cairo', sans-serif;
            background: var(--off-white);
            color: var(--text-dark);
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 22%),
                radial-gradient(circle at bottom left, rgba(1, 66, 79, 0.06), transparent 20%);
        }

        /* ── SCROLLBAR ── */
        ::-webkit-scrollbar {
            width: 4px
        }

        ::-webkit-scrollbar-track {
            background: var(--teal-dark)
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold)
        }

        /* ── SELECTION ── */
        ::selection {
            background: rgba(166, 124, 82, 0.3);
            color: var(--teal-dark);
        }

        /* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(2, 24, 30, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.16);
            padding: 0 48px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all .3s ease;
        }

nav.scrolled {
            background: rgba(0, 18, 22, 0.96);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
            height: 64px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none
        }

        .nav-logo-mark {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(166, 124, 82, 0.08));
            border: 1px solid rgba(212, 175, 55, 0.28);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
        }

        .nav-logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transform: scale(1.08);
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            gap: 1px
        }

        .nav-brand-ar {
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #f1dfb4;
            line-height: 1;
        }

        .nav-brand-en {
            font-family: 'Montserrat', sans-serif;
            font-size: 8px;
            font-weight: 500;
            color: rgba(244, 244, 244, 0.5);
            letter-spacing: 2px;
            text-transform: uppercase
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none
        }

        .nav-links a {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: rgba(244, 244, 244, 0.75);
            text-decoration: none;
            transition: color .25s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width .3s ease;
        }

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

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

        .nav-cta {
            background: var(--gold);
            color: var(--teal-dark);
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            padding: 10px 24px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            transition: all .25s;
            letter-spacing: .5px;
        }

        .nav-cta:hover {
            background: var(--gold-light);
            transform: translateY(-1px)
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--gold);
            transition: all .3s ease;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(1, 28, 34, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 24px;
            z-index: 999;
            border-bottom: 1px solid rgba(166, 124, 82, 0.2);
            transform: translateY(-10px);
            opacity: 0;
            transition: all .3s ease;
        }

        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu ul a {
            display: block;
            padding: 12px 16px;
            color: rgba(244, 244, 244, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            border-radius: 6px;
            transition: all .25s;
        }

        .mobile-menu ul a:hover {
            background: rgba(166, 124, 82, 0.1);
            color: var(--gold);
        }


        /* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
            min-height: 100vh;
            background: var(--teal-dark);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 72px;
        }

/* Background image with teal overlay */
        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #07161c 0%, #0b2d35 48%, #0b1b22 100%);
            z-index: 0;
        }

        .hero-photo-bg {
            position: absolute;
            inset: 0;
            background: url('../images/sections/hero-bg.png') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
            filter: grayscale(0.3);
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 54%);
            opacity: .9;
        }


        /* Animated particles */
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: float-particle linear infinite;
        }

        @keyframes float-particle {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }

        /* Geometric deco */
        .hero-geo {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .hero-geo svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: .06
        }

.hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 48px;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 430px);
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            max-width: 620px;
            animation: hero-entrance 1s ease-out 0.3s both;
        }

        @keyframes hero-entrance {
            from {
                opacity: 0;
                transform: translateY(28px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-visual {
            animation: hero-entrance 1s ease-out 0.6s both;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(166, 124, 82, 0.12);
            border: 1px solid rgba(166, 124, 82, 0.35);
            border-radius: 40px;
            padding: 6px 16px;
            margin-bottom: 24px;
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .6;
                transform: scale(.85)
            }
        }

.hero-badge span {
            font-size: 12px;
            color: var(--gold);
            letter-spacing: 2px;
            font-weight: 600
        }

        .hero-logo-chip {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            margin-bottom: 20px;
            border-radius: 999px;
            border: 1px solid rgba(244, 244, 244, 0.12);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            color: rgba(244, 244, 244, 0.72);
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.4px;
            text-transform: uppercase;
        }

        .hero-h1 {
            font-family: 'Cairo', sans-serif;
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 900;
            color: var(--off-white);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-h1 em {
            font-style: normal;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-pale), var(--gold-light), var(--gold));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer-text 4s ease-in-out infinite;
            position: relative;
        }

        @keyframes shimmer-text {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 200% center; }
        }

        .hero-h1 em::after {
            content: '';
            position: absolute;
            bottom: -3px;
            right: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
            animation: shimmer-line 3s ease-in-out infinite;
        }

        @keyframes shimmer-line {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

.hero-p {
            font-size: 17px;
            font-weight: 300;
            color: rgba(244, 244, 244, 0.74);
            line-height: 1.9;
            margin-bottom: 28px;
            max-width: 540px;
        }

        .hero-signature {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .hero-signature-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(1, 66, 79, 0.24);
            border: 1px solid rgba(212, 175, 55, 0.18);
            color: rgba(244, 244, 244, 0.76);
            font-size: 12px;
            font-weight: 500;
        }

        .hero-signature-item::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap
        }

        .btn-primary {
            background: var(--gold);
            color: var(--teal-dark);
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            padding: 14px 32px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            transition: all .25s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(166, 124, 82, 0.4)
        }

        .btn-ghost {
            background: transparent;
            color: var(--off-white);
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 400;
            padding: 14px 32px;
            border: 1px solid rgba(244, 244, 244, 0.25);
            border-radius: 3px;
            cursor: pointer;
            transition: all .25s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--gold)
        }

/* HERO VISUAL — IMAGE FRAME */
        .hero-visual {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-image-frame {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.2);
            box-shadow: 0 32px 64px rgba(0,0,0,0.3);
        }

        .hero-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }

        .hero-image-frame:hover .hero-main-image {
            transform: scale(1.03);
        }

        .hero-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(1,26,32,0.6) 100%);
            pointer-events: none;
        }

        /* HERO TRUST BAR */
        .hero-trust-bar {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 40px;
            padding: 20px 28px;
            border-radius: 16px;
            background: rgba(1,40,50,0.5);
            border: 1px solid rgba(166,124,82,0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .hero-trust-item {
            flex: 1;
            text-align: center;
        }

        .hero-trust-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--gold);
            display: block;
            line-height: 1;
        }

        .hero-trust-lbl {
            font-family: 'Cairo', sans-serif;
            font-size: 11px;
            font-weight: 400;
            color: rgba(244,244,244,0.5);
            margin-top: 6px;
            display: block;
        }

        .hero-trust-divider {
            width: 1px;
            height: 36px;
            background: rgba(166,124,82,0.2);
        }

        .stat-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            display: block;
            line-height: 1;
        }

        .stat-lbl {
            font-family: 'Cairo', sans-serif;
            font-size: 12px;
            font-weight: 300;
            color: rgba(244, 244, 244, 0.5);
            margin-top: 6px;
            display: block;
        }

        /* ══════════════════════════════
   PARTNERS STRIP
══════════════════════════════ */
.partners {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
            border-top: 1px solid rgba(1, 42, 79, 0.06);
            border-bottom: 1px solid rgba(1, 42, 79, 0.06);
            padding: 24px 48px;
            display: flex;
            align-items: center;
            gap: 40px;
            overflow: hidden;
        }

        .partners-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: 2px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .partners-track {
            overflow: hidden;
            flex: 1;
            mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        }

        .partners-logos {
            display: flex;
            gap: 56px;
            align-items: center;
            animation: marquee 20s linear infinite;
            width: max-content;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

.partner-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: rgba(1, 42, 79, 0.34);
            letter-spacing: 2px;
            text-transform: uppercase;
            white-space: nowrap;
            transition: color .3s;
        }

        .partner-name:hover {
            color: var(--gold);
        }

        /* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
        .section-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 3px;
            border: 1px solid rgba(166, 124, 82, 0.18);
            background: rgba(255, 255, 255, 0.58);
            padding: 8px 14px;
            border-radius: 999px;
            margin-bottom: 18px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .section-h2 {
            font-family: 'Cairo', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--teal);
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -.02em;
        }

        .section-sub {
            font-size: 16px;
            font-weight: 300;
            color: var(--text-mid);
            max-width: 560px;
            line-height: 1.9;
            margin-bottom: 56px;
        }

        .about .section-tag,
        .testimonials .section-tag,
        .contact-section .section-tag {
            background: rgba(255, 255, 255, 0.06);
            box-shadow: none;
        }

        /* ══════════════════════════════
   SERVICES
══════════════════════════════ */
        .services {
            padding: 100px 48px;
            background: var(--off-white);
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .services-shell {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
        }

        .services-intro-bar {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: -26px 0 44px;
        }

        .services-intro-bar span {
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(166, 124, 82, 0.18);
            background: rgba(255, 255, 255, 0.72);
            color: var(--teal);
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(1, 42, 79, 0.06);
        }

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

        .svc-card {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
                var(--white);
            border: 1px solid rgba(1, 42, 79, 0.08);
            border-radius: 22px;
            padding: 34px 30px;
            position: relative;
            overflow: hidden;
            transition: all .35s ease;
            cursor: pointer;
            box-shadow: 0 18px 36px rgba(1, 42, 79, 0.05);
        }

        .svc-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .35s ease;
        }

        .svc-card::after {
            content: '';
            position: absolute;
            top: -56px;
            left: -28px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 1px solid rgba(166, 124, 82, 0.12);
            opacity: .85;
            pointer-events: none;
        }

        .svc-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 54px rgba(1, 42, 79, 0.12), 0 0 0 1px rgba(166, 124, 82, 0.15);
            border-color: rgba(166, 124, 82, 0.2);
        }

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

        .svc-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: rgba(166, 124, 82, 0.4);
            letter-spacing: 2px;
            margin-bottom: 18px;
            display: block;
        }

        .svc-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(1, 42, 79, 0.06), rgba(166, 124, 82, 0.08));
            border: 1px solid rgba(166, 124, 82, 0.12);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: background .3s;
        }

        .svc-card:hover .svc-icon {
            background: rgba(166, 124, 82, 0.1)
        }

        .svc-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--teal);
            transition: stroke .3s
        }

        .svc-card:hover .svc-icon svg {
            stroke: var(--gold)
        }

        .svc-h3 {
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .svc-p {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.85;
            margin-bottom: 20px
        }

        .svc-count {
            font-size: 12px;
            font-weight: 600;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .svc-count::before {
            content: '';
            width: 16px;
            height: 1px;
            background: var(--gold)
        }

        /* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
        .why-us {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.85));
            padding: 100px 48px;
            position: relative;
        }

        .why-us::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 14% 18%, rgba(166, 124, 82, 0.08), transparent 22%),
                radial-gradient(circle at 88% 82%, rgba(1, 66, 79, 0.06), transparent 20%);
            pointer-events: none;
        }

        .why-us-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(1, 66, 79, 0.06);
            border-radius: 22px;
            padding: 36px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all .35s ease;
            box-shadow: 0 18px 44px rgba(1, 42, 79, 0.05);
        }

        .why-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transition: transform .35s ease;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(1, 66, 79, 0.1);
            border-color: var(--border);
        }

        .why-card:hover::after {
            transform: scaleX(1);
        }

        .why-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(1, 66, 79, 0.08), rgba(166, 124, 82, 0.08));
            border: 1px solid rgba(166, 124, 82, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s;
        }

        .why-card:hover .why-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-color: transparent;
        }

        .why-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            transition: stroke .3s;
        }

        .why-card:hover .why-icon svg {
            stroke: var(--teal-dark);
        }

        .why-title {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 10px;
        }

        .why-desc {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.8;
        }

        /* ══════════════════════════════
   ABOUT
══════════════════════════════ */
        .about {
            background: linear-gradient(180deg, #0a2229, #0d3138);
            padding: 100px 48px;
            position: relative;
            overflow: hidden;
        }

        .about-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 24%, rgba(212, 175, 55, 0.12), transparent 24%),
                radial-gradient(circle at 82% 68%, rgba(212, 175, 55, 0.1), transparent 18%),
                linear-gradient(135deg, rgba(1, 28, 34, 0.94) 0%, rgba(1, 66, 79, 0.78) 100%);
            z-index: 0;
        }

        .about-bg::after {
            content: '';
            position: absolute;
            left: 70%;
            top: 54%;
            width: min(38vw, 460px);
            aspect-ratio: 1;
            transform: translate(-50%, -50%);
            background: url('../aurox-logo.jpeg') center/contain no-repeat;
            opacity: .06;
            filter: grayscale(1) brightness(1.75);
        }

        .about-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-copy {
            position: relative;
        }

        .about-quote {
            font-family: 'Cairo', sans-serif;
            font-size: 22px;
            font-weight: 300;
            color: var(--off-white);
            line-height: 1.8;
            position: relative;
            padding-right: 24px;
            border-right: 3px solid var(--gold);
            margin-bottom: 28px;
        }

        .about-quote strong {
            color: var(--gold);
            font-weight: 700
        }

        .about-checks {
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            font-weight: 300;
            color: rgba(244, 244, 244, 0.75);
            line-height: 1.7;
        }

        .check-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(166, 124, 82, 0.15);
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .check-dot::after {
            content: '';
            width: 7px;
            height: 7px;
            background: var(--gold);
            border-radius: 50%
        }

        .about-visual {
            position: relative;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(166, 124, 82, 0.2);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
        }

        .about-main-image {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }

        .about-image-wrapper:hover .about-main-image {
            transform: scale(1.03);
        }

        .about-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px 28px;
            background: linear-gradient(180deg, transparent, rgba(1,26,32,0.85));
        }

        .about-visual-quote {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: var(--off-white);
            line-height: 1.8;
        }

        .about-visual-quote strong {
            color: var(--gold-light);
            font-weight: 700;
            font-style: normal
        }

        .about-divider {
            width: 48px;
            height: 1px;
            background: var(--gold);
            margin-bottom: 12px
        }

        /* MILESTONES */
        .milestones {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.92));
            padding: 0;
        }

        .milestones-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .milestone {
            padding: 48px 36px;
            text-align: center;
            border-left: 1px solid rgba(1, 42, 79, 0.06);
            position: relative;
            overflow: hidden;
            transition: background .3s;
            background: rgba(255, 255, 255, 0.36);
        }

        .milestone:first-child {
            border-left: none
        }

        .milestone:hover {
            background: rgba(1, 42, 79, 0.02)
        }

        .milestone-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--teal);
            line-height: 1;
            display: block;
            margin-bottom: 8px;
        }

        .milestone-num sup {
            font-size: 24px;
            color: var(--gold);
            vertical-align: super
        }

        .milestone-lbl {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-mid)
        }

        /* ══════════════════════════════
   PROGRAMS PREVIEW
══════════════════════════════ */
        .programs {
            padding: 100px 48px;
            background: var(--off-white);
            max-width: 1200px;
            margin: 0 auto;
        }

        .programs-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
        }

        .prog-tabs {
            display: flex;
            gap: 0;
            border-bottom: 1px solid rgba(1, 42, 79, 0.1);
            margin-bottom: 40px;
            overflow-x: auto;
        }

        .prog-tab {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-mid);
            padding: 12px 24px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: all .25s;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            white-space: nowrap;
        }

        .prog-tab.active {
            color: var(--teal);
            border-bottom-color: var(--gold)
        }

.prog-tab:hover {
    color: var(--teal)
}

.prog-tab:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    animation: fade-tab 0.4s ease;
}

@keyframes fade-tab {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

        .course-card {
            background: var(--white);
            border: 1px solid rgba(1, 42, 79, 0.06);
            border-radius: 8px;
            overflow: hidden;
            transition: all .3s;
        }

        .course-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(1, 42, 79, 0.1);
            border-color: rgba(166, 124, 82, 0.2);
        }

        .course-card-top {
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }

        .course-card-body {
            padding: 20px
        }

        .course-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: rgba(166, 124, 82, 0.5);
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .course-title {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--teal);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .course-meta {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 12px
        }

        .meta-pill {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
        }

        .meta-pill.duration {
            background: rgba(1, 42, 79, 0.07);
            color: var(--teal)
        }

        .meta-pill.level {
            background: rgba(166, 124, 82, 0.1);
            color: var(--gold)
        }

        .course-desc {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.7
        }

        /* ══════════════════════════════
   TEAM
══════════════════════════════ */
        .team {
            background: var(--off-white);
            padding: 100px 48px;
        }

        .team-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .team-card {
            background: var(--white);
            border: 1px solid rgba(1, 66, 79, 0.06);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: all .35s ease;
            position: relative;
            overflow: hidden;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            opacity: 0;
            transition: opacity .3s;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(1, 66, 79, 0.1);
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 18px;
            background: linear-gradient(135deg, var(--teal), var(--teal-mid));
            border: 3px solid rgba(166, 124, 82, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cairo', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--gold);
            transition: border-color .3s;
        }

        .team-card:hover .team-avatar {
            border-color: var(--gold);
        }

        .team-avatar-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 18px;
            overflow: hidden;
            border: 3px solid rgba(166, 124, 82, 0.3);
            transition: border-color .3s, transform .3s;
            position: relative;
        }

        .team-card:hover .team-avatar-img {
            border-color: var(--gold);
            transform: scale(1.05);
        }

        .team-avatar-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform .5s ease;
        }

        .team-card:hover .team-avatar-img img {
            transform: scale(1.1);
        }

        .team-name {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 4px;
        }

        .team-role {
            font-size: 12px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .team-bio {
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 16px;
        }

        .team-socials {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .team-social {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(1, 66, 79, 0.06);
            border: 1px solid rgba(1, 66, 79, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all .25s;
        }

        .team-social:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .team-social svg {
            width: 14px;
            height: 14px;
            stroke: var(--text-mid);
            transition: stroke .25s;
        }

        .team-social:hover svg {
            stroke: var(--teal-dark);
        }

        /* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
        .testimonials {
            background: var(--teal-dark);
            padding: 100px 48px;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(166, 124, 82, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .testimonials-inner {
            max-width: 1200px;
            margin: 0 auto
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px
        }

        .testi-card {
            background: rgba(1, 50, 60, 0.6);
            border: 1px solid rgba(166, 124, 82, 0.12);
            border-radius: 22px;
            padding: 28px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all .3s;
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
        }

        .testi-card:hover {
            border-color: rgba(166, 124, 82, 0.3);
            transform: translateY(-4px);
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px
        }

        .star {
            width: 14px;
            height: 14px;
            background: var(--gold);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .testi-text {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 300;
            color: rgba(244, 244, 244, 0.8);
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .testi-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(166, 124, 82, 0.15);
            border: 1px solid rgba(166, 124, 82, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--gold);
        }

        .testi-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--off-white)
        }

        .testi-role {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-light)
        }

        /* ══════════════════════════════
   FAQ
══════════════════════════════ */
        .faq-section {
            background: linear-gradient(180deg, rgba(244, 244, 244, 0.86), rgba(255, 255, 255, 0.95));
            padding: 100px 48px;
        }

        .faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-list {
            margin-top: 56px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid rgba(1, 66, 79, 0.06);
            border-radius: 18px;
            overflow: hidden;
            transition: all .3s;
            box-shadow: 0 12px 30px rgba(1, 42, 79, 0.04);
        }

        .faq-item:hover {
            border-color: var(--border);
        }

        .faq-item.active {
            border-color: rgba(166, 124, 82, 0.3);
            box-shadow: 0 8px 32px rgba(1, 66, 79, 0.08);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--teal);
            transition: color .25s;
            background: none;
            border: none;
            width: 100%;
            text-align: right;
        }

        .faq-q:hover {
            color: var(--gold);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(166, 124, 82, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all .3s;
        }

        .faq-item.active .faq-icon {
            background: var(--gold);
            transform: rotate(180deg);
        }

        .faq-icon svg {
            width: 12px;
            height: 12px;
            stroke: var(--gold);
            transition: stroke .3s;
        }

        .faq-item.active .faq-icon svg {
            stroke: var(--teal-dark);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .3s ease;
        }

        .faq-item.active .faq-a {
            max-height: 300px;
        }

        .faq-a-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.9;
        }

        /* ══════════════════════════════
   CTA
══════════════════════════════ */
        .cta-section {
            background: var(--gold);
            padding: 80px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 28%, rgba(255,255,255,0.22), transparent 18%),
                linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        }

        .cta-section::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 50%;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 1px solid rgba(1, 42, 48, 0.12);
            transform: translateY(-50%);
        }

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

        .cta-h2 {
            font-family: 'Cairo', sans-serif;
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 700;
            color: var(--teal-dark);
            margin-bottom: 14px;
        }

        .cta-p {
            font-size: 16px;
            font-weight: 300;
            color: rgba(1, 40, 48, 0.7);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .btn-dark {
            background: var(--teal-dark);
            color: var(--gold-light);
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            padding: 15px 40px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            transition: all .25s;
            display: inline-block;
            text-decoration: none;
            letter-spacing: .5px;
        }

        .btn-dark:hover {
            background: var(--teal);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(1, 26, 30, 0.4)
        }

        /* ══════════════════════════════
   CONTACT SECTION
══════════════════════════════ */
        .contact-section {
            background: var(--teal);
            padding: 100px 48px;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 14% 24%, rgba(212, 175, 55, 0.12), transparent 24%),
                linear-gradient(135deg, rgba(1, 40, 48, 0.95), rgba(1, 66, 79, 0.9));
            z-index: 0;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            left: 14%;
            top: 48%;
            width: min(32vw, 340px);
            aspect-ratio: 1;
            transform: translate(-50%, -50%);
            background: url('../aurox-logo.jpeg') center/contain no-repeat;
            opacity: .05;
            filter: grayscale(1) brightness(1.9);
            z-index: 0;
        }

        .contact-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h2 {
            font-family: 'Cairo', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--off-white);
            margin-bottom: 16px;
        }

        .contact-info p {
            font-size: 15px;
            color: rgba(244, 244, 244, 0.6);
            line-height: 1.8;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .contact-premium-note {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 16px;
            align-items: center;
            margin: -10px 0 28px;
            padding: 16px 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.14);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .contact-premium-note img {
            width: 72px;
            height: 72px;
            object-fit: cover;
            border-radius: 18px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .contact-premium-note strong {
            display: block;
            color: var(--off-white);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-premium-note span {
            display: block;
            color: rgba(244, 244, 244, 0.64);
            font-size: 13px;
            line-height: 1.8;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .contact-detail-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(166, 124, 82, 0.1);
            border: 1px solid rgba(166, 124, 82, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-detail-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
        }

        .contact-detail-text {
            font-size: 14px;
            color: rgba(244, 244, 244, 0.7);
            font-weight: 300;
        }

        .contact-detail-label {
            font-size: 12px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-form-card {
            background: rgba(1, 20, 26, 0.54);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(166, 124, 82, 0.15);
            border-radius: 28px;
            padding: 36px;
            box-shadow: 0 28px 54px rgba(0, 0, 0, 0.2);
        }

        .contact-form-card h3 {
            font-family: 'Cairo', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--off-white);
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: rgba(244, 244, 244, 0.6);
            margin-bottom: 6px;
        }

        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(1, 66, 79, 0.3);
            border: 1px solid rgba(166, 124, 82, 0.15);
            border-radius: 8px;
            color: var(--off-white);
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 400;
            transition: all .25s;
            outline: none;
        }

        .form-input:focus, .form-textarea:focus, .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: rgba(244, 244, 244, 0.3);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-select {
            appearance: none;
            cursor: pointer;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--teal-dark);
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all .25s;
            margin-top: 8px;
        }

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(166, 124, 82, 0.4);
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.85;
    transform: none;
    box-shadow: none;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(244, 244, 244, 0.72);
}

.form-status.is-success {
    color: #cdeccf;
}

.form-status.is-error {
    color: #ffd1d1;
}

.form-channel-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-channel-actions[hidden] {
    display: none;
}

.form-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(166, 124, 82, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: var(--off-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .25s ease;
}

.form-secondary-action:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(166, 124, 82, 0.14);
}

/* ══════════════════════════════
FOOTER
══════════════════════════════ */
footer {
            background: var(--teal-dark);
            border-top: 1px solid rgba(166, 124, 82, 0.1);
            padding: 64px 48px 28px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.1), transparent 24%);
            pointer-events: none;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

.footer-brand-logo {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 16px
        }

        .footer-brand-image {
            width: 190px;
            max-width: 100%;
            display: block;
            filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.18));
        }

        .footer-brand-ar {
            font-family: 'Cairo', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--gold);
        }

        .footer-desc {
            font-size: 13px;
            font-weight: 300;
            color: rgba(244, 244, 244, 0.45);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 10px
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background: rgba(166, 124, 82, 0.1);
            border: 1px solid rgba(166, 124, 82, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .25s;
        }

        .social-btn:hover {
            background: var(--gold);
            border-color: var(--gold)
        }

        .social-btn svg {
            width: 16px;
            height: 16px;
            stroke: var(--gold)
        }

        .social-btn:hover svg {
            stroke: var(--teal-dark)
        }

        .footer-col h4 {
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            margin-bottom: 18px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .footer-col ul li {
            font-size: 13px;
            font-weight: 300;
            color: rgba(244, 244, 244, 0.45)
        }

        .footer-col ul li a {
            color: inherit;
            text-decoration: none;
            transition: color .2s
        }

        .footer-col ul li a:hover {
            color: var(--gold)
        }

        .footer-bottom {
            border-top: 1px solid rgba(166, 124, 82, 0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 12px;
            color: rgba(244, 244, 244, 0.25)
        }

        .footer-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: rgba(166, 124, 82, 0.4);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 24px rgba(37,211,102,0.4);
            transition: all .3s ease;
            text-decoration: none;
            animation: wa-pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(37,211,102,0.5);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        @keyframes wa-pulse {
            0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
        }

        /* ══════════════════════════════
   BACK TO TOP
══════════════════════════════ */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 998;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: var(--teal);
            border: 1px solid rgba(166, 124, 82, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all .3s;
            text-decoration: none;
        }

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

        .back-to-top:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .back-to-top svg {
            width: 18px;
            height: 18px;
            stroke: var(--gold);
            transition: stroke .3s;
        }

        .back-to-top:hover svg {
            stroke: var(--teal-dark);
        }

        /* ══════════════════════════════
   PROCESS / METHODOLOGY SECTION
══════════════════════════════ */
        .process-section {
            background: linear-gradient(180deg, rgba(244, 244, 244, 0.95), rgba(255, 255, 255, 0.98));
            padding: 100px 48px;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 80% 20%, rgba(166, 124, 82, 0.06), transparent 28%),
                radial-gradient(circle at 20% 80%, rgba(1, 66, 79, 0.04), transparent 24%);
            pointer-events: none;
        }

        .process-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 56px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 20px;
        }

        .process-step-num {
            width: 96px;
            height: 96px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(244,244,244,0.9));
            border: 2px solid rgba(166, 124, 82, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--gold);
            box-shadow: 0 12px 36px rgba(1, 42, 79, 0.08);
            transition: all .4s ease;
            position: relative;
        }

        .process-step-num::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px solid rgba(166, 124, 82, 0.1);
        }

        .process-step:hover .process-step-num {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--teal-dark);
            border-color: var(--gold);
            transform: scale(1.08);
            box-shadow: 0 16px 44px rgba(166, 124, 82, 0.25);
        }

        .process-step-title {
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--teal);
            margin-bottom: 10px;
        }

        .process-step-desc {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-mid);
            line-height: 1.85;
        }

        .process-step-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto;
        }

        .process-step-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--gold);
            transition: stroke .3s;
        }

        .process-step:hover .process-step-icon svg {
            stroke: var(--teal-dark);
        }

        /* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none
        }

        .reveal-stagger > * {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .5s ease, transform .5s ease;
        }

        .reveal-stagger.visible > * {
            opacity: 1;
            transform: none;
        }

        .reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
        .reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; }
        .reveal-stagger.visible > *:nth-child(3) { transition-delay: .15s; }
        .reveal-stagger.visible > *:nth-child(4) { transition-delay: .2s; }
        .reveal-stagger.visible > *:nth-child(5) { transition-delay: .25s; }
        .reveal-stagger.visible > *:nth-child(6) { transition-delay: .3s; }
        .reveal-stagger.visible > *:nth-child(7) { transition-delay: .35s; }
        .reveal-stagger.visible > *:nth-child(8) { transition-delay: .4s; }

        /* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
        @media(max-width:1024px) {
            .hero-inner {
                grid-template-columns: minmax(0, 1fr) 360px;
                gap: 48px;
            }

            .hero-logo-image {
                width: min(100%, 280px);
            }

            .why-us-grid {
                grid-template-columns: 1fr 1fr;
            }
            .team-grid {
                grid-template-columns: 1fr 1fr;
            }
            .process-steps {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .process-steps::before {
                display: none;
            }
        }

        @media(max-width:900px) {
            nav {
                padding: 0 24px
            }

            .nav-links {
                display: none
            }

            .nav-cta {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 60px 24px
            }

            .hero-content {
                max-width: none;
            }

            .hero-visual {
                width: min(100%, 480px);
                margin: 0 auto;
            }

            .hero-bg::after {
                left: 50%;
                top: 24%;
                width: min(70vw, 360px);
                opacity: .05;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr
            }

            .services-shell {
                padding: 0 24px;
            }

            .about-inner {
                grid-template-columns: 1fr;
                gap: 40px
            }

            .milestones-inner {
                grid-template-columns: 1fr 1fr
            }

            .courses-grid {
                grid-template-columns: 1fr 1fr
            }

            .testi-grid {
                grid-template-columns: 1fr
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px
            }

            .programs {
                padding: 60px 24px
            }

            .services {
                padding: 60px 24px
            }

            .why-us {
                padding: 60px 24px;
            }

            .why-us-grid {
                grid-template-columns: 1fr 1fr;
            }

            .team {
                padding: 60px 24px;
            }

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

            .faq-section {
                padding: 60px 24px;
            }

            .contact-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-section {
                padding: 60px 24px;
            }

            .contact-premium-note {
                max-width: 520px;
            }

            .process-section {
                padding: 60px 24px;
            }
        }

        @media(max-width:600px) {
            .nav-logo {
                gap: 10px;
            }

            .nav-logo-mark {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .nav-brand-ar {
                font-size: 16px;
            }

            .nav-brand-en {
                font-size: 7px;
                letter-spacing: 1.5px;
            }

            .services-grid {
                grid-template-columns: 1fr
            }

            .courses-grid {
                grid-template-columns: 1fr
            }

            .hero-logo-chip {
                font-size: 10px;
                letter-spacing: 1.4px;
                line-height: 1.7;
            }

            .hero-signature {
                gap: 8px;
            }

            .hero-signature-item {
                width: 100%;
                justify-content: center;
            }

            .hero-logo-panel {
                padding: 22px 18px 20px;
                border-radius: 22px;
            }

            .hero-logo-copy strong {
                font-size: 22px;
                letter-spacing: 3px;
            }

            .hero-logo-copy p {
                font-size: 12px;
            }

            .services-intro-bar {
                margin: -18px 0 32px;
                gap: 8px;
            }

            .services-intro-bar span {
                width: 100%;
                text-align: center;
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

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

            .milestones-inner {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .hero-h1 {
                font-size: 32px;
            }

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

            .contact-premium-note {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .contact-premium-note img {
                margin: 0 auto;
            }

            .contact-detail {
                align-items: flex-start;
            }

            .about-brand-seal {
                width: 82px;
                height: 82px;
                margin-bottom: 16px;
            }

            .form-channel-actions {
                flex-direction: column;
            }

            .form-secondary-action {
                width: 100%;
            }

            .partners {
                flex-direction: column;
                gap: 16px;
                padding: 20px 24px;
            }

            .partners-logos {
                gap: 24px;
                flex-wrap: wrap;
                justify-content: center;
                animation: none;
                width: auto;
            }

            .partners-track {
                mask-image: none;
                -webkit-mask-image: none;
            }

            .footer-brand-image {
                width: 160px;
            }

            .team-avatar-img {
                width: 76px;
                height: 76px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .process-step-num {
                width: 72px;
                height: 72px;
                font-size: 22px;
            }
        }

        /* ══════════════════════════════
   ACTIVE NAV LINK
══════════════════════════════ */
        .nav-links a.active {
            color: var(--gold);
        }

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

        /* ══════════════════════════════
   PREFERS REDUCED MOTION
══════════════════════════════ */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }

            .reveal-stagger > * {
                opacity: 1;
                transform: none;
            }

            .partners-logos {
                animation: none;
            }

            .loader-overlay {
                display: none;
            }

            .scroll-progress {
                display: none;
            }

            .particle {
                display: none;
            }
        }
