/* =============================================================
   EduLabs Global — Premium UAE Study Consultancy
   2026 design system: Apple-clean structure, Dubai luxury tone.
   Author: EduLabs Global
   ============================================================= */

/* ---------- 1. Design tokens --------------------------------- */
:root {
    /* Brand palette */
    --eg-white: #ffffff;
    --eg-cream: #faf7f1;
    --eg-ink: #0a0e1a;
    --eg-ink-soft: #14182a;
    --eg-navy: #0a2540;
    --eg-navy-deep: #061a31;
    --eg-navy-700: #0d3160;
    --eg-gold: #d4a14a;
    --eg-gold-soft: #e8c275;
    --eg-gold-bright: #f5d27a;
    --eg-emerald: #1f8b6e;
    --eg-emerald-soft: #2bbb8c;

    /* Neutrals */
    --eg-slate-50: #f6f7fb;
    --eg-slate-100: #eef0f7;
    --eg-slate-200: #e1e5ef;
    --eg-slate-300: #c7cdde;
    --eg-slate-500: #6b7280;
    --eg-slate-700: #2f3545;

    /* Effects */
    --eg-shadow-sm: 0 4px 14px rgba(10, 37, 64, 0.06);
    --eg-shadow-md: 0 14px 36px rgba(10, 37, 64, 0.10);
    --eg-shadow-lg: 0 28px 70px rgba(10, 37, 64, 0.18);
    --eg-shadow-gold: 0 18px 48px rgba(212, 161, 74, 0.32);

    --eg-grad-gold: linear-gradient(135deg, #f5d27a 0%, #d4a14a 50%, #a8772a 100%);
    --eg-grad-navy: linear-gradient(160deg, #0a2540 0%, #0d3160 60%, #061a31 100%);
    --eg-grad-emerald: linear-gradient(135deg, #2bbb8c, #1f8b6e);
    --eg-grad-text: linear-gradient(120deg, #f5d27a 0%, #d4a14a 60%, #b07f2c 100%);

    /* Layout */
    --eg-container: 1240px;
    --eg-radius-sm: 12px;
    --eg-radius: 18px;
    --eg-radius-lg: 28px;
    --eg-radius-pill: 999px;

    /* Type */
    --eg-font-display: "Fraunces", "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --eg-font-body: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Motion */
    --eg-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --eg-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 2. Resets & base --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.eg-body {
    margin: 0;
    font-family: var(--eg-font-body);
    color: var(--eg-ink);
    background: var(--eg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .25s var(--eg-ease); }
a:hover { color: var(--eg-gold); }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--eg-gold); color: var(--eg-ink); }

/* Typography scale */
.eg-display, .eg-h1, .eg-h2, .eg-h3 {
    font-family: var(--eg-font-display);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.08;
    color: var(--eg-ink);
    margin: 0;
}

.eg-display { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.025em; }
.eg-h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.eg-h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.eg-h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }

.eg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--eg-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eg-gold);
    margin-bottom: 18px;
}
.eg-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--eg-gold);
}

