/* ============================================
   Elevare Gateway Education - Premium Education Consultancy
   Main Stylesheet
   ============================================ */

/* Google Fonts imported via HTML */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy: #0d1b3e;
  --navy-light: #0f2157;
  --royal: #1845ad;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-bright: #60a5fa;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fbbf24;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-hover: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.25);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --font: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

input, textarea, select {
  font-family: var(--font);
  outline: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

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

.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-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   SECTION LABELS & HEADINGS
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-label i {
  font-size: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--royal), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.divider.centered {
  margin: 0 auto 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(245,158,11,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--royal), var(--blue));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,99,235,0.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--royal);
  border: 2px solid var(--royal);
}

.btn-outline:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 16px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(13, 27, 62, 0.08);
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(13, 27, 62, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.navbar .nav-logo-img {
  height: 78px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 64px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(13, 27, 62, 0.78);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(13, 27, 62, 0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
}

.nav-phone i {
  color: var(--gold);
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 62, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: var(--radius);
  transition: var(--transition);
  width: 260px;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   HERO SECTION (HOME)
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #1535a0 70%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--royal) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
  top: 30%;
  left: -100px;
  animation: floatOrb 12s ease-in-out infinite;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge i { font-size: 10px; }

.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--gold);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  height: 560px;
}

.hero-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(24,69,173,0.4) 50%, rgba(13,27,62,0.6) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 80px rgba(37,99,235,0.3),
    inset 0 0 80px rgba(37,99,235,0.1);
  overflow: hidden;
  animation: rotateSlow 20s linear infinite;
}

.hero-globe::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='150' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='100' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='50' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cline x1='50' y1='200' x2='350' y2='200' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cline x1='200' y1='50' x2='200' y2='350' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/cover;
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.1);
  animation: rotateSlow 30s linear infinite reverse;
}

.hero-ring-1 {
  width: 440px;
  height: 440px;
  animation-duration: 25s;
}

.hero-ring-2 {
  width: 520px;
  height: 520px;
  animation-duration: 35s;
  border-style: solid;
  border-color: rgba(255,255,255,0.05);
}

/* Floating Cards on Hero */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 3;
}

.float-card-1 {
  top: 8%;
  right: 5%;
  animation: floatCard 6s ease-in-out infinite;
}

.float-card-2 {
  bottom: 20%;
  right: 0%;
  animation: floatCard 7s ease-in-out infinite reverse;
}

.float-card-3 {
  top: 40%;
  left: -5%;
  animation: floatCard 8s ease-in-out infinite;
}

.float-card-4 {
  bottom: 5%;
  left: 15%;
  animation: floatCard 5s ease-in-out infinite reverse;
}

.fc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.fc-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}

.fc-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.fc-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.fc-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.fc-flags {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.fc-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  min-height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--royal) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 10px;
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.05), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: var(--gold);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number .suffix {
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ============================================
   ABOUT PREVIEW / SECTION
   ============================================ */
.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 50%, #2563eb 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(245,158,11,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.3) 0%, transparent 50%);
}

.about-img-main .big-icon {
  font-size: 120px;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-img-main .about-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-img-main .about-visual-content .av-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-img-main .about-visual-content .av-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
}

.about-img-main--photo {
  background: var(--white);
  padding: 0;
}

.about-img-main--photo::before { display: none; }

.about-img-main--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-card.card-1 {
  bottom: -20px;
  right: -24px;
}

.about-badge-card.card-2 {
  top: -20px;
  left: -24px;
}

.abc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.abc-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.abc-icon.blue {
  background: linear-gradient(135deg, var(--royal), var(--blue));
  color: var(--white);
}

.abc-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.abc-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.about-text p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.about-check i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--royal));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.si-blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: var(--royal); }
.si-gold { background: linear-gradient(135deg, #fef3c7, #fde68a); color: var(--gold-dark); }
.si-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.si-green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.si-red { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626; }
.si-teal { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0d9488; }

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--royal);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
  font-size: 12px;
}

