/* ============================================================
   EMINENT EDUCATION CONSULTANCY — STYLE.CSS
   Color Theme : Dark Blue #0A3D62  |  Orange #F39C12
   Fonts       : Playfair Display (display) · DM Sans (body)
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
    /* Brand colours */
    --navy:          #0A3D62;
    --navy-dark:     #072d48;
    --navy-light:    #1a5276;
    --orange:        #F39C12;
    --orange-dark:   #d68910;
    --orange-light:  #f8c471;

    /* Neutrals */
    --white:         #ffffff;
    --off-white:     #f8f9fa;
    --light-gray:    #eef1f5;
    --mid-gray:      #8899a6;
    --dark-gray:     #2c3e50;
    --text:          #2d3748;
    --text-light:    #718096;

    /* Typography */
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'DM Sans', sans-serif;

    /* Shadows */
    --shadow-sm:     0 2px 8px  rgba(10,61,98,0.08);
    --shadow-md:     0 8px 32px rgba(10,61,98,0.12);
    --shadow-lg:     0 20px 60px rgba(10,61,98,0.18);
    --shadow-orange: 0 8px 24px rgba(243,156,18,0.30);

    /* Border-radius scale */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    /* Global transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. LAYOUT UTILITIES ─────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center    { text-align: center; }
.text-orange    { color: var(--orange); }
.text-navy      { color: var(--navy); }

/* Section header block */
.section-header            { margin-bottom: 56px; }
.section-header.text-center { text-align: center; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(243,156,18,0.08);
    border: 1px solid rgba(243,156,18,0.25);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title span { color: var(--orange); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
}
.section-header.text-center .section-desc { margin: 0 auto; }

.divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
    margin: 16px 0 24px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ── 4. BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm  { padding: 9px 20px;  font-size: 0.85rem; }

/* ── 5. ANNOUNCEMENT BAR ─────────────────────────────────── */
.announcement-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 0;
    text-align: center;
}
.announcement-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.announcement-bar a { color: var(--orange-light); font-weight: 600; transition: var(--transition); }
.announcement-bar a:hover { color: var(--orange); }

/* ── 6. HEADER & NAVBAR ──────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 200px;
}
.logo-light .logo-img {
    filter: brightness(0) invert(1);
}
/* Fallback text logo (used when logo.png fails) */
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-icon span {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
}
.logo-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}
.logo-text span {
    font-size: 0.68rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    font-weight: 500;
}
.logo-light .logo-text strong { color: var(--white); }
.logo-light .logo-text span   { color: rgba(255,255,255,0.6); }

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--orange);
    background: rgba(243,156,18,0.07);
}
.nav-links > li > a .fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}
.nav-links > li.has-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.88rem;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--light-gray); color: var(--navy); }
.dropdown-menu li a img   { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta     { padding: 10px 22px; font-size: 0.88rem; }

/* Search toggle button */
.search-toggle {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.search-toggle:hover { background: var(--navy); color: var(--white); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay backdrop */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(4px);
}

/* ── 7. SEARCH OVERLAY ───────────────────────────────────── */
/*
 * IMPORTANT: display:none hides this completely.
 * JavaScript adds .active class to show it.
 * We use display:none / display:flex (NOT opacity/visibility)
 * so that keyboard focus and layout are never affected when hidden.
 */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 29, 46, 0.96);
    z-index: 9999;               /* above everything */
    display: none;               /* HIDDEN by default */
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.search-overlay.active {
    display: flex;               /* JS toggles this */
    animation: searchFadeIn 0.25s ease forwards;
}
@keyframes searchFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-box-wrap {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

/* Search input bar */
.search-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 6px 6px 6px 20px;
    gap: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.search-form-icon {
    color: var(--text-light);
    font-size: 1rem;
    flex-shrink: 0;
}
.search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: var(--font-body);
    color: var(--text);
    background: transparent;
    padding: 10px 0;
}
.search-form input::placeholder { color: var(--mid-gray); }

.search-close {
    width: 42px; height: 42px;
    border-radius: var(--radius-md);
    background: var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--text);
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
}
.search-close:hover { background: var(--navy); color: var(--white); }