.eg-gold-text {
    background: var(--eg-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eg-lead-text {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: var(--eg-slate-700);
    line-height: 1.7;
    max-width: 62ch;
}

/* Layout helpers */
.eg-container {
    width: 100%;
    max-width: var(--eg-container);
    margin: 0 auto;
    padding: 0 24px;
}

.eg-section {
    padding: clamp(72px, 9vw, 130px) 0;
    position: relative;
}

.eg-section--dark {
    background: var(--eg-grad-navy);
    color: var(--eg-white);
}
.eg-section--dark .eg-h1,
.eg-section--dark .eg-h2,
.eg-section--dark .eg-h3,
.eg-section--dark .eg-display { color: var(--eg-white); }
.eg-section--dark .eg-lead-text { color: rgba(255, 255, 255, 0.78); }

.eg-section--cream { background: var(--eg-cream); }

.eg-section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.eg-section__head .eg-lead-text { margin: 18px auto 0; }

/* ---------- 3. Buttons --------------------------------------- */
.eg-btn {
    --btn-bg: var(--eg-ink);
    --btn-color: var(--eg-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--eg-radius-pill);
    background: var(--btn-bg);
    color: var(--btn-color);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform .35s var(--eg-ease), box-shadow .35s var(--eg-ease), background .35s var(--eg-ease), color .35s var(--eg-ease);
    white-space: nowrap;
    line-height: 1;
}
.eg-btn svg { width: 16px; height: 16px; transition: transform .35s var(--eg-ease); }
.eg-btn:hover { transform: translateY(-3px); box-shadow: var(--eg-shadow-md); color: var(--btn-color); }
.eg-btn:hover svg { transform: translateX(4px); }

.eg-btn--gold {
    --btn-bg: var(--eg-grad-gold);
    --btn-color: #1a1305;
    background-image: var(--eg-grad-gold);
    box-shadow: var(--eg-shadow-gold);
}
.eg-btn--gold:hover { box-shadow: 0 24px 60px rgba(212, 161, 74, 0.45); }

.eg-btn--ghost {
    --btn-bg: transparent;
    --btn-color: var(--eg-white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.eg-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.eg-btn--ghost-dark {
    --btn-bg: transparent;
    --btn-color: var(--eg-ink);
    border: 1px solid var(--eg-slate-200);
}
.eg-btn--ghost-dark:hover { background: var(--eg-slate-50); }

.eg-btn--sm { padding: 12px 22px; font-size: 14px; }
.eg-btn--lg { padding: 20px 34px; font-size: 16px; }

/* ---------- 4. Header / Navigation --------------------------- */
.eg-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .4s var(--eg-ease), padding .4s var(--eg-ease), box-shadow .4s var(--eg-ease);
}
.eg-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--eg-radius-pill);
    padding: 10px 14px 10px 24px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: background .4s var(--eg-ease), border .4s var(--eg-ease), box-shadow .4s var(--eg-ease), color .4s var(--eg-ease);
    color: var(--eg-white);
}
.eg-header.is-scrolled .eg-header__inner {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--eg-slate-100);
    color: var(--eg-ink);
    box-shadow: var(--eg-shadow-md);
}

.eg-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--eg-font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: inherit;
}
.eg-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--eg-grad-gold);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(212, 161, 74, 0.45);
    color: #1a1305;
    font-family: var(--eg-font-display);
    font-weight: 700;
    font-size: 17px;
}
.eg-logo__name span { color: var(--eg-gold); }

.eg-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
}
.eg-nav a {
    padding: 10px 14px;
    border-radius: var(--eg-radius-pill);
    color: inherit;
    opacity: 0.85;
    transition: opacity .25s, background .25s;
}
.eg-nav a:hover { opacity: 1; background: rgba(255, 255, 255, 0.08); color: inherit; }
.eg-header.is-scrolled .eg-nav a:hover { background: var(--eg-slate-50); color: var(--eg-navy); }

.eg-header__actions { display: flex; align-items: center; gap: 10px; }

.eg-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: inherit;
    align-items: center;
    justify-content: center;
}
.eg-header.is-scrolled .eg-burger { border-color: var(--eg-slate-200); }
.eg-burger span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    position: relative;
    display: block;
    transition: transform .3s var(--eg-ease);
}
.eg-burger span::before, .eg-burger span::after {
    content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
    background: currentColor; transition: transform .3s var(--eg-ease), top .3s var(--eg-ease);
}
.eg-burger span::before { top: -6px; }
.eg-burger span::after { top: 6px; }
.eg-burger.is-open span { background: transparent; }
.eg-burger.is-open span::before { top: 0; transform: rotate(45deg); }
.eg-burger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu */
.eg-mobile-menu {
    position: fixed; inset: 0; z-index: 95;
    background: var(--eg-grad-navy); color: var(--eg-white);
    padding: 110px 28px 40px;
    transform: translateY(-100%);
    transition: transform .5s var(--eg-ease);
    overflow-y: auto;
}
.eg-mobile-menu.is-open { transform: translateY(0); }
.eg-mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.eg-mobile-menu a {
    padding: 18px 0;
    font-size: 24px;
    font-family: var(--eg-font-display);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--eg-white);
}
.eg-mobile-menu .eg-btn { margin-top: 28px; align-self: flex-start; }

