/* ============================================
   AtoZ Visa Consultancy — Global Stylesheet
   Modern, Professional, Premium Design
   ============================================ */

:root {
  --navy: #0D3266;
  --navy-light: #1A4D99;
  --navy-dark: #08214A;
  --brand-blue: #1A4D99;
  --brand-blue-light: #2D6BC4;
  --gold: #F5B700;
  --gold-light: #FFD24A;
  --gold-dark: #C99500;
  --white: #FFFFFF;
  --grey-50: #F8FAFC;
  --grey-100: #F4F6F9;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E1;
  --grey-500: #64748B;
  --grey-700: #334155;
  --grey-900: #0F172A;
  --success: #10B981;
  --gradient-primary: linear-gradient(135deg, #0D3266 0%, #1A4D99 100%);
  --gradient-gold: linear-gradient(135deg, #F5B700 0%, #FFD24A 100%);
  --gradient-hero: linear-gradient(135deg, #08214A 0%, #1A4D99 50%, #0D3266 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.10), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 40px -10px rgba(10,37,64,0.15);
  --shadow-gold: 0 10px 30px -5px rgba(245,183,0,0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p { color: var(--grey-700); }

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

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

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .label {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section-title .label::before,
.section-title .label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section-title .label::before { left: 0; }
.section-title .label::after { right: 0; }

.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--grey-500); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -5px rgba(245,183,0,0.5);
}

/* Live pulse animation — WhatsApp-style ripple for CTA buttons */
.btn-pulse {
  position: relative;
  animation: ctaPulse 2.2s infinite;
}
.btn-pulse::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-gold);
  z-index: -1;
  opacity: 0.5;
  animation: ctaRipple 2.2s infinite;
}
.btn-pulse:hover { animation-play-state: paused; }
.btn-pulse:hover::before { animation-play-state: paused; opacity: 0; }

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: var(--shadow-gold), 0 0 0 0 rgba(245,183,0,0.65);
  }
  50% {
    box-shadow: var(--shadow-gold), 0 0 0 14px rgba(245,183,0,0);
  }
}

@keyframes ctaRipple {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Navbar-only pulse should be smaller */
.navbar .btn-pulse { animation-duration: 2.4s; }
.navbar .btn-pulse::before { display: none; }

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

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-icon { width: 18px; height: 18px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,37,64,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--navy);
  transition: var(--transition);
}
.nav-logo:hover { transform: scale(1.02); }

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Compact logo for footer (slightly smaller) */
.footer-brand .nav-logo img { height: 52px; }

@media (max-width: 480px) {
  .nav-logo img { height: 40px; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey-700);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--navy);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 968px) {
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 2rem; gap: 1.25rem; box-shadow: var(--shadow-lg); border-top: 1px solid var(--grey-200); }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--grey-100); }
  .mobile-menu-btn { display: inline-flex; }
  .nav-cta .btn:not(.mobile-menu-btn) { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,183,0,0.15) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(30,58,138,0.5) 0, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245,183,0,0.15);
  border: 1px solid rgba(245,183,0,0.3);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,183,0,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(245,183,0,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.375rem; }

.hero-visual {
  position: relative;
  height: 540px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

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

.hero-card-main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  text-align: center;
  background: rgba(255,255,255,0.12);
}

.hero-card-main .passport {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-gold);
}

.hero-card-main h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.5rem; }
.hero-card-main p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

.hero-card-stat {
  padding: 1rem 1.25rem;
  width: 200px;
  animation-delay: 1s;
}

.hero-card-stat .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero-card-top-left { top: 8%; left: -5%; }
.hero-card-top-left .icon { background: rgba(16,185,129,0.2); }

.hero-card-bottom-right { bottom: 10%; right: -5%; animation-delay: 2s; }
.hero-card-bottom-right .icon { background: rgba(245,183,0,0.2); }

.hero-card-stat .val { color: var(--white); font-weight: 700; font-size: 1.125rem; }
.hero-card-stat .lbl { color: rgba(255,255,255,0.7); font-size: 0.75rem; }

/* Hero background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,33,74,0.96) 0%, rgba(8,33,74,0.82) 55%, rgba(8,33,74,0.4) 100%);
}

.hero .container { position: relative; z-index: 1; }

/* Hero founder portrait */
.hero-photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 360px;
  height: 460px;
  border-radius: 200px 200px 140px 140px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 6px rgba(245,183,0,0.35);
}

.hero-photo-inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-photo-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.8rem;
  color: var(--white);
  white-space: nowrap;
  background: rgba(8,33,74,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}

