/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #3da0d4;
  --primary-dark: #1a6fa8;
  --navy: #163560;
  --navy-light: #1e4a80;
  --sky: #6dcaeb;
  --sky-light: #b8e4f5;
  --white: #ffffff;
  --offwhite: #f0f8fd;
  --gray: #6b7280;
  --dark: #0f2440;
  --gold: #f5a623;
  --shadow: 0 4px 24px rgba(26,106,168,0.13);
  --shadow-lg: 0 12px 48px rgba(26,106,168,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== PAGE SYSTEM ===== */
.page { display: none; animation: fadeIn 0.5s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(16px);} to { opacity:1; transform:none;} }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--sky-light);
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--sky-light); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar i { margin-right: 5px; color: var(--sky); }

/* ===== HEADER / NAVBAR ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-wrap img { height: 64px; width: 64px; border-radius: 50%; object-fit: cover; }
.logo-text h1 { font-size: 1.45rem; font-weight: 900; color: var(--navy); line-height: 1.1; }
.logo-text p { font-size: 0.72rem; color: var(--primary); font-style: italic; font-weight: 600; }

nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--offwhite); }
.nav-link.active::after {
  content:''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px; background: var(--primary); border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px 0;
  border: 1px solid rgba(61,160,212,0.15);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; animation: dropIn 0.22s ease; }
@keyframes dropIn { from { opacity:0; transform: translateY(-8px);} to { opacity:1; transform:none;} }
.dropdown-menu li a, .dropdown-menu li span {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.dropdown-menu li a:hover, .dropdown-menu li span:hover {
  background: var(--offwhite); color: var(--primary);
}
.dropdown-menu li span i { color: var(--primary); width: 18px; }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  margin-left: 8px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(61,160,212,0.4); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--offwhite); }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--offwhite);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 20px; border-radius: 0; font-size: 0.95rem; }
.mobile-nav .dropdown-group summary {
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav .dropdown-group summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.75rem; }
.mobile-nav .dropdown-group[open] summary::after { content: '\f077'; }
.mobile-nav .dropdown-group .sub-item { padding: 10px 36px; font-size: 0.88rem; color: var(--gray); font-weight: 600; cursor: pointer; }
.mobile-nav .dropdown-group .sub-item:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--primary-dark) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234ba8d4' fill-opacity='0.06'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-globe {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(109,202,235,0.15), transparent 70%);
  border: 2px solid rgba(109,202,235,0.1);
}
.hero-globe::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 2px solid rgba(109,202,235,0.08);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,202,235,0.15);
  border: 1px solid rgba(109,202,235,0.3);
  color: var(--sky);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-text h2 span { color: var(--sky); }
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--white);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--sky); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 3px; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--white);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
.hero-card img { width: 130px; height: 130px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.3); margin-bottom: 16px; }
.hero-card h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.hero-card p { font-size: 0.8rem; color: var(--sky); font-style: italic; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.hero-tag {
  background: rgba(109,202,235,0.2);
  color: var(--sky-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
}
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float2 3s ease-in-out infinite;
}
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(-2deg);} 50% { transform: translateY(-8px) rotate(2deg);} }
.floating-badge-1 { top: -10px; left: -20px; animation-delay: 0.5s; }
.floating-badge-2 { bottom: -10px; right: -20px; animation-delay: 1.2s; }
.fb-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; }
.fb-text span { display: block; font-size: 1rem; font-weight: 900; color: var(--navy); line-height: 1; }
.fb-text small { font-size: 0.72rem; color: var(--gray); }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,160,212,0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-title span { color: var(--primary); }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== FEATURES ===== */
.features { background: var(--offwhite); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(61,160,212,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--sky));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ===== COUNTRIES ===== */
.countries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.country-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  aspect-ratio: 4/3;
}
.country-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.country-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.country-card:hover .country-bg { transform: scale(1.1); }
.country-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,53,96,0.9) 0%, rgba(22,53,96,0.2) 60%);
}
.country-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--white);
}
.country-flag { font-size: 2rem; margin-bottom: 6px; }
.country-content h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.country-content p { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.country-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 7px 16px;
  background: var(--primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition);
}
.country-card:hover .country-btn { background: var(--white); color: var(--navy); }