/* ---------- 5. Hero ------------------------------------------ */
.eg-hero {
    position: relative;
    padding: 160px 0 90px;
    color: var(--eg-white);
    background: var(--eg-grad-navy);
    overflow: hidden;
    isolation: isolate;
}
.eg-hero__glow {
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 40% at 80% 18%, rgba(212, 161, 74, 0.35), transparent 70%),
        radial-gradient(50% 50% at 12% 80%, rgba(43, 187, 140, 0.18), transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.eg-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    pointer-events: none;
    z-index: -1;
}
.eg-hero__skyline {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: clamp(140px, 22vw, 260px);
    pointer-events: none;
    opacity: 0.65;
    z-index: -1;
}

.eg-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.eg-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--eg-radius-pill);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.eg-hero__pill em {
    font-style: normal;
    background: var(--eg-grad-gold);
    color: #1a1305;
    padding: 4px 10px;
    border-radius: var(--eg-radius-pill);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eg-hero h1 { color: var(--eg-white); margin-bottom: 22px; }
.eg-hero p.eg-hero__sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    max-width: 540px;
    margin: 0 0 36px;
    line-height: 1.7;
}
.eg-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.eg-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.eg-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--eg-radius-pill);
    font-size: 13px;
    backdrop-filter: blur(10px);
}
.eg-trust-chip svg { width: 14px; height: 14px; color: var(--eg-gold); }

/* Hero visual stack */
.eg-hero__visual {
    position: relative;
    aspect-ratio: 5 / 6;
    max-width: 520px;
    margin-left: auto;
}
.eg-hero__card {
    position: absolute;
    inset: 0;
    border-radius: var(--eg-radius-lg);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 37, 64, 0.0) 50%, rgba(10, 37, 64, 0.85) 100%),
        linear-gradient(135deg, #11365e, #0a2540 60%, #061a31);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--eg-shadow-lg);
}
.eg-hero__card-art { position: absolute; inset: 0; }
.eg-hero__card-meta {
    position: absolute;
    left: 24px; right: 24px; bottom: 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--eg-radius);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 13px;
}
.eg-hero__card-meta strong { display: block; font-family: var(--eg-font-display); font-size: 17px; font-weight: 600; }
.eg-hero__card-meta span { color: rgba(255, 255, 255, 0.65); }

/* Floating glass badges around hero visual */
.eg-floater {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    color: var(--eg-ink);
    border-radius: var(--eg-radius);
    padding: 14px 18px;
    box-shadow: var(--eg-shadow-lg);
    display: flex; align-items: center; gap: 12px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: eg-float 6s ease-in-out infinite;
}
.eg-floater__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--eg-white);
    flex-shrink: 0;
}
.eg-floater__icon svg { width: 18px; height: 18px; }
.eg-floater__label { color: var(--eg-slate-500); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.eg-floater__value { font-family: var(--eg-font-display); font-size: 18px; font-weight: 600; }

.eg-floater--a { top: 12%; left: -28px; animation-delay: 0s; }
.eg-floater--b { bottom: 24%; right: -38px; animation-delay: 1.2s; }
.eg-floater--c { top: 50%; left: -56px; animation-delay: 2.4s; }

@keyframes eg-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero stats strip */
.eg-hero__stats {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--eg-radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.eg-hero__stat {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.eg-hero__stat:last-child { border-right: none; }
.eg-hero__stat strong {
    display: block;
    font-family: var(--eg-font-display);
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    color: var(--eg-white);
    line-height: 1;
}
.eg-hero__stat span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.04em;
}

/* ---------- 6. About ----------------------------------------- */
.eg-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.eg-about__visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    border-radius: var(--eg-radius-lg);
    overflow: hidden;
    background: var(--eg-grad-navy);
    box-shadow: var(--eg-shadow-lg);
}
.eg-about__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 60% at 70% 20%, rgba(212, 161, 74, 0.35), transparent 70%);
    pointer-events: none;
}
.eg-about__sticker {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--eg-radius);
    padding: 18px 22px;
    box-shadow: var(--eg-shadow-md);
    display: flex; gap: 14px; align-items: center;
    z-index: 2;
}
.eg-about__sticker .eg-floater__icon { background: var(--eg-grad-emerald); }
.eg-about__sticker strong { font-family: var(--eg-font-display); font-size: 22px; display:block; }
.eg-about__sticker span { font-size: 12px; color: var(--eg-slate-500); }