/* Results dropdown */
.search-results {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-top: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
    color: var(--text);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover      { background: var(--off-white); }

.search-result-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(10,61,98,0.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.search-result-icon i { color: var(--navy); font-size: 0.9rem; }

.search-result-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    display: block;
    margin-bottom: 2px;
}
.search-result-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    display: block;
}
.search-result-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 480px;
    display: block;
}
.search-no-results {
    padding: 32px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}
.search-loading {
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.88rem;
}
.search-loading i { color: var(--orange); margin-right: 8px; }

/* ── 8. HERO SECTION ─────────────────────────────────────── */
.hero {
    min-height: 100vh;

    background:
        linear-gradient(135deg, rgba(10,20,40,0.85), rgba(20,40,80,0.85)),
        url('../images/home.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(243,156,18,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243,156,18,0.15);
    border: 1px solid rgba(243,156,18,0.4);
    color: var(--orange-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--orange); }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta   { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
.trust-item i { color: var(--orange); font-size: 0.9rem; }

/* Hero form card */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    position: relative;
}
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-card-header { margin-bottom: 24px; }
.form-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.form-card-header p { font-size: 0.85rem; color: var(--text-light); }

/* Form fields (shared) */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(243,156,18,0.1);
}
.form-group input::placeholder { color: var(--mid-gray); }
.form-group textarea  { resize: vertical; min-height: 100px; }
.form-group select    { cursor: pointer; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}
.form-note i { color: var(--orange); }

/* ── 9. STATS SECTION ────────────────────────────────────── */
.stats-section {
    background: var(--navy);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(243,156,18,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.stat-item {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.stat-icon {
    width: 52px; height: 52px;
    background: rgba(243,156,18,0.12);
    border: 1px solid rgba(243,156,18,0.25);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.stat-icon i { color: var(--orange); font-size: 1.2rem; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number span { color: var(--orange); }
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ── 10. COUNTRIES SECTION ───────────────────────────────── */
.countries-section { background: var(--off-white); }
.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.country-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}
.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.country-img-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.country-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.country-card:hover .country-img-wrap img { transform: scale(1.08); }
.country-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,61,98,0.8) 0%, transparent 60%);
}
.country-flag {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 24px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.country-flag img { width: 100%; height: 100%; object-fit: cover; }
.country-card-body { padding: 18px; }
.country-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.country-card-body p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; }
.country-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    display: flex; align-items: center; gap: 5px;
    transition: var(--transition);
}
.country-card:hover .country-card-link { gap: 8px; }