.service-card:hover .service-link {
  color: var(--gold-dark);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-section .hero-orb { opacity: 0.15; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-point {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.why-point:hover {
  background: var(--glass-hover);
  transform: translateY(-4px);
}

.wp-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 14px;
}

.wp-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.wp-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-section {
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.dest-card-img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.dest-flag {
  font-size: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.35;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.dest-flag-sm {
  font-size: 28px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.dest-country-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.dest-card-body {
  padding: 24px;
  background: var(--white);
}

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.dest-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
}

.dest-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--royal);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.dest-link i { font-size: 11px; transition: var(--transition); }
.dest-card:hover .dest-link { color: var(--gold-dark); }
.dest-card:hover .dest-link i { transform: translateX(4px); }

/* Country gradient backgrounds */
.bg-uk        { background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%), url('../Image/uk.png') center/cover no-repeat; }
.bg-canada    { background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%), url('../Image/Canada.jpg') center/cover no-repeat; }
.bg-australia { background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%), url('../Image/Australia.jpg') center/cover no-repeat; }
.bg-usa       { background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%), url('../Image/us.jpg') center/cover no-repeat; }
.bg-germany   { background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%), url('../Image/Germany.jpg') center/cover no-repeat; }
.bg-dubai     { background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%), url('../Image/Dubai.jpg') center/cover no-repeat; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--gray-50);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.author-detail {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.author-flag {
  font-size: 16px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--royal);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--white);
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--royal), var(--gold));
  z-index: 0;
}

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

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--gray-400);
  transition: var(--transition);
  position: relative;
}

.process-step.active .process-icon,
.process-step:hover .process-icon {
  background: linear-gradient(135deg, var(--royal), var(--blue));
  border-color: var(--royal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(24,69,173,0.35);
}

.process-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--royal);
  box-shadow: 0 4px 20px rgba(24,69,173,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--royal);
  color: var(--white);
  transform: rotate(45deg);
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 50%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.02'%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");
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title .gold { color: var(--gold); }

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.ci-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ci-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-hours {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}

.hours-title {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-row:last-child { border-bottom: none; }

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-label span {
  color: var(--gold-dark);
}

.form-input,
.form-select,
.form-textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--royal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(24,69,173,0.08);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.form-submit {
  grid-column: 1 / -1;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* Map placeholder */
.map-section {
  padding: 0 0 100px;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow);
}

.map-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.map-placeholder i {
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.map-placeholder h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.map-placeholder p {
  font-size: 14px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-avatar {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-600);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   MISSION / VISION
   ============================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mv-card-mission {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.mv-card-vision {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--navy);
}

.mv-icon {
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.mv-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mv-text {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--royal));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-left { text-align: right; }
.timeline-right { text-align: left; }

.timeline-item:nth-child(even) .timeline-left { order: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-right { order: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-center { order: 2; }

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-year {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.tl-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   VALUES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--white);
}

.value-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   DESTINATION PAGE TABS
   ============================================ */
.dest-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.dest-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-100);
  color: var(--gray-600);
  border: 2px solid transparent;
}

.dest-tab:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.dest-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.dest-tab-flag { font-size: 18px; }

.dest-detail {
  display: none;
}

.dest-detail.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  animation: fadeInUp 0.4s ease;
}

.dest-detail-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dest-detail-visual .big-flag {
  font-size: 120px;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dest-detail-visual .dest-detail-info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.dest-detail-info h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.dest-detail-info p {
  font-size: 16px;
  opacity: 0.9;
}

.dest-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dest-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.dic-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.dic-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.dic-content {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}

.dic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.dic-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  color: var(--gray-600);
  font-weight: 500;
}

.dest-info-full {
  grid-column: 1 / -1;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.comparison-table tr:hover td {
  background: rgba(24,69,173,0.04);
}

.comparison-table .flag-col {
  font-size: 20px;
}

.check-icon { color: #10b981; }
.x-icon { color: #ef4444; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, var(--navy) 0%, #071230 100%);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 10px;
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-copy span {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--gray-800);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateX(10px);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--gray-800);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 998;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll animation classes */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
}

.loader-logo span { color: var(--gold); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue-bright));
  border-radius: var(--radius-full);
  width: 0;
  animation: loadProgress 1.2s ease-in-out forwards;
}