.eg-about__points { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
.eg-about__points li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15.5px;
    color: var(--eg-slate-700);
}
.eg-about__points li svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--eg-emerald);
    margin-top: 2px;
}
.eg-about__points li strong { color: var(--eg-ink); display: block; margin-bottom: 2px; font-weight: 600; }

/* ---------- 7. Services -------------------------------------- */
.eg-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.eg-service {
    position: relative;
    padding: 32px 26px;
    background: var(--eg-white);
    border-radius: var(--eg-radius);
    border: 1px solid var(--eg-slate-100);
    transition: transform .4s var(--eg-ease), box-shadow .4s var(--eg-ease), border-color .4s var(--eg-ease);
    overflow: hidden;
    isolation: isolate;
}
.eg-service::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(212, 161, 74, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--eg-ease);
    z-index: -1;
}
.eg-service:hover { transform: translateY(-6px); box-shadow: var(--eg-shadow-md); border-color: rgba(212, 161, 74, 0.4); }
.eg-service:hover::before { opacity: 1; }
.eg-service__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 161, 74, 0.18), rgba(212, 161, 74, 0.06));
    display: grid; place-items: center;
    color: var(--eg-gold);
    margin-bottom: 22px;
    transition: transform .4s var(--eg-ease);
}
.eg-service:hover .eg-service__icon { transform: scale(1.06) rotate(-3deg); }
.eg-service__icon svg { width: 22px; height: 22px; }
.eg-service h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; font-family: var(--eg-font-body); letter-spacing: -0.01em; }
.eg-service p { font-size: 14px; color: var(--eg-slate-500); margin: 0; line-height: 1.6; }

/* ---------- 8. Universities ---------------------------------- */
.eg-uni__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.eg-uni-card {
    background: var(--eg-white);
    border-radius: var(--eg-radius-lg);
    overflow: hidden;
    border: 1px solid var(--eg-slate-100);
    box-shadow: var(--eg-shadow-sm);
    transition: transform .45s var(--eg-ease), box-shadow .45s var(--eg-ease);
    display: flex; flex-direction: column;
}
.eg-uni-card:hover { transform: translateY(-8px); box-shadow: var(--eg-shadow-lg); }
.eg-uni-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--eg-grad-navy);
}
.eg-uni-card__img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.eg-uni-card__badge {
    position: absolute; top: 16px; left: 16px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--eg-radius-pill);
    font-size: 12px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--eg-navy);
}
.eg-uni-card__badge svg { width: 12px; height: 12px; color: var(--eg-gold); }
.eg-uni-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.eg-uni-card h3 { font-size: 19px; font-weight: 600; margin: 0; line-height: 1.25; font-family: var(--eg-font-display); }
.eg-uni-card__meta { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--eg-slate-700); }
.eg-uni-card__meta div { display: flex; align-items: flex-start; gap: 8px; }
.eg-uni-card__meta svg { width: 16px; height: 16px; color: var(--eg-gold); margin-top: 2px; flex-shrink: 0; }
.eg-uni-card__meta strong { color: var(--eg-ink); display: block; margin-bottom: 2px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--eg-slate-500); }
.eg-uni-card__meta span { font-size: 14px; color: var(--eg-ink); font-weight: 500; }
.eg-uni-card__cta {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 14px;
    color: var(--eg-navy);
    transition: gap .3s var(--eg-ease), color .3s var(--eg-ease);
    align-self: flex-start;
}
.eg-uni-card__cta:hover { gap: 14px; color: var(--eg-gold); }
.eg-uni-card__cta svg { width: 14px; height: 14px; }

