/* =================================================================
   FLYNK TOURS — style.css
   ================================================================= */

/* -----------------------------------------------------------------
   1. THEME / COLOR TOKENS
   -----------------------------------------------------------------
   👉 TO CHANGE YOUR ENTIRE SITE COLOR SCHEME: edit ONLY this block.
   All 16 pages will update automatically.
   Pre-made palettes are at the bottom of this CSS file.
   ----------------------------------------------------------------- */
:root {
  /* Main brand colors — change these 4 values to re-theme everything */
  --brand-primary: #0a2540;        /* Navy — used for headers, footer, main text */
  --brand-primary-soft: #1b3a5b;   /* Lighter version of primary */
  --brand-accent: #ff6b4a;         /* Coral — used for buttons, highlights */
  --brand-accent-dark: #e85a3a;    /* Darker accent for hover states */

  /* Backgrounds */
  --bg-main: #faf7f2;              /* Cream — page background */
  --bg-white: #ffffff;
  --bg-gray-100: #f5f5f5;
  --bg-gray-200: #e5e5e5;

  /* Text */
  --text-dark: var(--brand-primary);
  --text-muted: #737373;
  --text-light: #404040;

  /* Accents for extra colors */
  --color-gold: #d4a24c;
  --color-success: #16a34a;
  --color-whatsapp: #25D366;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.15);
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body), "Noto Color Emoji", "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  color: var(--text-dark);
  background: var(--bg-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============== FLAG EMOJI FIX ==============
   Force proper flag rendering across ALL platforms (including Windows).
   Windows/Edge normally shows "CA/GB/US" letters instead of flag graphics.
   Loading Noto Color Emoji from Google Fonts fixes this.
   !important used because these need to override h4 heading font-family.
*/
.flag,
.country-flag,
.visa-free-grid li,
[data-flag] {
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", var(--font-body), sans-serif !important;
  font-weight: 400 !important;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ================================================================
   3. HEADER / NAV
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

/* LOGO + TAGLINE ROTATOR (fixed height so tagline is fully visible) */
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 180px;
}
.logo {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: -0.03em;
}
.logo span { color: var(--brand-accent); }

.tagline-rotator {
  height: 18px;            /* ← fixed height so tagline never clips */
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 18px;        /* match height for vertical centering */
}
.tagline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: nowrap;
}
.tagline.active {
  opacity: 1;
  transform: translateY(0);
}
.tagline.leaving {
  opacity: 0;
  transform: translateY(-100%);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brand-primary);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand-accent); }

.nav-cta {
  background: var(--brand-primary);
  color: var(--bg-white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--brand-accent);
  transform: translateY(-1px);
}

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--brand-primary);
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--bg-main); color: var(--brand-accent); }

.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--brand-primary);
  padding: 4px 8px;
}

/* ================================================================
   4. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--brand-accent);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}
.btn-primary:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 74, 0.4);
}
.btn-secondary {
  background: var(--bg-white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-secondary:hover { background: var(--brand-primary); color: var(--bg-white); }
.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}
.btn-outline:hover { background: var(--bg-white); color: var(--brand-primary); }
.btn-whatsapp { background: var(--color-whatsapp); color: var(--bg-white); }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-call { background: var(--brand-primary); color: var(--bg-white); }
.btn-call:hover { background: var(--brand-primary-soft); }

/* ================================================================
   5. HERO WITH SLIDESHOW
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  color: var(--bg-white);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.75) 0%, rgba(10,37,64,0.4) 100%);
  z-index: 1;
}
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; animation: fadeUp 0.8s ease-out; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin-bottom: 18px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--brand-accent); font-weight: 500; }
.hero p {
  font-size: 17px;
  margin-bottom: 28px;
  opacity: 0.95;
  max-width: 580px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-bar {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--brand-accent);
  line-height: 1;
}
.trust-label { font-size: 13px; opacity: 0.9; max-width: 140px; line-height: 1.3; }

/* ================================================================
   6. QUICK ENQUIRY / SEARCH BAR
   ================================================================ */
.search-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  margin-top: -70px;
  position: relative;
  z-index: 10;
}
.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--bg-gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--brand-primary);
  background: var(--bg-white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
}

