/* ============================================
   EURO STEP ZONE - Modern Stylesheet
   Logo-derived palette: Navy Blue + Red + Gold
   Primary #15296b · Accent #c41e3a · Gold #fccd30
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    /* Logo-derived palette: Navy Blue (text/globe) + Red (outer ring) + Gold (highlights) */
    --primary: #15296b;          /* logo deep royal blue */
    --primary-light: #2a3d8c;
    --primary-dark: #0c1845;
    --accent: #c41e3a;           /* logo signature red */
    --accent-dark: #9c142b;
    --accent-light: #e63b56;
    --gold: #fccd30;             /* tertiary highlight */
    --gold-dark: #e6b800;
    --text-dark: #15296b;
    --text-light: #5a6178;
    --bg-light: #f7f9fc;
    --bg-cream: #fdfaf3;
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(21, 41, 107, 0.07);
    --shadow-md: 0 10px 30px rgba(21, 41, 107, 0.10);
    --shadow-lg: 0 20px 50px rgba(21, 41, 107, 0.20);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TOP BAR ---------- */
.topbar {
    background: var(--primary);
    color: #c5d2e3;
    font-size: 14px;
    padding: 10px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar a { color: #c5d2e3; transition: var(--transition); }
.topbar a:hover { color: var(--accent); }
.topbar .info-list {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}
.topbar .info-list i { color: var(--accent); margin-right: 6px; }
.topbar .socials a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    margin-left: 6px;
}
.topbar .socials a:hover { background: var(--accent); color: var(--white); }

/* ---------- HEADER / NAV ---------- */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo img {
    height: 68px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(21, 41, 107, 0.12));
    transition: transform 0.4s ease;
}
.logo:hover img { transform: scale(1.05); }
.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    padding: 10px 14px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--primary);
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after { transform: scaleX(1); }

.has-dropdown > a::before { content: '\f107'; font-family: 'Font Awesome 6 Free', 'FontAwesome'; font-weight: 900; font-size: 11px; margin-left: 6px; order: 2; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    border-top: 3px solid var(--accent);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    padding: 10px 22px;
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}
.dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.30);
}
.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(21, 41, 107, 0.30);
}
.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-dark {
    background: var(--primary);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--accent);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--primary);
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(21,41,107,0.92) 0%, rgba(12,24,69,0.88) 50%, rgba(156,20,43,0.75) 100%),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 110px 0 130px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(252, 205, 48, 0.18), transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgba(196,30,58,0.15);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(196,30,58,0.3);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 700;
}
.hero h1 .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0; bottom: 4px;
    width: 100%; height: 8px;
    background: rgba(252, 205, 48, 0.30);
    z-index: -1;
}
.hero p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #d6e0f0;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    height: 420px;
}
.hero-visual .float-card {
    position: absolute;
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 6s ease-in-out infinite;
}
.hero-visual .card-1 { top: 30px; left: 0; animation-delay: 0s; }
.hero-visual .card-2 { top: 180px; right: 0; animation-delay: 1.5s; }
.hero-visual .card-3 { bottom: 20px; left: 60px; animation-delay: 3s; }
.float-card i {
    width: 50px; height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.float-card strong { display: block; font-size: 15px; }
.float-card span { font-size: 13px; color: var(--text-light); }

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

/* ---------- SECTION HEADER ---------- */
section { padding: 90px 0; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head .tag {
    display: inline-block;
    background: rgba(196,30,58,0.15);
    color: var(--accent-dark);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-head h2 span { color: var(--accent-dark); }
.section-head p { color: var(--text-light); font-size: 16px; }

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}
.service-card {
    --card-accent: var(--accent);
    background: var(--white);
    padding: 44px 32px 36px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(21, 41, 107, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21, 41, 107, 0.06);
    isolation: isolate;
    counter-increment: service-counter;
}
/* number watermark */
.service-card::after {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 18px; right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--card-accent);
    opacity: 0.08;
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}
.service-card:hover::after {
    opacity: 0.15;
    transform: scale(1.15) translate(-4px, 4px);
}
/* diagonal hover overlay */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 24px;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(21, 41, 107, 0.25);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }

.services-grid { counter-reset: service-counter; }

/* color variations per card — logo-derived palette */
.service-card:nth-child(1) { --card-accent: #c41e3a; }  /* logo red */
.service-card:nth-child(2) { --card-accent: #1e3a8a; }  /* royal blue */
.service-card:nth-child(3) { --card-accent: #d97706; }  /* warm gold */
.service-card:nth-child(4) { --card-accent: #0891b2; }  /* teal (globe) */
.service-card:nth-child(5) { --card-accent: #7c3aed; }  /* deep purple */
.service-card:nth-child(6) { --card-accent: #9c142b; }  /* burgundy */

.service-icon {
    width: 78px; height: 78px;
    background: var(--card-accent);
    color: var(--white);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin-bottom: 26px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 28px -10px var(--card-accent),
                inset 0 -8px 0 0 rgba(0, 0, 0, 0.08),
                inset 0 8px 0 0 rgba(255, 255, 255, 0.18);
    z-index: 2;
}
/* icon glow ring */
.service-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed var(--card-accent);
    border-radius: 26px;
    opacity: 0;
    transition: all 0.6s ease;
    animation: spin 12s linear infinite;
    animation-play-state: paused;
}
.service-card:hover .service-icon {
    transform: rotate(-12deg) scale(1.08);
    border-radius: 50%;
}
.service-card:hover .service-icon::before {
    opacity: 0.5;
    inset: -10px;
    animation-play-state: running;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card h3 {
    font-size: 21px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}
.service-card p {
    color: var(--text-light);
    font-size: 14.5px;
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}
.service-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(21, 41, 107, 0.04);
    position: relative;
    z-index: 2;
}
.service-card .read-more i { transition: transform 0.4s ease; }
.service-card .read-more:hover {
    background: var(--card-accent);
    color: var(--white);
    gap: 14px;
}
.service-card .read-more:hover i { transform: translateX(3px); }

/* hover: flip text colors to white */
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255, 255, 255, 0.8); }
.service-card:hover .read-more {
    background: var(--card-accent);
    color: var(--white);
}
.service-card:hover::after { color: var(--card-accent); opacity: 0.25; }

/* ---------- ABOUT (Welcome section) ---------- */
.about-section { background: var(--bg-light); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-img-wrap .stat-card {
    position: absolute;
    bottom: -30px; right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius);
    box-shadow: 0 18px 36px rgba(196, 30, 58, 0.35);
    text-align: center;
    border: 3px solid var(--white);
}
.stat-card strong {
    display: block;
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.stat-card span { font-size: 13px; font-weight: 600; }

.about-content .tag {
    display: inline-block;
    background: rgba(196,30,58,0.18);
    color: var(--accent-dark);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-content .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0;
}
.about-content .features li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; font-size: 15px;
}
.about-content .features li i {
    color: var(--accent-dark);
    background: rgba(196,30,58,0.15);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
}

/* ---------- MISSION / VISION ---------- */
.mv-section { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.mv-section::before {
    content: '';
    position: absolute;
    top: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(252, 205, 48, 0.10), transparent 70%);
    border-radius: 50%;
}
.mv-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.10), transparent 70%);
    border-radius: 50%;
}
.mv-section .section-head h2 { color: var(--white); }
.mv-section .section-head p { color: #c5d2e3; }
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}
.mv-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
}
.mv-card:hover {
    background: rgba(196,30,58,0.08);
    border-color: var(--accent);
    transform: translateY(-6px);
}
.mv-card .mv-icon {
    width: 70px; height: 70px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 10px 24px rgba(196, 30, 58, 0.4);
}
.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--gold);
}
.mv-card p { color: #d6e0f0; font-size: 15px; }

/* ---------- DIRECTOR ---------- */
.director-section { background: var(--bg-light); }
.director-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.director-img {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: var(--white);
    text-align: center;
    position: relative;
}
.director-img .quote-icon {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 10px;
}
.director-img h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 6px;
}
.director-img span { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.director-content blockquote {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.85;
    border-left: 4px solid var(--accent);
    padding-left: 22px;
    font-style: italic;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--white); }