/* ── 11. SERVICES SECTION ────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: bottom;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243,156,18,0.2);
}
.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(10,61,98,0.08), rgba(10,61,98,0.04));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.service-icon i         { color: var(--navy); font-size: 1.4rem; transition: var(--transition); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ── 12. ELIGIBILITY SECTION ─────────────────────────────── */
.eligibility-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.eligibility-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.eligibility-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.eligibility-criteria { display: flex; flex-direction: column; gap: 16px; }
.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.criteria-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(6px);
}
.criteria-icon {
    width: 44px; height: 44px;
    background: rgba(243,156,18,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.criteria-icon i         { color: var(--orange); font-size: 1.1rem; }
.criteria-text h4        { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.criteria-text p         { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.eligibility-cta         { margin-top: 24px; display: flex; gap: 16px; }

/* ── 13. WHY CHOOSE US ───────────────────────────────────── */
.why-us-section { background: var(--off-white); }
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--orange);
    transform: translateY(-6px);
}
.why-card-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.why-card-icon i { color: var(--white); font-size: 1.5rem; }
.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ── 14. PROCESS SECTION ─────────────────────────────────── */
.process-section { background: var(--white); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 18px);
    right: calc(10% + 18px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--light-gray));
    z-index: 0;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 72px; height: 72px;
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mid-gray);
    transition: var(--transition);
    position: relative;
}
.process-step.active .step-number,
.process-step:hover  .step-number {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.step-icon {
    width: 44px; height: 44px;
    background: rgba(10,61,98,0.06);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    transition: var(--transition);
}
.process-step:hover .step-icon   { background: rgba(243,156,18,0.1); }
.step-icon i                     { color: var(--navy); font-size: 1rem; }
.process-step:hover .step-icon i { color: var(--orange); }
.process-step h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p  { font-size: 0.8rem; color: var(--text-light); }

/* ── 15. TESTIMONIALS ────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(243,156,18,0.12);
    line-height: 1;
}
.testimonial-stars   { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--orange); font-size: 0.9rem; }
.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-light);
}
.author-avatar-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.92rem; color: var(--navy); }
.author-info span   { font-size: 0.8rem; color: var(--text-light); }

/* ── 16. CTA SECTION ─────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 17. PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
    background:
        linear-gradient(135deg, rgba(10,20,40,0.85), rgba(20,40,80,0.85)),
        url('../images/home.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
}
.breadcrumb a       { color: var(--orange-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i       { font-size: 0.7rem; }

/* ── 18. COUNTRIES PAGE ──────────────────────────────────── */
.countries-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.country-page-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}
.country-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243,156,18,0.3);
}
.country-page-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.country-page-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.country-page-card:hover .country-page-img img { transform: scale(1.07); }
.country-page-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,61,98,0.7) 0%, transparent 60%);
}
.country-page-img-overlay .country-name {
    position: absolute;
    bottom: 16px; left: 20px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}
.country-page-body  { padding: 24px; }
.country-features   { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.country-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
}
.country-feature i          { color: var(--orange); width: 16px; }
.country-page-body .btn     { width: 100%; justify-content: center; }

/* ── 19. COUNTRY DETAIL PAGE ─────────────────────────────── */
.country-detail-hero {
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.country-detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.country-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,61,98,0.9) 0%, rgba(10,61,98,0.3) 100%);
}
.country-detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    color: var(--white);
}
.country-detail-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.country-detail-content { padding: 70px 0; }
.country-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
}
.country-main-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
    margin: 32px 0 16px;
}
.country-main-content h2:first-child { margin-top: 0; }
.country-main-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.9;
}
.country-main-content ul { padding-left: 20px; }
.country-main-content ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: none;
    padding-left: 20px;
    position: relative;
}
.country-main-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.fee-table th {
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
}
.fee-table td {
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--light-gray);
}
.fee-table tr:nth-child(even) td { background: var(--off-white); }
.fee-table tr:hover td           { background: rgba(243,156,18,0.05); }

.country-sidebar    { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}
.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}
.quick-facts { display: flex; flex-direction: column; gap: 12px; }
.fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding: 10px 0;
    border-bottom: 1px dashed var(--light-gray);
}
.fact-row:last-child { border-bottom: none; }
.fact-label  { color: var(--text-light); }
.fact-value  { font-weight: 600; color: var(--navy); }

/* ── 20. ABOUT PAGE ──────────────────────────────────────── */
/* ── ADD THESE UNDER SECTION 20 (About Page) IN style.css ── */

.about-stats-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}
.about-stat-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
}
.about-stat-chip-icon {
    width: 42px;
    height: 42px;
    background: rgba(243,156,18,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-value-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.about-value-card:hover {
    background: rgba(243,156,18,.08);
    border-color: rgba(243,156,18,.25);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-badge {
    position: absolute;
    bottom: 32px; left: -24px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-orange);
    text-align: center;
}
.about-badge .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.about-badge .label { font-size: 0.78rem; opacity: 0.9; }

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.mv-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
}
.mv-card.mission          { background: var(--navy); }
.mv-card.vision           { background: var(--off-white); }
.mv-card.mission h3       { color: var(--orange); }
.mv-card.vision  h3       { color: var(--navy); }
.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.mv-card.mission p        { color: rgba(255,255,255,0.75); }
.mv-card.vision  p        { color: var(--text-light); }
.mv-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.mv-card.vision  .mv-icon { background: rgba(10,61,98,0.08); }
.mv-icon i                { font-size: 1.4rem; }
.mv-card.mission .mv-icon i { color: var(--orange); }
.mv-card.vision  .mv-icon i { color: var(--navy); }

.director-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}
.director-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.director-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.director-title  { color: var(--orange); font-weight: 600; margin-bottom: 20px; }
.director-quote {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.9;
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin: 20px 0;
}