/* ================================================================
   7. SECTIONS
   ================================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(32px, 4.2vw, 50px); margin-bottom: 16px; }
.section h2 em { font-style: italic; color: var(--brand-accent); }
.section-head p { font-size: 17px; color: var(--text-light); }

/* ================================================================
   8. SERVICES / CARD GRIDS
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent);
}
.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 24px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 14.5px; margin-bottom: 14px; }
.service-card .arrow { color: var(--brand-accent); font-weight: 600; font-size: 14px; }

/* ================================================================
   9. DEST CARDS (Popular destinations)
   ================================================================ */
.dest-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.dest-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  background: var(--bg-gray-100);
  transition: all 0.2s;
}
.dest-tab.active { background: var(--brand-primary); color: var(--bg-white); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.1); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.9), transparent 60%);
}
.dest-info {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: var(--bg-white);
  z-index: 2;
}
.dest-info h3 { font-size: 24px; margin-bottom: 4px; }
.dest-info p { font-size: 13.5px; opacity: 0.9; }
.dest-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-accent);
  color: var(--bg-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12.5px;
  z-index: 2;
}

/* ================================================================
   10. COUNTRY CARDS (Visa) — no codes, only names
   ================================================================ */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.country-card {
  background: var(--bg-white);
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.country-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-md);
}
.country-card .country-info { flex: 1; min-width: 0; }
.country-card .country-arrow {
  color: var(--brand-accent);
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}
.country-card:hover .country-arrow {
  opacity: 1;
  transform: translateX(0);
}
.country-flag {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.country-card h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.country-card p { font-size: 11.5px; color: var(--text-muted); }

.more-countries {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  color: var(--bg-white);
}
.more-countries h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--bg-white);
}
.more-countries h3 em { color: var(--brand-accent); font-style: italic; }
.more-countries p { opacity: 0.85; margin-bottom: 20px; }

/* Visa disclaimer box */
.disclaimer {
  background: rgba(212, 162, 76, 0.12);
  border-left: 4px solid var(--color-gold);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-light);
}
.disclaimer strong { color: var(--brand-primary); }

/* Visa-free countries toggle button and panel */
.visa-free-box {
  margin-top: 28px;
  background: var(--bg-white);
  border: 1px solid var(--bg-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.visa-free-toggle {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-primary);
}
.visa-free-toggle::after {
  content: '+';
  font-size: 26px;
  color: var(--brand-accent);
  transition: transform 0.3s;
}
.visa-free-box.open .visa-free-toggle::after {
  transform: rotate(45deg);
}
.visa-free-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.visa-free-box.open .visa-free-panel { max-height: 800px; }
.visa-free-panel-inner { padding: 0 26px 24px; }
.visa-free-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.visa-free-grid li {
  list-style: none;
  padding: 8px 12px;
  background: var(--bg-main);
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   11. PACKAGE CARDS
   ================================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.pkg-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pkg-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg-gray-100);
}
.pkg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-image img { transform: scale(1.08); }
.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg-white);
  color: var(--brand-primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pkg-body { padding: 22px; }
.pkg-location {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.pkg-body h3 { font-size: 21px; margin-bottom: 10px; }
.pkg-meta {
  display: flex;
  gap: 14px;
  color: var(--text-light);
  font-size: 13.5px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bg-gray-100);
  padding-top: 14px;
  margin-top: 14px;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-accent);
}
.pkg-price small {
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

/* "Show more packages" button (big, centered) */
.more-pkgs-btn {
  display: block;
  margin: 40px auto 0;
  padding: 16px 40px;
  background: var(--brand-primary);
  color: var(--bg-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.more-pkgs-btn:hover {
  background: var(--brand-accent);
  transform: translateY(-2px);
}
.hidden-pkgs {
  display: none;
  margin-top: 26px;
  animation: fadeIn 0.5s;
}
.hidden-pkgs.show { display: grid; }

/* ================================================================
   12. PAGE HERO (no breadcrumb)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  color: var(--bg-white);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,74,0.15), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}
.page-hero h1 em { color: var(--brand-accent); font-style: italic; }
.page-hero p {
  font-size: 17px;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto;
}

/* ================================================================
   13. TWO-COL LAYOUTS
   ================================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.two-col h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}
.two-col ul { list-style: none; margin-top: 20px; }
.two-col ul li {
  padding: 9px 0;
  padding-left: 32px;
  position: relative;
  font-size: 15.5px;
}
.two-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--brand-accent);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ================================================================
   14. STATS / TRUST BADGES
   ================================================================ */
.stats-strip {
  background: var(--brand-primary);
  color: var(--bg-white);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13.5px; opacity: 0.85; }

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid var(--bg-gray-200);
  border-bottom: 1px solid var(--bg-gray-200);
  background: var(--bg-white);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}
.trust-badge span { font-size: 24px; }

/* ================================================================
   15. REVIEWS / TESTIMONIALS CAROUSEL (shows 3 at a time)
   ================================================================ */
.testi-section {
  background: var(--brand-primary);
  color: var(--bg-white);
}
.testi-section h2,
.testi-section .section-head p { color: var(--bg-white); }
.testi-section .section-eyebrow { color: var(--brand-accent); }

.testi-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  transition: opacity 0.4s ease;
}
.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  backdrop-filter: blur(10px);
}
.testi-stars {
  color: var(--color-gold);
  font-size: 17px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-white);
  font-size: 14px;
}
.testi-name { font-weight: 600; font-size: 14.5px; }
.testi-role { font-size: 12.5px; opacity: 0.7; }

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--bg-white);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 20px;
  transition: all 0.2s;
}
.testi-btn:hover {
  background: var(--brand-accent);
  transform: scale(1.1);
}
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.2s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--brand-accent);
  width: 24px;
  border-radius: 5px;
}