.testi-wrap { position: relative; max-width: 1100px; margin: 0 auto; }
.testi-track-mask { overflow: hidden; }
.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 30px;
    background: var(--bg-light);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}
.testi-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.testi-card .stars {
    color: var(--gold-dark);
    margin-bottom: 16px;
    font-size: 14px;
}
.testi-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}
.testi-card .testi-text {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 22px;
    min-height: 140px;
}
.testi-author {
    display: flex; align-items: center; gap: 14px;
    border-top: 1px solid #eaeaea;
    padding-top: 18px;
}
.testi-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.testi-author strong { display: block; color: var(--primary); font-size: 15px; }
.testi-author span { font-size: 12px; color: var(--text-light); }

.testi-nav {
    display: flex; justify-content: center; gap: 12px;
    margin-top: 36px;
}
.testi-nav button {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}
.testi-nav button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(21,41,107,0.1), transparent 70%);
    border-radius: 50%;
}
.cta-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.cta-strip h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    line-height: 1.2;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ---------- COUNTRIES STRIP ---------- */
.countries-section {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #eef2f8 100%);
    overflow: hidden;
    position: relative;
}
.countries-marquee {
    position: relative;
    overflow: hidden;
    padding: 30px 0 10px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.countries-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: countryScroll 35s linear infinite;
}
.countries-marquee:hover .countries-track { animation-play-state: paused; }
@keyframes countryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.country-card {
    flex: 0 0 220px;
    background: var(--white);
    padding: 24px 22px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(21, 41, 107, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(21, 41, 107, 0.04);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.country-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.country-card:hover::before { transform: scaleX(1); }
.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(21, 41, 107, 0.15);
    border-color: transparent;
}
.country-card .flag-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: relative;
}
.country-card .flag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.country-card:hover .flag-img img { transform: scale(1.08); }
.country-card .country-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.country-card strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    display: block;
}
.country-card .sub {
    color: var(--text-light);
    font-size: 12.5px;
    margin-top: 3px;
    display: block;
}
.country-card .arrow-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s ease;
    font-size: 13px;
    flex-shrink: 0;
}
.country-card:hover .arrow-btn {
    background: var(--accent);
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .country-card { flex: 0 0 180px; padding: 18px 16px; }
    .country-card strong { font-size: 14px; }
    .countries-track { gap: 16px; animation-duration: 28s; }
}

