/* =====================================================
   EDUCATOR STUDY ABROAD — app.css (Part 1: Variables, Base, Layout)
   ===================================================== */

/* Google Fonts are loaded in layout */
:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --secondary: #2563eb;
    --accent: #f59e0b;
    --danger: #ef4444;
    --success: #10b981;
    --dark: #0f0e1a;
    --dark-2: #1a1830;
    --dark-3: #252340;
    --text: #1e1b2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-light: #f8f7ff;
    --white: #ffffff;
    --footer-bg: #0f0e1a;

    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow: 0 4px 24px rgba(124,58,237,0.10);
    --shadow-lg: 0 8px 48px rgba(124,58,237,0.18);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);

    --nav-height: 120px;
    --topbar-height: 40px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    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; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ===================== TYPOGRAPHY ===================== */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,58,237,0.45);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===================== ALERTS ===================== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.field-error { color: var(--danger); font-size: 0.8rem; margin-top: 0.25rem; display: block; }

/* ===================== IMAGE PLACEHOLDER ===================== */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    border-radius: var(--radius);
    gap: 0.5rem;
}
.image-placeholder p { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ===================== PRELOADER ===================== */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1e1b4b, #1a1830);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.plane-icon { font-size: 3.5rem; animation: planeBounce 1s ease-in-out infinite alternate; }
.preloader-text {
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    font-family: var(--font-display);
}
@keyframes planeBounce {
    from { transform: translateY(0) rotate(-15deg); }
    to   { transform: translateY(-15px) rotate(-15deg); }
}

/* ===================== TOPBAR ===================== */
.topbar {
    background: linear-gradient(90deg, #1e1b4b, #2d2b6b);
    color: rgba(255,255,255,0.85);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    position: relative;
    z-index: 100;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-left a, .topbar-right a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--white); }
.topbar-text { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 0.5rem; }
.social-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.3s, background 0.3s;
    color: var(--white);
}
.social-icon:hover { transform: translateY(-3px) scale(1.1); }
.social-icon.facebook { background: #1877f2; }
.social-icon.youtube  { background: #ff0000; }
.social-icon.tiktok   { background: #010101; }
.social-icon.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

@media (max-width: 768px) {
    .topbar { height: auto; padding: 8px 0; }
    .topbar-right { display: none; }
    .topbar .container { justify-content: center; }
    .topbar-left { gap: 0.5rem 1rem; flex-wrap: wrap; justify-content: center; text-align: center; }
    .topbar-left a { font-size: 0.75rem; }
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124,58,237,0.1);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 30px rgba(124,58,237,0.12);
}
.navbar .container { display: flex; align-items: center; gap: 2rem; height: 100%; }
.navbar-brand { flex-shrink: 0; display: flex; align-items: center; }
.navbar-brand img { height: 110px; width: auto; max-width: 100%; object-fit: contain; }
.logo-text { display: flex; align-items: center; gap: 0.65rem; }
.logo-icon { font-size: 1.8rem; line-height: 1; }
.logo-main {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.logo-sub { display: block; font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }

/* Nav Menu */
.nav-menu { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary);
    background: rgba(124,58,237,0.07);
}
.nav-item.active .nav-link { font-weight: 600; }
.dropdown-icon { font-size: 0.65rem; transition: transform 0.3s; }
.nav-item.has-dropdown:hover .dropdown-icon { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(124,58,237,0.1);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 600;
}
.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover { background: rgba(124,58,237,0.08); color: var(--primary); }
.dropdown-menu li a i { width: 16px; color: var(--primary); }
.flag-icon { font-size: 1rem; }
.dropdown-divider hr { border: none; border-top: 1px solid var(--border); margin: 0.25rem 0; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-actions-mobile { display: none; }
.navbar.scrolled .btn-outline-white { border-color: var(--primary); color: var(--primary); }
.navbar.scrolled .btn-outline-white:hover { background: var(--primary); color: var(--white); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 490;
}
.nav-overlay.active { display: block; }

/* ===================== PAGE HERO ===================== */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.page-hero-sm { min-height: 280px; padding: 4rem 0 3rem; }
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { color: var(--white); max-width: 720px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; font-size: 1.05rem; }
.floating-shapes { position: absolute; inset: 0; pointer-events: none; }
.floating-shapes .shape {
    position: absolute;
    font-size: 3rem;
    opacity: 0.08;
    animation: floatShape 6s ease-in-out infinite;
}
.floating-shapes .shape:nth-child(1) { top: 20%; left: 70%; animation-delay: 0s; }
.floating-shapes .shape:nth-child(2) { top: 60%; left: 85%; animation-delay: 2s; font-size: 2rem; }
.floating-shapes .shape:nth-child(3) { top: 30%; left: 55%; animation-delay: 4s; font-size: 2.5rem; }
@keyframes floatShape {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* Blog hero specifics */
.blog-hero-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
}
.blog-hero-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.blog-hero-meta i { margin-right: 0.35rem; }

/* ===================== BACK TO TOP ===================== */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 400;
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover { transform: translateY(-4px); }

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #1e1b4b;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide.active .hero-bg {
    transform: scale(1.15);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,14,26,0.85) 0%, rgba(30,27,75,0.7) 50%, rgba(37,99,235,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 2rem 0;
}
.hero .container { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
    height: 100%;
    animation: floatUpDown 6s ease-in-out infinite;
}
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.hero-big-circle {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, rgba(37,99,235,0.1) 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: pulseGlow 3s infinite alternate;
}
.hero-big-icon {
    font-size: 9rem;
    color: var(--white);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    transform: rotate(-15deg);
}
/* Floating UI Cards inside graphic */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    z-index: 5;
}
.hero-float-card i {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; justify-content: center; align-items: center;
    font-size: 1.1rem;
}
.fc-top-right { top: -20px; right: -80px; animation: floatBadge 5s ease-in-out infinite 1s; }
.fc-bottom-left { bottom: -20px; left: -80px; animation: floatBadge 5s ease-in-out infinite 2s; }
@media (max-width: 992px) { .hero-graphic { display: none; } }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}
.hero-badge-item i { color: var(--accent); }

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.05); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; }
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    transition: var(--transition);
}
.dot.active { background: var(--white); transform: scale(1.3); }