/* ================================================================
   16. FAQ ACCORDION
   ================================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--brand-accent);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-light);
  font-size: 15px;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer > div { padding: 0 24px 22px; }

/* ================================================================
   17. CTA STRIP
   ================================================================ */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(255,107,74,0.95), rgba(232,90,58,0.95)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=75') center/cover;
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-strip h2 em { font-style: italic; }
.cta-strip p { font-size: 17px; margin-bottom: 28px; opacity: 0.95; }
.cta-strip .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   18. MODAL
   ================================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.modal {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  margin: auto;
}
.modal-header {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-gray-100);
}
.modal-header img { width: 100%; height: 100%; object-fit: cover; }
.modal-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.85), transparent 60%);
}
.modal-title {
  position: absolute;
  bottom: 20px;
  left: 28px;
  right: 28px;
  color: var(--bg-white);
  z-index: 2;
}
.modal-title h3 { font-size: 28px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--brand-primary);
  font-size: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--brand-accent);
  color: var(--bg-white);
  transform: rotate(90deg);
}
.modal-body { padding: 28px; }
.modal-body h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-accent);
  margin-top: 18px;
  margin-bottom: 10px;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p, .modal-body li {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
}
.modal-body ul { padding-left: 20px; margin-bottom: 12px; }
.modal-body li { margin-bottom: 6px; }
.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.info-cell {
  background: var(--bg-main);
  padding: 12px 14px;
  border-radius: 10px;
}
.info-cell .label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 700;
}
.info-cell .value {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-primary);
  font-weight: 500;
  margin-top: 2px;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.modal-actions .btn { flex: 1; min-width: 140px; }
.modal-note {
  background: var(--bg-main);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-light);
  margin-top: 14px;
}

/* ================================================================
   19. STUDY ABROAD CARDS (with university images, not flags)
   ================================================================ */
.study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.study-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s;
}
.study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.study-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.study-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.6), transparent 50%);
}
.study-body { padding: 20px; }
.study-body h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.study-body p {
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ================================================================
   20. CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
}
.contact-info {
  background: var(--brand-primary);
  color: var(--bg-white);
  padding: 44px 34px;
  border-radius: var(--radius-md);
}
.contact-info h3 { font-size: 26px; margin-bottom: 14px; }
.contact-info > p { opacity: 0.85; margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-item p { opacity: 1; margin-bottom: 0; font-size: 15px; }
.contact-item a { color: var(--brand-accent); }
.social-row { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.social-row a:hover { background: var(--brand-accent); transform: translateY(-3px); }

.contact-form {
  background: var(--bg-white);
  padding: 44px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 26px; margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form .form-group { margin-bottom: 14px; }
.contact-form textarea { min-height: 120px; resize: vertical; }

.form-success {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.12));
  color: var(--color-success);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.25);
  margin-top: 18px;
  display: none;
  font-size: 14px;
  gap: 14px;
  align-items: flex-start;
  animation: success-slide-in 0.4s ease;
}
.form-success .success-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
.form-success strong {
  display: block;
  color: var(--text-dark);
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 600;
}
.form-success p {
  margin: 0;
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.5;
}
@keyframes success-slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== FLOATING SUCCESS TOAST ============== */
.success-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  background: white;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.25), 0 4px 12px rgba(10, 37, 64, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 460px;
  width: calc(100% - 32px);
  z-index: 10000;
  border-left: 5px solid var(--color-success);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  opacity: 0;
}
.success-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.success-toast .toast-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}
.success-toast .toast-body {
  flex: 1;
  min-width: 0;
}
.success-toast .toast-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.success-toast .toast-message {
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.5;
}
.success-toast .toast-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-top: -2px;
}
.success-toast .toast-close:hover {
  background: var(--bg-gray-100);
}
@media (max-width: 640px) {
  .success-toast {
    top: 14px;
    padding: 14px 16px;
    gap: 12px;
  }
  .success-toast .toast-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .success-toast .toast-title { font-size: 15px; }
  .success-toast .toast-message { font-size: 12.5px; }
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 42px;
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ================================================================
   21. BLOG
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-image { height: 200px; overflow: hidden; background: var(--bg-gray-100); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12.5px;
  margin-bottom: 10px;
}
.blog-meta .tag {
  background: rgba(255,107,74,0.1);
  color: var(--brand-accent);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
}
.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--text-light);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.blog-card .read-more { color: var(--brand-accent); font-weight: 600; font-size: 14px; }