.hero-photo-badge strong { display: block; font-size: 0.875rem; line-height: 1.2; }
.hero-photo-badge small { color: rgba(255,255,255,0.6); font-size: 0.7rem; }
.hero-photo-badge .badge-icon { font-size: 1.25rem; }
.hero-photo-badge .badge-icon.check { color: var(--success); font-weight: 800; }

.hero-photo-badge-tl { top: 12%; left: -18%; }
.hero-photo-badge-br { bottom: 16%; right: -14%; animation-delay: 1.8s; }

.hero-name-plate {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0.625rem 1.375rem;
  text-align: center;
  white-space: nowrap;
  background: var(--gradient-gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(245,183,0,0.45);
}

.hvp-name { font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 800; }
.hvp-role { font-size: 0.675rem; font-weight: 600; opacity: 0.7; margin-top: 0.1rem; }

@media (max-width: 968px) {
  .hero { padding: 7rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 400px; }
  .hero-card-main { width: 260px; }
  .hero-card-stat { width: 160px; }
  .hero-card-top-left { left: 0; }
  .hero-card-bottom-right { right: 0; }
  .hero-photo-wrap { width: 280px; height: 360px; }
  .hero-photo-badge-tl { left: -8%; }
  .hero-photo-badge-br { right: -6%; }
  .hero-photo-col { margin-bottom: 1.5rem; }
}

/* ============================================
   TRUST BAR — AUTO-SCROLLING MARQUEE
   ============================================ */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  overflow: hidden;
}

.trust-bar-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--grey-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Marquee track wrapper — overflow hidden + fading edges */
.trust-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

/* The scrolling row */
.trust-grid {
  display: flex;
  gap: 1.5rem;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
  align-items: center;
}
.trust-marquee:hover .trust-grid { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
  cursor: pointer;
  flex: 0 0 auto;
  min-width: 130px;
}

.trust-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.trust-item .flag { font-size: 1.75rem; margin-bottom: 0.25rem; }
.trust-flag-img {
  display: block;
  width: 48px;
  height: 32px;
  object-fit: cover;
  margin: 0 auto 0.35rem;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.trust-item .name { font-size: 0.8125rem; color: var(--grey-700); font-weight: 500; }

@media (max-width: 768px) {
  .trust-grid { animation-duration: 22s; }
  .trust-item { min-width: 110px; padding: 0.75rem 1rem; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { background: var(--grey-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-gold);
  color: var(--navy);
  transform: rotate(-5deg) scale(1.05);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.service-card p { color: var(--grey-500); font-size: 0.9375rem; margin-bottom: 1rem; }

.service-card .link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.service-card .link:hover { color: var(--gold-dark); gap: 0.625rem; }

/* ============================================
   COUNTRIES GRID
   ============================================ */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  isolation: isolate;
}

/* Animated glowing border on hover */
.country-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--gold) 0deg,
    var(--brand-blue-light) 90deg,
    var(--gold) 180deg,
    var(--brand-blue-light) 270deg,
    var(--gold) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
  animation: borderSpin 4s linear infinite;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderSpin {
  to { --angle: 360deg; }
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(26, 77, 153, 0.25), 0 0 30px -5px rgba(245, 183, 0, 0.35);
}

.country-card:hover::after { opacity: 1; }

.country-flag {
  height: 140px;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.country-flag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0, rgba(10,37,64,0.6) 100%);
}

.country-flag .emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Landmark photo cards */
.country-card-landmark .country-landmark {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.country-landmark > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.country-card:hover .country-landmark > img { transform: scale(1.08); }

.country-landmark-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  background: linear-gradient(transparent 50%, rgba(10,37,64,0.35) 100%);
}

.country-flag-badge {
  width: 36px;
  height: auto;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.country-body { padding: 1.25rem; text-align: center; }
.country-body h4 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.country-body p { font-size: 0.8125rem; color: var(--grey-500); }

@media (max-width: 968px) { .countries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .countries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   WHY US
   ============================================ */
.why-us { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,183,0,0.1) 0, transparent 70%);
  pointer-events: none;
}

.why-us .section-title h2 { color: var(--white); }
.why-us .section-title p { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(245,183,0,0.1);
  border-color: var(--gold);
}

.why-icon {
  width: 56px; height: 56px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.375rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

@media (max-width: 968px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   FOUNDER PREVIEW
   ============================================ */
.founder-preview { background: var(--grey-50); }

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.founder-img {
  position: relative;
  height: 480px;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.founder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0, rgba(10,37,64,0.4) 100%);
}

.founder-avatar {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--gradient-gold);
  position: relative;
  z-index: 1;
  border: 6px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  z-index: 2;
  min-width: 240px;
}

.founder-badge .name { color: var(--white); font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 1.125rem; }
.founder-badge .role { color: var(--gold-light); font-size: 0.8125rem; margin-top: 0.125rem; }

.founder-content .label {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-content h2 { margin-bottom: 1.25rem; }

.founder-content .quote {
  font-size: 1.125rem;
  color: var(--grey-700);
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-left: 1.25rem;
  border-left: 4px solid var(--gold);
}

.founder-content p { margin-bottom: 1rem; font-size: 1rem; color: var(--grey-500); }
.founder-content .signature {
  margin-top: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
}
.founder-content .signature span { display: block; font-size: 0.8125rem; color: var(--grey-500); font-weight: 500; margin-top: 0.25rem; }

@media (max-width: 968px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-img { height: 380px; }
  .founder-avatar { width: 200px; height: 200px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  font-family: 'Poppins', sans-serif;
  line-height: 0.8;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--grey-700);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-100);
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.testimonial-author .info .name { font-weight: 600; color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 0.9375rem; }
.testimonial-author .info .meta { font-size: 0.8125rem; color: var(--grey-500); }

@media (max-width: 968px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section { background: var(--grey-50); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 2px;
  background: var(--grey-200);
  z-index: 0;
}

.process-step { position: relative; z-index: 1; text-align: center; }

.process-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.5rem;
  transition: var(--transition);
}

.process-step:hover .process-num {
  background: var(--gradient-gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.process-step h4 { font-size: 1rem; margin-bottom: 0.375rem; }
.process-step p { font-size: 0.8125rem; color: var(--grey-500); }

@media (max-width: 968px) {
  .process-timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-timeline::before { display: none; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-md); }

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  gap: 1rem;
}

.faq-icon {
  width: 32px; height: 32px;
  background: var(--grey-100);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--navy);
}

.faq-item.active .faq-icon { background: var(--gold); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--grey-500);
  font-size: 0.9375rem;
}

.faq-item.active .faq-answer { max-height: 200px; }

/* ============================================
   BOOKING FORM SECTION (Reusable across pages)
   ============================================ */
.booking-section {
  padding: 5rem 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,183,0,0.12) 0, transparent 70%);
  pointer-events: none;
}
.booking-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,77,153,0.10) 0, transparent 70%);
  pointer-events: none;
}