/* Flying Plane */
.flying-plane {
    position: absolute;
    z-index: 5;
    width: 80px;
    pointer-events: none;
    filter: drop-shadow(0 4px 20px rgba(255,255,255,0.3));
}
.plane-trail {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    border-radius: 2px;
}

/* ===================== STATS ===================== */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 60%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(124,58,237,0.15);
}
.stat-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(37,99,235,0.2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--primary-light);
    transition: transform 0.4s ease;
}
.stat-card:hover .stat-icon { transform: scale(1.15) rotate(10deg); }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.875rem; font-weight: 500; }

/* ===================== ABOUT ===================== */
.about-section {}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 460px;
}
.about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}
.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite, pulseGlow 2s infinite;
}
.exp-number { display: block; font-size: 2.5rem; font-weight: 900; font-family: var(--font-display); line-height: 1; }
.exp-text { font-size: 0.78rem; opacity: 0.9; margin-top: 0.25rem; }
.about-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.about-feature { display: flex; align-items: center; gap: 0.65rem; font-weight: 500; }
.about-feature i { color: var(--success); font-size: 1rem; }
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================== PROCESS ===================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
    border: 1px solid rgba(124,58,237,0.08);
    transition: all 0.4s ease;
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(124,58,237,0.1); }
.process-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(124,58,237,0.08);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
}
.process-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}
.process-card:hover .process-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-card p { font-size: 0.875rem; color: var(--text-muted); }
.process-arrow {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    color: var(--primary-light);
    font-size: 1.2rem;
    z-index: 2;
}
.process-card:last-child .process-arrow { display: none; }

