/*
Theme Name: Fusion Visa Consultancy
Theme URI: https://fusionvisa.com
Author: Fusion Visa Consultancy
Author URI: https://fusionvisa.com
Description: Professional visa and immigration consultancy theme. Deep navy + gold design. No page builders required.
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fusion-visa
Tags: visa, consultancy, immigration, professional, navy, gold
*/

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

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  --navy:    #0a1628;
  --navy2:   #0d1e38;
  --navy3:   #112244;
  --gold:    #c9a84c;
  --gold2:   #e0c068;
  --cream:   #f8f5ee;
  --white:   #ffffff;
  --text:    #1a2540;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --radius:  0.75rem;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; color: var(--muted); line-height: 1.75; }

/* ── Layout Utilities ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-navy2 { background: var(--navy2); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--muted) !important; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ── Section Label ────────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy3); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.75rem; }
.card-img img { width: 100%; height: 220px; object-fit: cover; }

/* ── Badge / Tag ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.badge-navy { background: rgba(10,22,40,0.08); color: var(--navy); }
.badge-green { background: rgba(34,197,94,0.12); color: #16a34a; }

/* ── Divider ──────────────────────────────────────────────────────────────── */
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0; }
.divider-center { margin: 1rem auto; }

/* ── Scroll Reveal Animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: auto; /* must not block clicks or scroll while waiting to animate */
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ── Top Info Bar ─────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.3rem 0;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
}
.top-bar a { color: rgba(255,255,255,0.7); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; }
.top-bar a:hover { color: var(--gold); }
.top-bar .whatsapp-btn {
  background: #25D366;
  color: white !important;
  padding: 0.18rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.navbar-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-logo .logo-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; color: white; line-height: 1.2; }