/* ---------- WHY US ---------- */
.why-section { padding: 90px 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.why-card {
    text-align: center;
    padding: 30px 22px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: var(--transition);
}
.why-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
}
.why-card .why-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}
.why-card h4 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.why-card:hover h4 { color: var(--gold); }
.why-card p { font-size: 14px; color: var(--text-light); transition: var(--transition); }
.why-card:hover p { color: #c5d2e3; }

/* ---------- PAGE BANNER ---------- */
.page-banner {
    background: linear-gradient(135deg, rgba(21,41,107,0.92) 0%, rgba(12,24,69,0.88) 50%, rgba(156,20,43,0.78) 100%),
        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80') center/cover;
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}
.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 12px;
}
.breadcrumb {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #d9def0;
    font-size: 14px;
}
.breadcrumb a { color: var(--gold); font-weight: 600; }

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
}
.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
}
.contact-info h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; color: var(--accent); }
.contact-info p { color: #c5d2e3; margin-bottom: 30px; font-size: 14px; }
.contact-info ul li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
}
.contact-info ul li:last-child { border-bottom: none; }
.contact-info ul li i {
    width: 42px; height: 42px;
    background: var(--accent);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(196, 30, 58, 0.3);
}
.contact-info ul li strong { display: block; color: var(--white); margin-bottom: 4px; }
.contact-info ul li span { color: #c5d2e3; font-size: 14.5px; }

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form h3 { font-family: 'Playfair Display', serif; color: var(--primary); margin-bottom: 8px; }
.contact-form p { color: var(--text-light); margin-bottom: 24px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e6ed;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14.5px;
    transition: var(--transition);
    background: #fafbfd;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196,30,58,0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-msg { margin-top: 10px; font-size: 14px; }
.form-msg.success { color: #15803d; }
.form-msg.error { color: #b91c1c; }

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21,41,107,0.85), transparent 60%);
    display: flex; align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 600; }

/* ---------- PROCESS / ENROLLMENT ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    counter-reset: step;
}
.process-step {
    background: var(--white);
    padding: 36px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}
.process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: -18px; right: 20px;
    background: var(--accent);
    color: var(--white);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 18px rgba(196, 30, 58, 0.4);
}
.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.process-step .step-icon {
    width: 60px; height: 60px;
    background: rgba(196,30,58,0.15);
    color: var(--accent-dark);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.process-step h4 { color: var(--primary); margin-bottom: 10px; font-size: 17px; }
.process-step p { color: var(--text-light); font-size: 14px; }

/* ---------- FOOTER ---------- */
.footer {
    background-color: #f7f9fc;
    background-image:
        radial-gradient(ellipse 600px 400px at top right, rgba(196, 30, 58, 0.10), transparent),
        radial-gradient(ellipse 600px 400px at bottom left, rgba(21, 41, 107, 0.06), transparent);
    color: var(--text-light);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(21, 41, 107, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.7;
}
.footer > .container { position: relative; z-index: 2; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-col h4 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 2px;
}
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 40px; bottom: 1px;
    width: 6px; height: 6px;
    background: var(--accent-dark);
    border-radius: 50%;
    opacity: 0.6;
}
.footer-col img {
    height: 96px;
    width: auto;
    margin-bottom: 22px;
    filter: drop-shadow(0 8px 22px rgba(21, 41, 107, 0.15));
}
.footer-col p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-light);
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul a {
    color: var(--text-dark);
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.footer-col ul a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-dark);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.footer-col ul a:hover {
    color: var(--accent-dark);
    transform: translateX(4px);
}
.footer-col ul a:hover::before {
    opacity: 1;
    box-shadow: 0 0 12px rgba(196, 30, 58, 0.6);
    transform: scale(1.3);
}
.footer-contact li {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}
.footer-contact li i {
    width: 36px; height: 36px;
    background: rgba(196, 30, 58, 0.18);
    border: 1px solid rgba(196, 30, 58, 0.35);
    color: var(--accent-dark);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 13px;
}
.footer-social {
    display: flex; gap: 10px;
    margin-top: 22px;
}
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(21, 41, 107, 0.08);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.35s ease;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(21, 41, 107, 0.06);
}
.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(196, 30, 58, 0.6);
}
.footer-bottom {
    border-top: 1px solid rgba(21, 41, 107, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 13.5px;
    color: var(--text-light);
    background: var(--white);
    position: relative;
    z-index: 2;
}
.footer-bottom span#year { color: var(--accent-dark); font-weight: 700; }

/* ---------- SCROLL TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    border: none;
    font-size: 18px;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--primary); color: var(--white); }

/* ---------- WHATSAPP FLOATING ---------- */
.wa-float {
    position: fixed;
    bottom: 90px; right: 30px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .director-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero { padding: 80px 0 100px; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 70px 0; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li { width: 100%; border-bottom: 1px solid #f0f0f0; }
    .nav-menu > li > a { padding: 14px 0; width: 100%; }
    .dropdown {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .nav-cta { display: none; }
    .topbar .info-list { gap: 14px; font-size: 13px; }
    .topbar .socials { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .testi-card { flex: 0 0 calc(100% - 0px); margin-right: 20px; }
    .cta-strip .container { text-align: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
    .about-img-wrap .stat-card { bottom: -20px; right: 10px; padding: 16px 20px; }
    .stat-card strong { font-size: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero { padding: 60px 0 80px; }
    .hero-actions .btn { padding: 11px 22px; font-size: 13px; }
    .service-card { padding: 32px 24px; }
    .contact-info, .contact-form { padding: 28px 22px; }
}