/* ---------- 9. Why UAE --------------------------------------- */
.eg-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.eg-why-card {
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--eg-radius);
    backdrop-filter: blur(12px);
    transition: transform .4s var(--eg-ease), background .4s var(--eg-ease), border .4s var(--eg-ease);
}
.eg-why-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); border-color: rgba(212, 161, 74, 0.4); }
.eg-why-card__num {
    font-family: var(--eg-font-display);
    font-size: 28px;
    color: var(--eg-gold);
    margin-bottom: 14px;
    font-weight: 500;
}
.eg-why-card h3 { font-size: 17px; font-weight: 600; color: var(--eg-white); margin: 0 0 8px; font-family: var(--eg-font-body); letter-spacing: -0.005em; }
.eg-why-card p { font-size: 13.5px; color: rgba(255, 255, 255, 0.68); margin: 0; line-height: 1.6; }

.eg-why-card--feature {
    grid-column: span 2;
    background: var(--eg-grad-gold);
    border: none;
    color: #1a1305;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 220px;
}
.eg-why-card--feature h3 { color: #1a1305; font-family: var(--eg-font-display); font-size: 26px; font-weight: 500; }
.eg-why-card--feature p { color: rgba(26, 19, 5, 0.75); font-size: 14.5px; }
.eg-why-card--feature .eg-why-card__num { color: #1a1305; opacity: 0.5; }

/* ---------- 10. Process timeline ---------------------------- */
.eg-process { position: relative; }
.eg-process__timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}
.eg-process__timeline::before {
    content: "";
    position: absolute;
    top: 32px; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--eg-gold) 10%, var(--eg-gold) 90%, transparent);
    opacity: 0.5;
    z-index: 0;
}
.eg-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.eg-step__num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--eg-white);
    border: 1px solid var(--eg-slate-200);
    margin: 0 auto 22px;
    display: grid; place-items: center;
    font-family: var(--eg-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--eg-navy);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06);
    transition: transform .4s var(--eg-ease), background .4s var(--eg-ease), color .4s var(--eg-ease);
}
.eg-step:hover .eg-step__num { transform: scale(1.08); background: var(--eg-grad-gold); color: #1a1305; border-color: transparent; }
.eg-step h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; font-family: var(--eg-font-body); }
.eg-step p { font-size: 13px; color: var(--eg-slate-500); margin: 0; }

/* ---------- 11. Testimonials --------------------------------- */
.eg-testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.eg-testi {
    padding: 32px 28px;
    background: var(--eg-white);
    border-radius: var(--eg-radius-lg);
    border: 1px solid var(--eg-slate-100);
    box-shadow: var(--eg-shadow-sm);
    display: flex; flex-direction: column; gap: 20px;
    position: relative;
    transition: transform .4s var(--eg-ease), box-shadow .4s var(--eg-ease);
}
.eg-testi:hover { transform: translateY(-6px); box-shadow: var(--eg-shadow-md); }
.eg-testi__rating { display: flex; gap: 2px; color: var(--eg-gold); }
.eg-testi__rating svg { width: 16px; height: 16px; }
.eg-testi__quote { font-size: 15px; color: var(--eg-slate-700); line-height: 1.7; margin: 0; flex: 1; }
.eg-testi__quote::before { content: "\201C"; font-family: var(--eg-font-display); font-size: 60px; line-height: 0; color: var(--eg-gold); display: block; height: 18px; opacity: 0.4; }
.eg-testi__person { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--eg-slate-100); }
.eg-testi__avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--eg-grad-navy);
    color: var(--eg-white);
    display: grid; place-items: center;
    font-family: var(--eg-font-display);
    font-weight: 600;
    flex-shrink: 0;
    border: 2px solid var(--eg-gold);
}
.eg-testi__person strong { display: block; font-size: 14.5px; }
.eg-testi__person span { font-size: 12.5px; color: var(--eg-slate-500); }