.booking-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  position: relative;
  z-index: 1;
}

.booking-info {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.booking-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(245,183,0,0.18) 0, transparent 55%);
  pointer-events: none;
}
.booking-info > * { position: relative; z-index: 1; }

.booking-info .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(245,183,0,0.18);
  border: 1px solid rgba(245,183,0,0.35);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.booking-info h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.booking-info h2 .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.booking-info .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.booking-features {
  margin-bottom: 1.75rem;
}
.booking-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.booking-features li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--gradient-gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.booking-contact {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.booking-contact .item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.booking-contact .item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.booking-contact .item a { color: rgba(255,255,255,0.85); }
.booking-contact .item a:hover { color: var(--gold); }

.booking-form {
  padding: 3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-form h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.booking-form .sub {
  color: var(--grey-500);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-info, .booking-form { padding: 2.25rem; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245,183,0,0.15) 0, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
}

/* Social Icons — Premium Look */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-social {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  transition: var(--transition);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.footer-social svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Brand colours shown by default so each icon reads as its real logo */
.footer-social.fb { background: #1877F2; border-color: transparent; color: var(--white); }
.footer-social.ig { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%); border-color: transparent; color: var(--white); }

/* Brand-specific hover colors */
.footer-social.fb:hover { background: #1877F2; border-color: #1877F2; color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(24,119,242,0.4); }
.footer-social.ig:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); border-color: transparent; color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(221,42,123,0.4); }
.footer-social.wa:hover { background: #25D366; border-color: #25D366; color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.footer-social.yt:hover { background: #FF0000; border-color: #FF0000; color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(255,0,0,0.4); }
.footer-social.tw:hover, .footer-social.x:hover { background: #000000; border-color: var(--white); color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.5); }
.footer-social.li:hover { background: #0A66C2; border-color: #0A66C2; color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(10,102,194,0.4); }

/* Default hover for unstyled social icons */
.footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.footer-col h4 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.625rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
}
.footer-contact-item a { color: rgba(255,255,255,0.95); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.7); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245,183,0,0.1) 0, transparent 70%);
}

.page-header h1 { color: var(--white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-header .breadcrumb { color: rgba(255,255,255,0.7); position: relative; z-index: 1; font-size: 0.9375rem; }
.page-header .breadcrumb a { color: var(--gold-light); }

/* ============================================
   FORM
   ============================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--grey-900);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,183,0,0.1);
}

textarea.form-control { resize: vertical; min-height: 120px; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

[data-aos] {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