/* ── 21. GALLERY PAGE ────────────────────────────────────── */
.gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}
.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,61,98,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 1.8rem; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img    { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    border: none;
}
.lightbox-close:hover { background: var(--orange); }

/* ── 22. BLOG PAGE ───────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-category {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.blog-card-meta i { color: var(--orange); }
.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-body h3 a       { color: inherit; transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--orange); }
.blog-card-body p          { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    display: flex; align-items: center; gap: 5px;
    transition: var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ── 23. CONTACT PAGE ────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(243,156,18,0.08);
    border-radius: 50%;
}
.contact-info-card h3              { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; }
.contact-info-card > p             { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-details                   { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item               { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(243,156,18,0.12);
    border: 1px solid rgba(243,156,18,0.25);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon i             { color: var(--orange); }
.contact-detail-text strong        { display: block; color: var(--white); margin-bottom: 3px; }
.contact-detail-text a,
.contact-detail-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    display: block;
    transition: var(--transition);
}
.contact-detail-text a:hover       { color: var(--orange-light); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-form-card > p { color: var(--text-light); margin-bottom: 28px; }

/* ── 24. ADMIN PANEL ─────────────────────────────────────── */
.admin-body {
    background: #f1f3f6;
    font-family: var(--font-body);
}
.admin-login-wrap {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.admin-login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.admin-login-card .logo  { justify-content: center; margin-bottom: 32px; }
.admin-login-card h2     { font-family: var(--font-display); color: var(--navy); text-align: center; margin-bottom: 8px; }
.admin-login-card > p    { text-align: center; color: var(--text-light); margin-bottom: 28px; font-size: 0.9rem; }

.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: var(--navy-dark);
    position: fixed;
    left: 0; top: 0; bottom: 0;
    padding: 24px 0;
    overflow-y: auto;
    z-index: 100;
    transition: var(--transition);
}
.admin-sidebar .logo { padding: 0 24px; margin-bottom: 32px; }
.sidebar-nav         { list-style: none; }
.sidebar-nav li a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 24px;
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
    text-decoration: none;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border-left-color: var(--orange);
}
.sidebar-nav li a i                     { width: 18px; color: rgba(255,255,255,0.4); font-size: 0.95rem; }
.sidebar-nav li a:hover i,
.sidebar-nav li a.active i              { color: var(--orange); }