/* ---------- 12. Metrics -------------------------------------- */
.eg-metrics {
    background: var(--eg-grad-navy);
    color: var(--eg-white);
    position: relative;
    overflow: hidden;
}
.eg-metrics::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 60% at 50% 0%, rgba(212, 161, 74, 0.18), transparent 70%);
    pointer-events: none;
}
.eg-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.eg-metric { text-align: center; padding: 0 12px; }
.eg-metric strong {
    display: block;
    font-family: var(--eg-font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 500;
    background: var(--eg-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.eg-metric span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- 13. Blog preview --------------------------------- */
.eg-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.eg-blog-card {
    background: var(--eg-white);
    border-radius: var(--eg-radius-lg);
    overflow: hidden;
    border: 1px solid var(--eg-slate-100);
    transition: transform .4s var(--eg-ease), box-shadow .4s var(--eg-ease);
}
.eg-blog-card:hover { transform: translateY(-6px); box-shadow: var(--eg-shadow-md); }
.eg-blog-card__img {
    aspect-ratio: 16 / 10;
    background: var(--eg-grad-navy);
    position: relative;
    overflow: hidden;
}
.eg-blog-card__img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.eg-blog-card__body { padding: 24px 26px 26px; }
.eg-blog-card__cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 161, 74, 0.12);
    color: var(--eg-gold);
    border-radius: var(--eg-radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.eg-blog-card h3 { font-size: 19px; font-weight: 600; margin: 0 0 12px; line-height: 1.3; font-family: var(--eg-font-display); }
.eg-blog-card p { font-size: 14px; color: var(--eg-slate-500); margin: 0 0 18px; line-height: 1.6; }
.eg-blog-card__meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--eg-slate-500); }

/* ---------- 14. FAQ ------------------------------------------ */
.eg-faq__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}
.eg-faq__list { display: flex; flex-direction: column; gap: 12px; }
.eg-faq-item {
    background: var(--eg-white);
    border: 1px solid var(--eg-slate-100);
    border-radius: var(--eg-radius);
    transition: border-color .3s var(--eg-ease), box-shadow .3s var(--eg-ease);
    overflow: hidden;
}
.eg-faq-item.is-open { border-color: var(--eg-gold); box-shadow: var(--eg-shadow-sm); }
.eg-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--eg-ink);
}
.eg-faq-item summary::-webkit-details-marker { display: none; }
.eg-faq-item__icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--eg-slate-50);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform .3s var(--eg-ease), background .3s var(--eg-ease), color .3s var(--eg-ease);
    color: var(--eg-navy);
}
.eg-faq-item__icon svg { width: 14px; height: 14px; transition: transform .3s var(--eg-ease); }
.eg-faq-item.is-open .eg-faq-item__icon { background: var(--eg-grad-gold); color: #1a1305; }
.eg-faq-item.is-open .eg-faq-item__icon svg { transform: rotate(45deg); }
.eg-faq-item__body {
    padding: 0 26px 24px;
    font-size: 14.5px;
    color: var(--eg-slate-700);
    line-height: 1.7;
}

/* ---------- 15. Lead form ------------------------------------ */
.eg-lead {
    background: var(--eg-grad-navy);
    color: var(--eg-white);
    position: relative;
    overflow: hidden;
}
.eg-lead::before {
    content: ""; position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    top: -200px; right: -200px;
    background: radial-gradient(circle, rgba(212, 161, 74, 0.25), transparent 70%);
    pointer-events: none;
}
.eg-lead__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
}
.eg-lead h2 { color: var(--eg-white); }
.eg-lead__benefits { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.eg-lead__benefits li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, 0.85); }
.eg-lead__benefits svg { color: var(--eg-emerald-soft); width: 20px; height: 20px; flex-shrink: 0; }