@keyframes loadProgress {
  to { width: 100%; }
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 1001;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  border-left: 4px solid var(--royal);
  transform: translateX(400px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
  transform: translateX(0);
}

.notification.success { border-left-color: #10b981; }
.notification.error { border-left-color: #ef4444; }

.notif-icon { font-size: 20px; }
.notification.success .notif-icon { color: #10b981; }
.notification.error .notif-icon { color: #ef4444; }

.notif-text { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.notif-close { margin-left: auto; cursor: pointer; color: var(--gray-400); transition: color 0.2s; }
.notif-close:hover { color: var(--gray-700); }

/* ============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { text-align: center; }
  .hero-subtitle { max-width: 600px; margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }

  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 560px; margin: 0 auto; }
  .about-img-main { height: 400px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: auto 1fr; }
  .timeline-left { display: none; }
  .timeline-item:nth-child(even) .timeline-right { order: 2; text-align: left; }
  .timeline-item:nth-child(even) .timeline-left { order: 1; display: none; }
  .timeline-item:nth-child(even) .timeline-center { order: 1; }

  .dest-detail.active { grid-template-columns: 1fr; }
  .dest-detail-visual { height: 320px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .navbar .nav-logo-img { height: 64px; }
  .navbar.scrolled .nav-logo-img { height: 54px; }
}

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

  /* Navbar */
  .navbar { padding: 10px 0; }
  .navbar.scrolled { padding: 8px 0; }
  .navbar .nav-logo-img,
  .navbar.scrolled .nav-logo-img { height: 50px; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .about-checklist { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-quick-cards { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-submit { grid-column: 1; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-logo-img { height: 64px; padding: 8px 14px; }
  .footer-contact-list { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Type scale */
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 15px; }
  .page-hero { padding: 110px 0 60px; }
  .page-hero-title { font-size: 28px; }
  .page-hero-subtitle { font-size: 15px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 14px; }
  .cta-title { font-size: clamp(24px, 5vw, 32px); }

  /* About visual */
  .about-img-main { height: 340px; }

  /* Destinations */
  .dest-info-cards { grid-template-columns: 1fr; }
  .dest-detail-visual { height: 260px; }
  .dest-detail-info h2 { font-size: 32px; }
  .dest-tabs { gap: 8px; }
  .dest-tab { padding: 8px 16px; font-size: 13px; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Comparison table */
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  /* Cards padding */
  .contact-info-card, .contact-form-wrapper { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-pad { padding: 50px 0; }

  /* Navbar */
  .navbar .nav-logo-img,
  .navbar.scrolled .nav-logo-img { height: 44px; }
  .navbar, .navbar.scrolled { padding: 8px 0; }

  /* Layout */
  .hero-stats { flex-direction: column; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  /* Type */
  .hero-title { font-size: 22px; }
  .page-hero-title { font-size: 24px; }
  .section-title { font-size: 22px; }

  /* Destinations */
  .dest-tabs { gap: 6px; }
  .dest-tab { padding: 7px 12px; font-size: 12px; }
  .dest-detail-visual { height: 220px; }
  .dest-detail-info h2 { font-size: 26px; }

  /* About visual */
  .about-img-main { height: 280px; }

  /* Footer logo */
  .footer-logo-img { height: 56px; padding: 7px 12px; }

  /* Inline-styled hero CTAs / decorative inline flex rows wrap nicely */
  .page-hero-content > div[style*="display:flex"] { flex-direction: column; align-items: stretch !important; }
  .page-hero-content > div[style*="display:flex"] .btn { width: 100%; justify-content: center; }
}