.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { font-size: 32px; margin: 40px 0 14px; }
.post-body h3 { font-size: 24px; margin: 30px 0 12px; }
.post-body p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-body li {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.7;
}
.post-body blockquote {
  border-left: 4px solid var(--brand-accent);
  background: var(--bg-main);
  padding: 20px 28px;
  margin: 28px 0;
  font-style: italic;
  border-radius: 8px;
}
.post-body img { border-radius: var(--radius-md); margin: 28px 0; }

/* ================================================================
   22. FOOTER
   ================================================================ */
.footer {
  background: var(--brand-primary);
  color: var(--bg-white);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand .logo {
  color: var(--bg-white);
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand p {
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14.5px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--brand-accent);
  transform: translateY(-3px);
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul a {
  opacity: 0.7;
  font-size: 13.5px;
  transition: opacity 0.2s;
}
.footer ul a:hover { opacity: 1; color: var(--brand-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  opacity: 0.6;
}

/* ================================================================
   23. FLOATING ACTIONS
   ================================================================ */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;              /* hide the emoji text inside the <a> tag */
  color: transparent;         /* extra safety */
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.2s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}
/* Official WhatsApp logo (inline SVG) — crisp on every display */
.fab-whatsapp {
  background-color: var(--color-whatsapp);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'><path d='M16.004 0h-.008C7.174 0 .001 7.174.001 16c0 3.503 1.129 6.752 3.05 9.388l-1.997 5.952 6.159-1.969a15.932 15.932 0 0 0 8.791 2.627c8.83 0 16.003-7.176 16.003-16S24.834 0 16.004 0zm9.313 22.596c-.386 1.09-1.919 1.993-3.141 2.257-.836.178-1.927.32-5.602-1.203-4.7-1.948-7.728-6.724-7.963-7.034-.227-.31-1.907-2.539-1.907-4.844s1.172-3.435 1.645-3.917c.389-.397.848-.577 1.129-.577.281 0 .563.002.809.015.26.013.609-.099.953.727.354.852 1.203 2.946 1.308 3.162.105.217.176.47.035.755-.141.286-.212.464-.418.715-.207.251-.434.561-.62.754-.207.216-.423.45-.182.884.24.434 1.071 1.765 2.301 2.861 1.58 1.409 2.914 1.844 3.349 2.06.434.217.688.181.942-.108.254-.289 1.085-1.267 1.374-1.701.289-.434.578-.362.975-.217.397.145 2.528 1.194 2.963 1.411.434.217.723.325.829.506.106.18.106 1.048-.28 2.138z'/></svg>");
  animation: pulse 2s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); }
/* Phone icon (inline SVG) */
.fab-call {
  background-color: var(--brand-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M6.62 10.79a15.053 15.053 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57a1 1 0 0 1-.24 1.02l-2.21 2.2z'/></svg>");
}
.fab-call:hover {
  transform: scale(1.1);
  background-color: var(--brand-accent);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.15); }
}

/* ================================================================
   24. STORY ROTATOR (About page)
   ================================================================ */
.story-rotator {
  position: relative;
  min-height: 280px;
}
.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.story-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-gray-200);
  cursor: pointer;
  transition: all 0.2s;
}
.story-dot.active {
  background: var(--brand-accent);
  width: 28px;
  border-radius: 5px;
}