.eg-lead__form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--eg-radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.eg-lead__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.eg-field { display: flex; flex-direction: column; gap: 8px; }
.eg-field--full { grid-column: span 2; }
.eg-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); }
.eg-field input, .eg-field select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--eg-radius-sm);
    color: var(--eg-white);
    font-size: 14.5px;
    font-family: inherit;
    transition: border-color .25s, background .25s;
}
.eg-field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.eg-field input:focus, .eg-field select:focus {
    outline: none;
    border-color: var(--eg-gold);
    background: rgba(255, 255, 255, 0.08);
}
.eg-field select { color: var(--eg-white); appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23d4a14a' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.eg-field select option { color: #1a1305; background: var(--eg-white); }
.eg-lead__form .eg-btn { width: 100%; justify-content: center; margin-top: 8px; }
.eg-lead__legal { font-size: 12px; color: rgba(255, 255, 255, 0.5); text-align: center; margin: 14px 0 0; }

/* ---------- 16. CTA banner ----------------------------------- */
.eg-cta-banner {
    padding: 0;
}
.eg-cta-banner__inner {
    background: var(--eg-grad-gold);
    border-radius: var(--eg-radius-lg);
    padding: clamp(40px, 6vw, 70px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #1a1305;
}
.eg-cta-banner__inner::before {
    content: "";
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(26, 19, 5, 0.12);
    bottom: -180px; right: -120px;
}
.eg-cta-banner__inner::after {
    content: "";
    position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(26, 19, 5, 0.18);
    bottom: -110px; right: -50px;
}
.eg-cta-banner h2 { color: #1a1305; }
.eg-cta-banner p { color: rgba(26, 19, 5, 0.78); margin: 12px 0 0; font-size: 16px; }
.eg-cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; position: relative; z-index: 2; }
.eg-cta-banner .eg-btn { background: var(--eg-ink); color: var(--eg-white); }
.eg-cta-banner .eg-btn--ghost-dark { background: transparent; border-color: rgba(26, 19, 5, 0.3); color: #1a1305; }
.eg-cta-banner .eg-btn--ghost-dark:hover { background: rgba(26, 19, 5, 0.06); }

/* ---------- 17. Footer --------------------------------------- */
.eg-footer {
    background: var(--eg-ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 30px;
    position: relative;
    overflow: hidden;
}
.eg-footer::before {
    content: ""; position: absolute;
    top: -200px; left: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 161, 74, 0.08), transparent 70%);
    pointer-events: none;
}
.eg-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}
.eg-footer h4 { color: var(--eg-white); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 22px; font-family: var(--eg-font-body); }
.eg-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.eg-footer ul a { color: rgba(255, 255, 255, 0.6); font-size: 14px; transition: color .25s; }
.eg-footer ul a:hover { color: var(--eg-gold); }
.eg-footer__about p { font-size: 14px; line-height: 1.7; margin: 18px 0 24px; max-width: 320px; }
.eg-footer__social { display: flex; gap: 10px; }
.eg-footer__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid; place-items: center;
    transition: background .25s, border-color .25s, transform .25s;
}
.eg-footer__social a:hover { background: var(--eg-gold); border-color: var(--eg-gold); color: #1a1305; transform: translateY(-3px); }
.eg-footer__social svg { width: 16px; height: 16px; }

.eg-footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.eg-footer__contact svg { width: 16px; height: 16px; color: var(--eg-gold); margin-top: 4px; flex-shrink: 0; }
.eg-footer__contact strong { display: block; color: var(--eg-white); font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.eg-footer__contact span { font-size: 13px; }

.eg-footer__newsletter form {
    display: flex; gap: 8px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--eg-radius-pill);
    padding: 6px;
}
.eg-footer__newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--eg-white);
    font-family: inherit;
    font-size: 14px;
}
.eg-footer__newsletter input:focus { outline: none; }
.eg-footer__newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.eg-footer__newsletter button {
    padding: 10px 20px;
    border-radius: var(--eg-radius-pill);
    border: none;
    background: var(--eg-grad-gold);
    color: #1a1305;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform .25s;
}
.eg-footer__newsletter button:hover { transform: translateY(-2px); }
.eg-footer__newsletter p { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin: 12px 0 0; }