/* ===================== DESTINATIONS / COUNTRIES ===================== */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.country-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.country-card-image { position: relative; height: 200px; overflow: hidden; }
.country-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.country-card:hover .country-card-image img { transform: scale(1.08); }
.country-placeholder { height: 200px; border-radius: 0; }
.country-flag-big { font-size: 4rem; }
.placeholder-note { font-size: 0.7rem; color: var(--text-muted); }
.country-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.country-flag { font-size: 1.5rem; }
.country-card-body { padding: 1.25rem; }
.country-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.country-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.visa-badge {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    color: #166534;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Countries Full Grid (Countries page) */
.countries-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.country-full-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.country-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.country-full-image { position: relative; height: 220px; }
.country-full-image img { width: 100%; height: 100%; object-fit: cover; }
.country-overlay-full {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,14,26,0.8) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
}
.big-flag { font-size: 2.5rem; }
.country-overlay-full h3 { font-size: 1.4rem; color: var(--white); margin-top: 0.25rem; }
.country-full-body { padding: 1.5rem; }
.country-stats-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.cstat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); background: var(--bg-light); padding: 0.3rem 0.75rem; border-radius: 999px; }
.cstat i { color: var(--primary); }
.cstat.visa-success { background: #dcfce7; color: #166534; }
.cstat.visa-success i { color: #166534; }
.country-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.highlight-tag {
    background: rgba(124,58,237,0.08);
    color: var(--primary);
    font-size: 0.77rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    display: flex; align-items: center; gap: 0.3rem;
}

/* Country Detail Page */
.country-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.country-detail-main h2 { margin-bottom: 1rem; }
.country-detail-main h3 { margin-bottom: 1rem; color: var(--primary); }
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.highlight-item { display: flex; align-items: center; gap: 0.65rem; background: var(--bg-light); padding: 0.75rem 1rem; border-radius: var(--radius); }
.highlight-item i { color: var(--success); }
.uni-list { display: flex; flex-direction: column; gap: 0.5rem; }
.uni-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: var(--bg-light); border-radius: var(--radius); font-weight: 500; }
.uni-item i { color: var(--primary); }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.sidebar-info { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-info li { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.sidebar-info li:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.info-value { font-weight: 600; }
.visa-success-text { color: #166534; background: #dcfce7; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.82rem; }
.country-links-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.country-link-pill {
    background: rgba(124,58,237,0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}
.country-link-pill:hover { background: var(--primary); color: var(--white); }

/* ===================== SUCCESS STORIES ===================== */
.success-carousel { position: relative; overflow: hidden; margin-top: 2rem; }
.success-track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.success-card {
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.06);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.success-card:hover { transform: translateY(-6px); }
.success-card-image { position: relative; height: 220px; overflow: hidden; background: var(--bg-light); }
.success-card-image img { width: 100%; height: 100%; object-fit: cover; }
.student-placeholder { height: 220px; border-radius: 0; font-size: 3rem; }
.visa-stamp {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}
.success-card-body { padding: 1.25rem; text-align: center; }
.success-card-body h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.student-info { font-size: 0.825rem; color: var(--text-muted); }
.student-country { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-top: 0.35rem; }
.student-country i { margin-right: 0.3rem; }
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}
.carousel-btn:hover { background: var(--primary); color: var(--white); }
.carousel-prev { left: -0.5rem; }
.carousel-next { right: -0.5rem; }

/* ===================== PARTNERS TICKER ===================== */
.partners-ticker-wrap { overflow: hidden; position: relative; }
.partners-ticker-wrap::before,
.partners-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}
.partners-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.partners-ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.partners-ticker { display: flex; gap: 2rem; animation: ticker 25s linear infinite; }
.partners-ticker:hover { animation-play-state: paused; }
.partner-item { flex-shrink: 0; }
.university-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-width: 180px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}
.university-logo-placeholder:hover { background: rgba(124,58,237,0.06); color: var(--primary); border-color: var(--primary-light); }
.university-logo-placeholder i { font-size: 1.5rem; color: var(--primary); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================== FAQ ===================== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.faq-left { position: sticky; top: calc(var(--nav-height) + 2rem); }
.faq-right { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--white);
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; color: var(--primary); font-size: 0.85rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 1.25rem 1.1rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }

/* FAQ Page */
.faq-page-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.faq-category { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.faq-category-title {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 1.1rem; padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    color: var(--primary);
    border-bottom: 1px solid var(--border);
}
.faq-category .faq-item { border-radius: 0; border: none; border-bottom: 1px solid rgba(124,58,237,0.06); }
.faq-category .faq-item:last-child { border-bottom: none; }
.faq-cta-box {
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== BLOGS ===================== */
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.06);
    display: flex; flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { position: relative; height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-placeholder { height: 200px; border-radius: 0; font-size: 2.5rem; }
.blog-category-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-meta i { margin-right: 0.3rem; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 0.65rem; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tag {
    background: rgba(124,58,237,0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
    transition: gap 0.2s;
}
.read-more:hover { gap: 0.65rem; }

/* Blog Filters */
.blog-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
    background: var(--bg-light);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Blog Detail */
.blog-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.blog-detail-image { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.blog-detail-content { line-height: 2; color: var(--text); }
.blog-detail-content h3 { margin: 2rem 0 0.75rem; color: var(--primary); }
.blog-detail-content ul { padding-left: 1.5rem; margin: 0.75rem 0; }
.blog-detail-content ul li { margin-bottom: 0.5rem; }
.blog-detail-content a { color: var(--primary); text-decoration: underline; }
.blog-detail-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-share h4 { margin-bottom: 1rem; }
.share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.share-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: transform 0.2s, opacity 0.2s;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter  { background: #000; }
.share-btn.whatsapp { background: #25d366; }
.blog-sidebar .sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.recent-post { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-info a { font-size: 0.82rem; font-weight: 600; display: block; margin-bottom: 0.25rem; color: var(--text); }
.recent-post-info a:hover { color: var(--primary); }
.recent-post-info span { font-size: 0.75rem; color: var(--text-muted); }
.sidebar-apply { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); }
.sidebar-apply h3 { color: var(--white); }
.sidebar-apply p { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.sidebar-apply .btn-white { width: 100%; justify-content: center; }

/* ===================== SERVICES ===================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 70px; height: 70px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 { font-size: 1rem; margin-bottom: 0.65rem; }
.service-card p { font-size: 0.845rem; color: var(--text-muted); }
.service-hover-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.service-card:hover .service-hover-line { transform: scaleX(1); }

/* Why Choose Us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-card > i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.why-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.845rem; color: var(--text-muted); }

/* ===================== ABOUT PAGE ===================== */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.08);
    transition: transform 0.3s;
}
.mv-card:hover { transform: translateY(-4px); }
.mv-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.1));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1.25rem;
}
.mv-card h3 { margin-bottom: 0.75rem; }
.mv-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ===================== TEAM ===================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 1.5rem;
    justify-content: center;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(124,58,237,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-image { position: relative; height: 280px; overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-placeholder { height: 280px; border-radius: 0; font-size: 3rem; }
.team-social {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; justify-content: center; gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(15,14,26,0.85), transparent);
    transform: translateY(100%);
    transition: transform 0.3s;
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    transition: background 0.2s;
}
.team-social a:hover { background: var(--primary); }
.team-card-body { padding: 1.5rem; text-align: center; }
.team-role { color: var(--primary); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.825rem; color: var(--text-muted); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-card {
    display: flex; gap: 1.25rem; align-items: flex-start;
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--primary-light); transform: translateX(4px); }
.contact-card-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1rem;
}
.contact-card h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact-card p, .contact-card a { font-size: 0.875rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(124,58,237,0.1);
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.65rem; }
.contact-form-card h3 i { color: var(--primary); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ===================== FORM STYLES ===================== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 0.4rem; }
.form-group label i { color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

/* ===================== MODAL ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,14,26,0.7);
    backdrop-filter: blur(6px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.active .modal-container { transform: scale(1) translateY(0); }
.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(124,58,237,0.08);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}
.modal-close:hover { background: var(--danger); color: var(--white); }
.modal-header {
    background: linear-gradient(135deg, #1e1b4b, #7c3aed, #2563eb);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    color: var(--white);
}
.modal-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
}
.modal-header h2 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.5rem; }
.modal-header p { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.modal-body { padding: 2rem; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #7c3aed 50%, #2563eb 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-bg-animation { position: absolute; inset: 0; pointer-events: none; }
.cta-floating-plane {
    position: absolute;
    font-size: 6rem;
    opacity: 0.06;
    animation: planeFly 10s ease-in-out infinite alternate;
    top: 50%; transform: translateY(-50%);
}
@keyframes planeFly {
    from { left: 5%; }
    to   { left: 80%; }
}

/* ===================== FOOTER ===================== */
.footer { background: var(--footer-bg); }
.footer-wave { margin-bottom: -2px; line-height: 0; }
.footer-wave svg { width: 100%; }
.footer-body { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.5rem; margin-top: 0.75rem; line-height: 1.8; }
.footer-brand .logo-main { color: rgba(255,255,255,0.95); -webkit-text-fill-color: rgba(255,255,255,0.95); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 0.65rem; }
.footer-heading { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links li a i { font-size: 0.7rem; color: var(--primary-light); }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-list li i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-list li span, .footer-contact-list li a { color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.6; }
.footer-contact-list li a:hover { color: var(--white); }
.newsletter-text { color: rgba(255,255,255,0.6); font-size: 0.84rem; margin-bottom: 0.85rem; }
.newsletter-input-wrap { display: flex; }
.newsletter-input-wrap input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    font-size: 0.875rem;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input-wrap input:focus { outline: none; border-color: var(--primary); }
.newsletter-input-wrap button {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}
.newsletter-input-wrap button:hover { opacity: 0.9; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom-inner a { color: rgba(255,255,255,0.6); }
.footer-bottom-inner a:hover { color: var(--white); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-arrow { display: none; }
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-left { position: static; }
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
    .countries-full-grid { grid-template-columns: 1fr; }
    .blog-detail-grid, .country-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-menu { display: none; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 510;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    .nav-list { flex-direction: column; width: 100%; gap: 0; }
    .nav-item { width: 100%; border-bottom: 1px solid var(--border); }
    .nav-link { padding: 0.85rem 0; font-size: 1rem; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: var(--bg-light);
        border-radius: var(--radius);
        margin-bottom: 0.5rem;
        display: none;
    }
    .nav-item.has-dropdown.mob-open .dropdown-menu { display: block; }
    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    .nav-actions-mobile a, .nav-actions-mobile button { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
    .hero-actions { flex-direction: column; }
    .hero-badges { flex-direction: column; gap: 0.75rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blogs-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .services-grid, .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .share-buttons { flex-direction: column; }
    .highlights-grid { grid-template-columns: 1fr; }
    .country-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
    .footer-col.footer-brand, .footer-col:last-child { grid-column: span 2; }
    .footer-body { padding: 3rem 0; }
    .footer-heading { font-size: 0.85rem; margin-bottom: 1rem; }
    .footer-links li a, .footer-contact-list li span, .footer-contact-list li a { font-size: 0.8rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; font-size: 0.8rem; }
}

/* ===================== MAINTENANCE MODAL ===================== */
.maintenance-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 26, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.maintenance-overlay.active {
    opacity: 1;
    visibility: visible;
}
.maintenance-modal {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.maintenance-overlay.active .maintenance-modal {
    transform: translateY(0) scale(1);
}

.maint-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.maint-blob-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: maintPulse 4s infinite alternate;
}
.maint-blob-2 {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: maintPulse 5s infinite alternate-reverse;
}
@keyframes maintPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.maint-content {
    position: relative;
    z-index: 1;
}

.maint-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(124,58,237,0.2);
    position: relative;
}
.maint-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(124,58,237,0.3);
    border-radius: 50%;
    animation: spinRotate 10s linear infinite;
}
@keyframes spinRotate {
    100% { transform: rotate(360deg); }
}

.maint-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.maint-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.maint-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.maint-close-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(124,58,237,0.25);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.maint-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(124,58,237,0.35);
}

/* public/css/app.css */
.footer-logo { 
    display: block; 
}

.footer-logo img { 
    height: 100px; 
    width: auto; 
    max-width: 100%; 
    object-fit: contain; 
    filter: brightness(0) invert(1); /* Makes the logo white for the dark background */
}


.maint-dismiss-x {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    border: none;
}
.maint-dismiss-x:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    .maintenance-modal {
        padding: 2.5rem 1.25rem;
        width: 90%;
        max-width: 360px;
        margin: 0 auto;
    }
    .maint-title { font-size: 1.7rem; }
    .maint-icon-wrap { width: 70px; height: 70px; font-size: 2rem; }
}