/* ================================================================
   25. LANDING PAGE
   ================================================================ */
.lp-hero {
  min-height: 80vh;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.8), rgba(10,37,64,0.5)),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=75') center/cover fixed;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.lp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.lp-form-card {
  background: var(--bg-white);
  color: var(--brand-primary);
  padding: 34px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lp-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.lp-form-card .lp-offer {
  background: var(--brand-accent);
  color: var(--bg-white);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ================================================================
   26. CAREERS
   ================================================================ */
.job-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-accent);
  transition: all 0.2s;
}
.job-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.job-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.job-type {
  background: var(--bg-main);
  color: var(--brand-accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.job-meta {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.job-desc {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ================================================================
   27. LEGAL PAGES (Privacy / Terms)
   ================================================================ */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}
.legal-body h2 {
  font-size: 26px;
  margin: 30px 0 12px;
  color: var(--brand-primary);
}
.legal-body p, .legal-body li {
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 24px; margin-bottom: 16px; }

/* ================================================================
   28. ANIMATIONS
   ================================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.6s ease-out both; }

/* ================================================================
   29. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .search-form { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .lp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 14px;
    background: transparent;
  }
  .section { padding: 70px 0; }
  .search-form { grid-template-columns: 1fr; }
  .search-card { margin-top: -40px; padding: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: 80vh; }
  .hero-buttons .btn { flex: 1; min-width: 140px; }
  .trust-bar { gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modal-header { height: 180px; }
  .modal-body { padding: 22px; }
  .trust-badges { gap: 20px 28px; padding: 28px 16px; }
  .brand { min-width: auto; }

  /* Mobile logo + tagline — don't clip, allow breathing room */
  .logo { font-size: 22px; }
  .tagline-rotator {
    position: static;           /* stop absolute positioning that was clipping */
    height: auto;
    min-height: 14px;
    overflow: visible;          /* override the overflow:hidden from base */
    line-height: 1.25;
    font-size: 9px;
    letter-spacing: 0.08em;
    max-width: 180px;
    margin-top: 2px;
  }
  .tagline {
    position: static;           /* drop absolute positioning on mobile */
    transform: none;
    white-space: normal;
    display: none;              /* show only the active one, stacked naturally */
  }
  .tagline.active { display: block; }
  .tagline.leaving { display: none; }
  /* Header nav: reduce padding slightly to make more room */
  .nav { padding: 10px 18px; gap: 12px; }
}

/* ================================================================
   30. READY-MADE THEME PALETTES
   ================================================================
   To switch theme, copy any palette below into the :root block (top of this file).
   Just replace the 5 values (brand-primary, brand-primary-soft, brand-accent,
   brand-accent-dark, bg-main).

   PALETTE A — Navy + Coral (CURRENT)
     --brand-primary: #0a2540;  --brand-primary-soft: #1b3a5b;
     --brand-accent: #ff6b4a;   --brand-accent-dark: #e85a3a;
     --bg-main: #faf7f2;

   PALETTE B — Emerald + Gold (luxury travel)
     --brand-primary: #0d3b2e;  --brand-primary-soft: #1f5b4a;
     --brand-accent: #d4a24c;   --brand-accent-dark: #b68638;
     --bg-main: #f7f4ec;

   PALETTE C — Sunset Purple + Peach (modern, youthful)
     --brand-primary: #3a1c71;  --brand-primary-soft: #5a2ea3;
     --brand-accent: #ff8e72;   --brand-accent-dark: #e8764e;
     --bg-main: #fdf7f2;

   PALETTE D — Ocean Teal + Orange (adventure / beach)
     --brand-primary: #0b5563;  --brand-primary-soft: #137989;
     --brand-accent: #ff7a1f;   --brand-accent-dark: #e66700;
     --bg-main: #f0f8f9;

   PALETTE E — Midnight + Rose (premium, feminine)
     --brand-primary: #1a1a2e;  --brand-primary-soft: #2b2b4a;
     --brand-accent: #e94560;   --brand-accent-dark: #c22d49;
     --bg-main: #fdf5f6;

   PALETTE F — Forest + Mustard (earthy, travel-classic)
     --brand-primary: #2d4a2b;  --brand-primary-soft: #3d6b3a;
     --brand-accent: #d4a24c;   --brand-accent-dark: #b68638;
     --bg-main: #faf7f0;
   ================================================================ */