.eg-footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
.eg-footer__bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- 18. Floating widgets ----------------------------- */
.eg-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--eg-white);
    display: grid; place-items: center;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    z-index: 50;
    transition: transform .3s var(--eg-ease);
}
.eg-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: eg-pulse 2s ease-out infinite;
}
.eg-whatsapp:hover { transform: scale(1.08); color: var(--eg-white); }
.eg-whatsapp svg { width: 26px; height: 26px; }
@keyframes eg-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

.eg-mobile-cta {
    display: none;
    position: fixed;
    bottom: 16px; left: 16px; right: 92px;
    background: var(--eg-grad-gold);
    color: #1a1305;
    padding: 14px 20px;
    border-radius: var(--eg-radius-pill);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 12px 36px rgba(212, 161, 74, 0.5);
    z-index: 49;
    font-size: 14px;
}

/* ---------- 19. Reveal on scroll ----------------------------- */
.eg-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--eg-ease-out), transform .8s var(--eg-ease-out);
}
.eg-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.eg-reveal--delay-1 { transition-delay: .1s; }
.eg-reveal--delay-2 { transition-delay: .2s; }
.eg-reveal--delay-3 { transition-delay: .3s; }
.eg-reveal--delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    .eg-reveal { opacity: 1; transform: none; transition: none; }
    .eg-floater { animation: none; }
    .eg-whatsapp::after { animation: none; }
}

/* ---------- 20. Responsive ----------------------------------- */
@media (max-width: 1080px) {
    .eg-services__grid { grid-template-columns: repeat(2, 1fr); }
    .eg-uni__grid { grid-template-columns: repeat(2, 1fr); }
    .eg-why__grid { grid-template-columns: repeat(2, 1fr); }
    .eg-why-card--feature { grid-column: span 2; }
    .eg-blog__grid { grid-template-columns: repeat(2, 1fr); }
    .eg-blog__grid > :nth-child(3) { grid-column: span 2; }
    .eg-process__timeline { grid-template-columns: repeat(3, 1fr); gap: 36px 16px; }
    .eg-process__timeline::before { display: none; }
    .eg-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .eg-footer__newsletter { grid-column: span 3; }
}

@media (max-width: 880px) {
    .eg-nav, .eg-header__cta-desktop { display: none; }
    .eg-burger { display: inline-flex; }

    .eg-hero { padding: 130px 0 70px; }
    .eg-hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .eg-hero__visual { max-width: 420px; margin: 0 auto; }
    .eg-floater--c { display: none; }
    .eg-floater--a { left: -10px; }
    .eg-floater--b { right: -10px; }
    .eg-hero__stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 20px 0; }
    .eg-hero__stat { border-right: none; }
    .eg-hero__stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }

    .eg-about__grid { grid-template-columns: 1fr; gap: 40px; }
    .eg-faq__grid { grid-template-columns: 1fr; gap: 40px; }
    .eg-lead__grid { grid-template-columns: 1fr; gap: 40px; }
    .eg-lead__form { padding: 28px; }
    .eg-cta-banner__inner { grid-template-columns: 1fr; padding: 36px; text-align: center; }
    .eg-cta-banner__actions { justify-content: center; }
    .eg-mobile-cta { display: block; }
}

@media (max-width: 640px) {
    .eg-services__grid, .eg-uni__grid, .eg-why__grid, .eg-blog__grid, .eg-testi__grid { grid-template-columns: 1fr; }
    .eg-why-card--feature { grid-column: span 1; }
    .eg-blog__grid > :nth-child(3) { grid-column: span 1; }
    .eg-metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
    .eg-process__timeline { grid-template-columns: repeat(2, 1fr); }
    .eg-footer__grid { grid-template-columns: 1fr 1fr; }
    .eg-footer__about, .eg-footer__newsletter { grid-column: span 2; }
    .eg-lead__form-grid { grid-template-columns: 1fr; }
    .eg-field--full { grid-column: span 1; }
    .eg-section { padding: 70px 0; }
    .eg-hero__pill em { display: none; }
}