/* Country BG gradients */
.bg-canada { background: linear-gradient(135deg, #c8102e, #a00000); }
.bg-australia { background: linear-gradient(135deg, #00843D, #003580); }
.bg-usa { background: linear-gradient(135deg, #002868, #bf0a30); }
.bg-uk { background: linear-gradient(135deg, #012169, #C8102E); }
.bg-nz { background: linear-gradient(135deg, #00247D, #CC142B); }
.bg-germany { background: linear-gradient(135deg, #000000, #DD0000, #FFCE00); }

/* ===== SERVICES ===== */
.services { background: var(--offwhite); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--offwhite), var(--sky-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.service-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light), var(--primary-dark));
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '✈';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  right: -4rem;
  top: -4rem;
}
.cta-inner { max-width: 700px; margin: auto; text-align: center; padding: 0 20px; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(61,160,212,0.1);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.t-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; font-weight: 800;
  flex-shrink: 0;
}
.t-name { font-size: 0.9rem; font-weight: 800; color: var(--navy); }
.t-dest { font-size: 0.78rem; color: var(--primary); font-weight: 600; }

/* ===== STATS SECTION ===== */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-box { text-align: center; color: var(--white); }
.stat-num { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1; }
.stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.8); margin-top: 6px; font-weight: 600; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0 60px;
  color: var(--white);
  text-align: center;
}
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.about-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--navy));
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 6rem;
  overflow: hidden;
  position: relative;
}
.about-img-main::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,160,212,0.3), rgba(22,53,96,0.6));
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-img-badge .big-num { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.about-img-badge p { font-size: 0.78rem; color: var(--gray); font-weight: 600; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.5vw, 2.2rem); color: var(--navy); margin-bottom: 18px; }
.about-text p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(61,160,212,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.value-item h4 { font-size: 0.9rem; font-weight: 800; color: var(--navy); }
.value-item p { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }

/* Team section */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--white);
}
.team-info { padding: 20px; }
.team-info h3 { font-size: 1rem; font-weight: 800; color: var(--navy); }
.team-info p { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-top: 4px; }

/* ===== VISA DETAIL PAGE ===== */
.visa-hero {
  padding: 80px 0 60px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.visa-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; }
.visa-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 24px; }
.visa-flag { font-size: 4rem; margin-bottom: 16px; }
.visa-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.visa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.visa-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.visa-list { display: flex; flex-direction: column; gap: 10px; }
.visa-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray); }
.visa-list-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.req-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--offwhite);
  border: 1px solid rgba(61,160,212,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin: 4px;
}
.req-chip i { color: var(--primary); }

/* ===== ACADEMIC PAGE ===== */
.academic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 50px; }
.academic-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.academic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.academic-header {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  padding: 32px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
}
.academic-icon { font-size: 2.5rem; }
.academic-header h3 { font-size: 1.3rem; font-weight: 900; }
.academic-header p { font-size: 0.84rem; color: rgba(255,255,255,0.8); margin-top: 4px; }
.academic-body { padding: 28px; }
.academic-features { display: flex; flex-direction: column; gap: 12px; }
.af-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--gray); font-weight: 600; }
.af-item i { color: var(--primary); width: 20px; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0 60px;
  color: var(--white);
  text-align: center;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; padding: 80px 0; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(61,160,212,0.1);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-card:hover { transform: translateX(6px); border-color: var(--primary); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-text h4 { font-size: 0.92rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-card-text p, .contact-card-text a { font-size: 0.86rem; color: var(--gray); line-height: 1.6; }
.contact-card-text a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap p { font-size: 0.88rem; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(61,160,212,0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,160,212,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(61,160,212,0.4); }

/* Offices map */
.offices-section { background: var(--offwhite); padding: 80px 0; }
.offices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: all var(--transition);
}
.office-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.office-city { font-size: 1.2rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.office-city i { color: var(--primary); }
.office-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray); margin-top: 10px; }
.office-detail i { color: var(--primary); margin-top: 2px; flex-shrink: 0; width: 16px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; margin-top: 16px; color: rgba(255,255,255,0.55); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.footer-logo h3 { color: var(--white); font-size: 1.2rem; font-weight: 900; }
.footer-logo span { color: var(--sky); font-size: 0.7rem; font-style: italic; font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.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: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 800; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  cursor: pointer;
}
.footer-col ul li a:hover, .footer-col ul li span:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 70px 0 50px;
  color: var(--white);
  text-align: center;
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 10px; }
.page-header p { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.82rem; }
.breadcrumb span, .breadcrumb a { color: rgba(255,255,255,0.55); cursor: pointer; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--sky); font-weight: 700; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); background: var(--navy); }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 86px; right: 30px;
  width: 50px; height: 50px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  z-index: 999;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ===== SUCCESS TOAST ===== */
.toast {
  position: fixed;
  top: 100px; right: 20px;
  background: #22c55e;
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid, .countries-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-content, .contact-grid { grid-template-columns: 1fr; }
  .visa-content-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid, .countries-grid, .services-grid, .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
  .academic-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-left { display: none; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px; }
}