.navbar-logo .logo-tagline { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.68rem; color: var(--gold); line-height: 1.2; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: rgba(255,255,255,0.88);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(255,255,255,0.06); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 200;
  min-width: 680px;
  animation: fadeInDown 0.18s ease-out;
}
.nav-dropdown:hover .dropdown-panel { display: grid; grid-template-columns: 1fr 1fr 1fr; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-col { padding: 1rem 0; }
.dropdown-col + .dropdown-col { border-left: 1px solid rgba(0,0,0,0.06); }
.dropdown-heading {
  padding: 0.4rem 1rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  transition: background 0.15s;
}
.dropdown-item:hover { background: #f8f5ee; }
.dropdown-item .flag { font-size: 1.1rem; }
.dropdown-item .item-label { font-size: 0.82rem; font-weight: 600; color: var(--navy); font-family: 'Inter', sans-serif; }
.dropdown-item .item-desc { font-size: 0.72rem; color: #666; font-family: 'Inter', sans-serif; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; }
.work-grid .dropdown-item { font-size: 0.8rem; font-weight: 500; color: var(--navy); font-family: 'Inter', sans-serif; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  display: block;
  position: relative; /* keeps menu in normal flow, cannot overlay page */
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 100vh; pointer-events: all; visibility: visible; }
.mobile-menu-inner { padding: 1rem 1.5rem 1.5rem; }
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.mobile-sub-links { display: none; padding: 0.5rem 0 0.5rem 1rem; }
.mobile-sub-links.open { display: block; }
.mobile-sub-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  text-decoration: none;
}
.mobile-sub-links a:hover { color: var(--gold); }
.mobile-cta { margin-top: 1rem; display: block; text-align: center; }

/* Header offset for fixed header */
.header-offset { padding-top: 96px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: white; }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 52px; width: auto; }
.footer-brand-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; color: white; line-height: 1.3; }
.footer-tagline { font-size: 0.7rem; color: var(--gold); font-family: 'Inter', sans-serif; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background 0.2s, transform 0.2s;
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.footer-heading { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; color: white; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.footer-links a::before { content: '›'; color: var(--gold); font-weight: 700; }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.85rem; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: white; }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: white;
  padding: 0.5rem 1.1rem; border-radius: 0.5rem;
  font-size: 0.82rem; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; margin-top: 0.75rem;
  transition: opacity 0.2s;
}
.footer-whatsapp:hover { opacity: 0.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── WhatsApp Floating Button ─────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle-1 {
  position: absolute; top: -10%; right: -5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-circle-2 {
  position: absolute; bottom: -15%; left: -8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-flag-shape {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 2rem 2rem 50% 50% / 2rem 2rem 3rem 3rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-flag-shape img { width: 100%; height: 520px; object-fit: cover; }
.hero-flag-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  padding: 2rem 1.5rem 1.5rem;
}
.hero-flag-overlay .flag-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-flag-overlay .flag-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.3rem;
  color: white; margin-top: 0.25rem;
}

/* Marquee Trust Strip */
.trust-strip {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.trust-marquee {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 3rem;
}
.trust-marquee span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stats Section ────────────────────────────────────────────────────────── */
.stats-section { background: var(--navy); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1.5rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── Who We Are ───────────────────────────────────────────────────────────── */
.who-we-are { background: var(--cream); padding: 5rem 0; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.who-image { position: relative; }
.who-image img { width: 100%; border-radius: 1.5rem; box-shadow: var(--shadow-lg); }
.who-image-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.who-image-badge .badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.who-image-badge .badge-text { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; margin-top: 0.2rem; }
.who-features { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0; }
.who-feature { display: flex; align-items: flex-start; gap: 0.85rem; }
.who-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.who-feature-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.who-feature-desc { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── Services Grid ────────────────────────────────────────────────────────── */
.service-card { background: white; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; }
.service-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card-desc { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.service-card-link { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.3rem; }
.service-card-link:hover { gap: 0.5rem; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonial-card { background: white; border-radius: 1.25rem; padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.testimonial-role { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); }

/* ── Team Cards ───────────────────────────────────────────────────────────── */
.team-card { background: white; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 240px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-card-role { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-card-email { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--muted); }

/* ── Blog Cards ───────────────────────────────────────────────────────────── */
.blog-card { background: white; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-excerpt { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); }

/* ── Contact Form ─────────────────────────────────────────────────────────── */
.contact-form { background: white; border-radius: 1.5rem; padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
  background: white;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Page Hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── University / Country Page ────────────────────────────────────────────── */
.country-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.country-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: white; border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 1.5rem; }
.sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 1rem; }
.sidebar-info-item { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-family: 'Inter', sans-serif; font-size: 0.82rem; }
.sidebar-info-item:last-child { border-bottom: none; }
.sidebar-info-label { color: var(--muted); }
.sidebar-info-value { font-weight: 600; color: var(--navy); }

/* ── Guarantee Section ────────────────────────────────────────────────────── */
.guarantee-section { background: var(--gold); padding: 3.5rem 0; }
.guarantee-inner { display: flex; align-items: center; gap: 2rem; }
.guarantee-icon { font-size: 3.5rem; flex-shrink: 0; }
.guarantee-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.8rem; color: var(--navy); margin-bottom: 0.4rem; }
.guarantee-desc { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: rgba(10,22,40,0.75); line-height: 1.65; }

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .country-page-grid { grid-template-columns: 1fr; }
  .country-sidebar { position: static; }
}

 {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .top-bar .top-bar-right { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   FRONT PAGE SPECIFIC STYLES (front-page.php)
═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Cursor (front-page) ───────────────────────────────────────────── */
.fvc-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.12s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.fvc-cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.06s ease;
}

/* ── Hero Section (front-page) ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-shape-2 {
  bottom: -15%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title-gold { color: var(--gold); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.hero-trust-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { text-align: center; }
.hero-trust-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.8rem;
  color: var(--gold); line-height: 1;
  display: block;
}
.hero-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
  display: block;
}
.hero-trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-flag-img { width: 100%; height: 520px; object-fit: cover; }
.hero-badge-1 { position: absolute; top: 15%; left: -10%; display: flex; align-items: center; gap: 0.5rem; background: white; border-radius: 0.75rem; padding: 0.75rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.15); font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.hero-badge-2 { position: absolute; bottom: 20%; right: -8%; display: flex; align-items: center; gap: 0.5rem; background: white; border-radius: 0.75rem; padding: 0.75rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.15); font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.hero-badge-1 i, .hero-badge-2 i { color: var(--gold); }

.hero-carousel {
  background: var(--gold);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: block;
}
.hero-carousel-track {
  display: inline-flex;
  animation: marquee 35s linear infinite;
  gap: 2rem;
}
.hero-carousel-track span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.hero-carousel-track .sep { color: var(--navy); opacity: 0.5; }

/* ── Stats Strip ──────────────────────────────────────────────────────────── */
.stats-strip { background: var(--navy2); padding: 3rem 0; }
.stats-strip .stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; text-align: center; }
.stats-strip .stat-item { padding: 1rem; }
.stats-strip .stat-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.5rem; }
.stats-strip .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.stats-strip .stat-label { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── Two Column Grid ──────────────────────────────────────────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.rounded-img { width: 100%; border-radius: 1.5rem; box-shadow: var(--shadow-lg); }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
}
.check-list li i { color: var(--gold); flex-shrink: 0; }

/* ── Services Alternating Layout ─────────────────────────────────────────── */
.services-alt-grid { display: flex; flex-direction: column; gap: 5rem; }
.service-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-alt-row-reverse { direction: rtl; }
.service-alt-row-reverse > * { direction: ltr; }
.service-alt-img {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-alt-img img { width: 100%; height: 360px; object-fit: cover; }
.service-num-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.service-alt-content h3 { margin-bottom: 0.75rem; }

/* ── Flag / France Section ────────────────────────────────────────────────── */
.flag-section {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
}
.flag-bg {
  position: absolute;
  inset: 0;
  display: flex;
}
.flag-stripe { flex: 1; }
.flag-blue { background: #002395; }
.flag-white { background: #EDEDED; }
.flag-red { background: #ED2939; }
.flag-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.flag-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}
.section-label-light { color: rgba(255,255,255,0.9); }
.section-label-light::before,
.section-label-light::after { background: rgba(255,255,255,0.5); }

/* Flag Marquee */
.flag-marquee {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.flag-marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 2rem;
}
.flag-marquee-track span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}
.flag-marquee-track .sep { opacity: 0.5; }

/* ── Tabs (Why Choose Us) ─────────────────────────────────────────────────── */
.tabs-container { margin-top: 1.5rem; }
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}
.tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.tab-active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.tab-content-active { display: block; }
.tab-content p { font-size: 0.95rem; line-height: 1.75; color: var(--muted); }

/* ── Testimonials Grid ────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-author strong { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--navy); display: block; }
.testimonial-author span { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); display: block; }

/* ── Grand Sud Featured ───────────────────────────────────────────────────── */
.grand-sud-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  margin-bottom: 3rem;
}
.grand-sud-flag { font-size: 5rem; }
.grand-sud-programs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.grand-sud-programs span {
  background: rgba(201,168,76,0.12);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ── University Cards ─────────────────────────────────────────────────────── */
.uni-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.uni-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.uni-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.uni-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.uni-city { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.4rem; }
.uni-programs { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }

/* ── Flight Section ───────────────────────────────────────────────────────── */
.flight-section { background: var(--navy); }
.flight-section h2 { color: white; }
.flight-section .divider { background: var(--gold); }
.flight-section p { color: rgba(255,255,255,0.7); }
.flight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.flight-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
}
.flight-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.4); }
.flight-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.flight-logo { font-size: 2.5rem; }
.flight-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: white; }
.flight-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; }
.flight-card .check-list li { color: rgba(255,255,255,0.8); }

/* ── Section Label Center ─────────────────────────────────────────────────── */
.section-label-center { display: flex; justify-content: center; }

/* ── Responsive additions for front-page ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; padding-bottom: 2rem; }
  .hero-btns { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-visual { display: flex; }
  .two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-alt-row { grid-template-columns: 1fr; gap: 2rem; }
  .service-alt-row-reverse { direction: ltr; }
  .grand-sud-featured { grid-template-columns: 1fr; text-align: center; }
  .stats-strip .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .flight-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats-strip .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust-row { gap: 1rem; }
  .hero-trust-divider { display: none; }
}

/* =======================================================================
   OFFICIAL PARTNERS SECTION - Grand Sud France + Grand Dubai
======================================================================= */
.official-partners-section { padding: 5rem 0 0; background: var(--cream); }
.partner-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 900px; margin: 0 auto; }
.partner-card-big { background: white; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.10); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.partner-card-big:hover { transform: translateY(-6px); box-shadow: 0 16px 60px rgba(0,0,0,0.15); }
.partner-card-top { padding: 2rem 2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.partner-card-top-france { background: linear-gradient(135deg, #002395 0%, #FFFFFF 50%, #ED2939 100%); }
.partner-card-top-dubai { background: linear-gradient(135deg, #00732F 0%, #FFFFFF 50%, #FF0000 100%); }
.partner-flag-emoji { font-size: 3rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); }
.partner-official-badge { background: var(--navy); color: white; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 2rem; }
.partner-official-badge-gold { background: var(--gold); color: var(--navy); }
.partner-logo-block { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 2rem; border-bottom: 1px solid var(--border); }
.partner-logo-initials { width: 52px; height: 52px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; flex-shrink: 0; }
.partner-logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.partner-logo-country { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.partner-desc { padding: 1.25rem 2rem 0; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text); line-height: 1.7; flex: 1; }
.partner-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1rem 2rem 0; }
.partner-tags span { background: var(--cream); color: var(--navy); font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 2rem; border: 1px solid var(--border); }
.partner-card-big .btn { margin: 1.25rem 2rem 2rem; }

/* =======================================================================
   BLOG LAYOUT - home.php Posts Page and Sidebar
======================================================================= */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.blog-main { min-width: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.blog-card-link { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; margin-top: auto; }
.blog-card-link:hover { gap: 0.7rem; }
.blog-empty { text-align: center; padding: 5rem 2rem; background: white; border-radius: 1rem; }
.blog-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.blog-empty h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 0.75rem; }
.blog-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--navy); background: white; border: 1px solid var(--border); text-decoration: none; transition: all 0.2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--navy); color: white; border-color: var(--navy); }
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sidebar-heading { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold); }
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-cat-list li a { display: flex; align-items: center; justify-content: space-between; font-family: 'Inter', sans-serif; font-size: 0.87rem; color: var(--text); text-decoration: none; padding: 0.4rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.sidebar-cat-list li a:hover { color: var(--gold); }
.cat-count { background: var(--cream); color: var(--muted); font-size: 0.72rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 2rem; }
.sidebar-post-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.6rem 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: opacity 0.2s; }
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-item:hover { opacity: 0.75; }
.sidebar-post-thumb { width: 56px; height: 56px; border-radius: 0.5rem; overflow: hidden; flex-shrink: 0; }
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-family: 'Inter', sans-serif; font-size: 0.83rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 0.25rem; }
.sidebar-post-date { font-family: 'Inter', sans-serif; font-size: 0.72rem; color: var(--muted); }
.sidebar-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-links a { display: flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.87rem; color: var(--text); text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 0.5rem; transition: background 0.2s, color 0.2s; }
.sidebar-links a:hover { background: var(--cream); color: var(--navy); }
.sidebar-cta { background: var(--navy) !important; color: white; }
.sidebar-cta h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; margin-bottom: 0.5rem; }
.sidebar-cta p { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 0; }
.blog-single-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.blog-post-content { min-width: 0; }
.post-body { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: var(--text); }
.post-body h2, .post-body h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0; }
.post-body a { color: var(--gold); }
.post-body blockquote { border-left: 4px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--cream); border-radius: 0 0.5rem 0.5rem 0; font-style: italic; }