.admin-main    { margin-left: 260px; padding: 32px; min-height: 100vh; }
.admin-topbar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.admin-topbar h1 { font-size: 1.2rem; color: var(--navy); }

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.admin-stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center; gap: 16px;
}
.admin-stat-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.admin-stat-icon.blue   { background: rgba(10,61,98,0.1); }
.admin-stat-icon.orange { background: rgba(243,156,18,0.1); }
.admin-stat-icon.green  { background: rgba(39,174,96,0.1); }
.admin-stat-icon.purple { background: rgba(142,68,173,0.1); }
.admin-stat-icon.blue   i { color: var(--navy); }
.admin-stat-icon.orange i { color: var(--orange); }
.admin-stat-icon.green  i { color: #27ae60; }
.admin-stat-icon.purple i { color: #8e44ad; }
.admin-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}
.admin-stat-label { font-size: 0.82rem; color: var(--text-light); }

.admin-table-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.admin-table-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-gray);
    display: flex; align-items: center; justify-content: space-between;
}
.admin-table-header h3 { font-size: 1rem; color: var(--navy); }
.admin-table           { width: 100%; border-collapse: collapse; }
.admin-table th {
    background: var(--off-white);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.admin-table td {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--light-gray);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td      { background: rgba(243,156,18,0.03); }

.status-badge     { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.status-new       { background: rgba(52,152,219,0.1);  color: #2980b9; }
.status-contacted { background: rgba(243,156,18,0.1);  color: var(--orange-dark); }
.status-converted { background: rgba(39,174,96,0.1);   color: #27ae60; }
.status-closed    { background: rgba(149,165,166,0.1); color: #7f8c8d; }

/* ── 25. WHATSAPP FLOAT + SCROLL TOP ────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float i { color: var(--white); font-size: 1.5rem; }
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 74px;
}

.scroll-top {
    position: fixed;
    bottom: 100px; right: 28px;
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: none;
    cursor: pointer;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--orange); transform: translateY(-2px); }

/* ── 26. FOOTER ──────────────────────────────────────────── */
.site-footer .footer-top {
    background: #071e2e;
    padding: 80px 0 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.8;
    margin: 20px 0 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(243,156,18,0.3);
}
.footer-col ul li          { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.footer-col ul li a:hover  { color: var(--orange-light); padding-left: 4px; }
.footer-col ul li a i      { color: var(--orange); font-size: 0.7rem; }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}
.contact-list li i          { color: var(--orange); margin-top: 3px; flex-shrink: 0; font-size: 1.2rem; /* increase this value */}
.contact-list li a          { color: rgba(255,255,255,0.55); transition: var(--transition); text-decoration: none; }
.contact-list li a:hover    { color: var(--orange-light); }

.footer-bottom { background: #050f19; padding: 20px 0; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 10px;
}

/* ── 27. ALERTS & MESSAGES ───────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
}
.alert-success {
    background: rgba(39,174,96,0.1);
    border: 1px solid rgba(39,174,96,0.3);
    color: #27ae60;
}
.alert-error {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
}

/* Info / notice boxes */
.info-box {
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: flex; gap: 14px; align-items: flex-start;
    margin: 20px 0;
}
.info-box.info    { background: rgba(52,152,219,0.08);  border: 1px solid rgba(52,152,219,0.25); }
.info-box.warning { background: rgba(243,156,18,0.08);  border: 1px solid rgba(243,156,18,0.25); }
.info-box.success { background: rgba(39,174,96,0.08);   border: 1px solid rgba(39,174,96,0.25); }
.info-box i       { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.info-box.info    i { color: #2980b9; }
.info-box.warning i { color: var(--orange); }
.info-box.success i { color: #27ae60; }
.info-box p { font-size: 0.9rem; line-height: 1.7; color: var(--text); margin: 0; }

/* ── 28. PAGINATION ──────────────────────────────────────── */
.pagination {
    display: flex; gap: 6px; justify-content: center;
    margin-top: 48px; flex-wrap: wrap;
}
.page-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 600;
    border: 1.5px solid var(--light-gray);
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}
.page-link:hover        { border-color: var(--orange); color: var(--orange); }
.page-link.active       { background: var(--orange); border-color: var(--orange); color: var(--white); }
.page-link.disabled     { opacity: 0.4; pointer-events: none; }

/* ── 29. TABS ────────────────────────────────────────────── */
.tab-buttons {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.tab-btn:hover         { color: var(--navy); }
.tab-btn.active        { color: var(--orange); border-bottom-color: var(--orange); }
.tab-pane              { display: none; }
.tab-pane.active       { display: block; }

/* ── 30. STICKY MOBILE CTA ───────────────────────────────── */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 10px 16px;
    z-index: 990;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }

/* ── 31. COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    padding: 16px 24px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { flex: 1; font-size: 0.85rem; line-height: 1.6; margin: 0; }
.cookie-banner a { color: var(--orange-light); }
.cookie-banner-actions { display: flex; gap: 10px; }

/* ── 32. ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-fade-up    { animation: fadeInUp    0.7s ease forwards; }
.animate-fade-left  { animation: fadeInLeft  0.7s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.7s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll reveal (IntersectionObserver adds .visible) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}