/* Testimonials Page */
.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-quote { font-family: 'Inter', sans-serif; font-size: 0.92rem; line-height: 1.75; color: var(--text); font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; padding: 0.75rem 1.75rem; border-radius: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 600; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

@media (max-width: 1024px) {
  .partner-cards-row { grid-template-columns: 1fr; max-width: 520px; }
  .blog-layout, .blog-single-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
 {
  .blog-grid { grid-template-columns: 1fr; }
  .partner-desc, .partner-card-big .btn { padding-left: 1.25rem; padding-right: 1.25rem; }
  .partner-logo-block { padding: 1rem 1.25rem; }
  .partner-tags { padding: 0.75rem 1.25rem 0; }
}

/* =======================================================================
   CHAIRMAN FEATURED CARD — Team Page
======================================================================= */
.chairman-card { display: grid; grid-template-columns: 300px 1fr; gap: 0; align-items: stretch; background: white; border-radius: 1.5rem; overflow: visible; box-shadow: 0 12px 60px rgba(0,0,0,0.10); width: 100%; }
.chairman-photo-wrap { position: relative; min-height: 520px; overflow: hidden; border-radius: 1.5rem 0 0 1.5rem; }
.chairman-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.chairman-badge { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.5rem 1.25rem; border-radius: 2rem; white-space: nowrap; display: flex; align-items: center; gap: 0.4rem; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.chairman-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; line-height: 1.1; word-break: break-word; }
.chairman-title { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 1rem; }
.chairman-content { padding: 2.5rem; min-width: 0; overflow: hidden; background: white; border-radius: 0 1.5rem 1.5rem 0; }
.chairman-stats { display: flex; gap: 2rem; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.chairman-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.chairman-stat-label { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.chairman-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.chairman-social-link { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--navy); text-decoration: none; background: var(--cream); padding: 0.5rem 1rem; border-radius: 0.5rem; border: 1px solid var(--border); transition: all 0.2s; }
.chairman-social-link:hover { background: var(--navy); color: white; border-color: var(--navy); }
/* FORCE MOBILE FIX FOR CHAIRMAN CARD */
 {
    .chairman-card {
        grid-template-columns: 1fr !important; /* Forces single column */
        display: flex !important; /* Fallback for older browsers */
        flex-direction: column !important;
        border-radius: 1rem !important;
    }

    .chairman-photo-wrap {
        width: 100% !important;
        min-height: 350px !important; 
        max-height: none !important;
        border-radius: 1rem 1rem 0 0 !important;
    }

    .chairman-content {
        width: 100% !important;
        padding: 1.5rem !important;
        border-radius: 0 0 1rem 1rem !important;
    }

    .chairman-name {
        font-size: 1.5rem !important;
        word-break: normal !important; /* Prevents vertical letters */
    }

    .chairman-stats {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}




/* =======================================================================
   MESSAGE FROM THE CHAIRMAN — About Page
======================================================================= */
.chairman-message-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.chairman-message-photo { position: relative; }
.chairman-msg-img { width: 100%; border-radius: 1.25rem 1.25rem 0 0; box-shadow: 0 12px 50px rgba(0,0,0,0.12); display: block; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
.chairman-msg-nameplate { background: var(--navy); color: white; padding: 1rem 1.5rem; border-radius: 0 0 1.25rem 1.25rem; text-align: center; }
.chairman-msg-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.chairman-msg-role { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; margin-top: 0.2rem; }
.chairman-quote-mark { font-family: 'Georgia', serif; font-size: 6rem; color: var(--gold); line-height: 0.7; margin-bottom: 1.25rem; display: block; opacity: 0.6; }
.chairman-quote-text { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.85; color: var(--text); font-style: italic; }
.chairman-signature { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--gold); }
.chairman-sig-line { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); font-style: italic; }
.chairman-sig-title { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }

@media (max-width: 1024px) {
  .chairman-card { grid-template-columns: 1fr; overflow: hidden; }
  .chairman-photo-wrap { min-height: 380px; max-height: 420px; border-radius: 1.5rem 1.5rem 0 0; }
 .chairman-content { padding: 1.5rem; min-width: 0; overflow: hidden; border-radius: 0 0 1.5rem 1.5rem; }
  .chairman-message-wrap { grid-template-columns: 1fr; }
  .chairman-message-photo { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .chairman-name { font-size: 1.75rem; }
  .chairman-stats { gap: 1.25rem; }
  .chairman-stat-num { font-size: 1.4rem; }
}

/* =======================================================================
   LEADERSHIP GRID — Two-column layout for Team Page leadership section
======================================================================= */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .leadership-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE-ONLY FIXES  ≤ 480px  (375 × 667 — iPhone SE / small Android)
   Added to fix: chairman card vertical-letter bug + hero visual overflow
═══════════════════════════════════════════════════════════════════════════ */
 {

  /* ── Prevent horizontal overflow globally ──────────────────────────── */
  body { overflow-x: hidden; }
  .container { padding: 0 1rem; }

  /* ── Hero section (front-page) ─────────────────────────────────────── */
  .hero-container {
    grid-template-columns: 1fr !important;
    padding: 5rem 1rem 2rem !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }

  /* Hide floating badge overlays that bleed outside bounds on small screens */
  .hero-badge-1,
  .hero-badge-2 { display: none !important; }

  /* Contain the visual column so it cannot overflow the viewport */
  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    border-radius: 1rem !important;
  }
  .hero-flag-img {
    height: 260px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* Trust row */
  .hero-trust-row { justify-content: center !important; flex-wrap: wrap !important; gap: 0.75rem !important; }
  .hero-trust-divider { display: none !important; }
  .hero-btns { justify-content: center !important; }

  /* ── Chairman Card — cascade-safe override ─────────────────────────── */
  .chairman-card {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
  }
  .chairman-photo-wrap {
    width: 100% !important;
    min-height: 260px !important;
    max-height: 320px !important;
    border-radius: 1rem 1rem 0 0 !important;
    overflow: hidden !important;
  }
  .chairman-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 1.25rem !important;
    border-radius: 0 0 1rem 1rem !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* Fix: name was breaking letter-by-letter due to narrow column */
  .chairman-name {
    font-size: 1.4rem !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    hyphens: auto !important;
    line-height: 1.25 !important;
  }

  .chairman-stats {
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }
  .chairman-stat-num { font-size: 1.4rem !important; }
  .chairman-social { flex-wrap: wrap !important; }

  /* ── Stats strip ────────────────────────────────────────────────────── */
  .stats-strip .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Section breathing room ─────────────────────────────────────────── */
  .section    { padding: 3rem 0 !important; }
  .section-sm { padding: 2rem 0 !important; }
  .page-hero  { padding: 5rem 0 2.5rem !important; }

  /* ── Footer ─────────────────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-bottom-inner { flex-direction: column !important; text-align: center !important; }
  .footer-legal { justify-content: center !important; }

  /* ── Partner cards ──────────────────────────────────────────────────── */
  .partner-cards-row { grid-template-columns: 1fr !important; }

  /* ── Form row ───────────────────────────────────────────────────────── */
  .form-row { grid-template-columns: 1fr !important; }
}
/* ── MOBILE RESPONSIVE FIXES ───────────────────────────────────────────── */

/* Fix hero container overflow on mobile */
 {
  .hero-section {
    overflow-x: hidden;
  }

  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 5rem 1.25rem 3rem;
    gap: 2.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* The visual card (Flight Centre card) — constrain it */
  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 0.5rem;
  }

  /* Any card inside hero-visual */
  .hero-visual > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  /* Fix text wrapping inside the card */
  .hero-visual h2,
  .hero-visual h3,
  .hero-visual p,
  .hero-visual li {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Floating badges that hang outside viewport */
  .hero-badge-1,
  .hero-badge-2 {
    display: none;
  }

  /* Hero buttons stack nicely */
  .hero-btns {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-trust-row {
    justify-content: center;
  }
}

/* Fix mobile menu visibility transition (removes flash) */
.mobile-menu {
  transition: max-height 0.4s ease, visibility 0.4s ease;
}

/* Ensure body doesn't scroll horizontally */
body {
  overflow-x: hidden;
}

/* Fix two-col-grid on small screens */
 {
  .two-col-grid,
  .flight-grid,
  .partner-cards-row {
    grid-template-columns: 1fr !important;
  }
}

/* Tighten padding on very small screens */
 {
  .hero-container {
    padding: 4rem 1rem 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero-trust-divider {
    display: none;
  }
/* =======================================================================
   MOBILE FIXES — Replace ALL existing chairman + hero mobile rules
   with this single clean block. Delete all other @media rules that
   touch .chairman-card, .hero-visual, .hero-container, .hero-section
======================================================================= */
 
/* ── Global overflow fix ──────────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
 
* {
  box-sizing: border-box;
}
 
/* ── Chairman Card — complete mobile fix ─────────────────────────────── */
@media (max-width: 1024px) {
  .chairman-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 1rem !important;
  }
 
  .chairman-photo-wrap {
    width: 100% !important;
    min-height: 320px !important;
    max-height: 400px !important;
    border-radius: 1rem 1rem 0 0 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }
 
  .chairman-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
 
  .chairman-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
    border-radius: 0 0 1rem 1rem !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background: white !important;
  }
 
  .chairman-name {
    font-size: 1.5rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }
 
  .chairman-title {
    font-size: 0.85rem !important;
    word-break: break-word !important;
  }
 
  .chairman-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }
 
  .chairman-social {
    flex-wrap: wrap !important;
  }
 
  /* Chairman message wrap */
  .chairman-message-wrap {
    grid-template-columns: 1fr !important;
  }
 
  .chairman-message-photo {
    max-width: 260px !important;
    margin: 0 auto !important;
  }
}
 
/* ── Hero section — complete mobile fix ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-section {
    overflow: hidden !important;
    width: 100% !important;
  }
 
  .hero-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 5rem 1.25rem 3rem !important;
    gap: 2rem !important;
    text-align: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
 
  .hero-visual {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    border-radius: 1rem !important;
  }
 
  .hero-visual > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
 
  .hero-flag-img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
  }
 
  /* Hide floating badges — they bleed outside on mobile */
  .hero-badge-1,
  .hero-badge-2 {
    display: none !important;
  }
 
  .hero-btns {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
 
  .hero-trust-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
 
  .hero-trust-divider {
    display: none !important;
  }
 
  /* Cards inside hero visual — prevent overflow */
  .hero-visual .card,
  .hero-visual .flight-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
 
  .hero-visual h2,
  .hero-visual h3,
  .hero-visual p,
  .hero-visual li,
  .hero-visual span {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}
 
/* ── Extra small screens ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-container {
    padding: 4rem 1rem 2rem !important;
  }
 
  .hero-title {
    font-size: 1.75rem !important;
  }
 
  .hero-trust-row {
    flex-direction: column !important;
    align-items: center !important;
  }
 
  .chairman-photo-wrap {
    min-height: 260px !important;
    max-height: 320px !important;
  }
 
  .chairman-name {
    font-size: 1.3rem !important;
  }
 
  .chairman-stat-num {
    font-size: 1.3rem !important;
  }
 
  .section { padding: 2.5rem 0 !important; }
  .page-hero { padding: 5rem 0 2rem !important; }
 
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom-inner { flex-direction: column !important; text-align: center !important; }
  .footer-legal { justify-content: center !important; }
 
  .partner-cards-row { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
}