/* =========================================================
   FlyGo Tour & Travels — Premium Travel Website
   Tech: HTML5 / CSS3 / Bootstrap 5 / Vanilla JS
   ========================================================= */

/* -----------------------------
   1. CSS Variables / Tokens
------------------------------ */
:root {
  --navy-900: #07142b;
  --navy-800: #0a1d3a;
  --navy-700: #0e2547;
  --navy-600: #143063;
  --navy-500: #1f3f7a;

  --orange-500: #f57b1c;
  --orange-400: #ff8a2b;
  --orange-300: #ffa75d;
  --orange-glow: rgba(245, 123, 28, .45);

  --green-700: #0f4c3a;
  --green-600: #14613f;
  --green-500: #1c7a4f;

  --gold: #f5b301;

  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dfe3eb;
  --gray-300: #c5cdd9;
  --gray-400: #98a3b5;
  --gray-500: #6b778c;
  --gray-600: #4b566b;
  --gray-700: #2c3548;
  --ink: #0c1626;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(10, 29, 58, .06);
  --shadow-md: 0 12px 30px rgba(10, 29, 58, .10);
  --shadow-lg: 0 24px 60px rgba(10, 29, 58, .16);
  --shadow-glow: 0 12px 40px rgba(245, 123, 28, .35);

  --font-display: "Outfit", "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", "Outfit", system-ui, sans-serif;

  --container-max: 1240px;
  --section-pad-y: 90px;

  --grad-orange: linear-gradient(135deg, #ff8a2b 0%, #f57b1c 60%, #e2630a 100%);
  --grad-navy: linear-gradient(180deg, #0a1d3a 0%, #07142b 100%);
  --grad-hero-overlay: linear-gradient(
    100deg,
    rgba(7, 20, 43, .92) 0%,
    rgba(10, 29, 58, .78) 35%,
    rgba(10, 29, 58, .35) 60%,
    rgba(7, 20, 43, .12) 100%
  );
}

/* -----------------------------
   2. Reset & Base
------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--orange-500); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; }
::selection { background: var(--orange-500); color: white; }

/* generic container helper – Bootstrap container handles most cases */
.fg-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* Section heading */
.section-title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.section-title .scribble {
  display: inline-block;
  width: 56px;
  vertical-align: middle;
  margin-left: 10px;
  color: var(--orange-500);
}
.section-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s ease, color .25s ease;
}
.section-link:hover { color: var(--orange-500); gap: 14px; }

/* -----------------------------
   3. Buttons
------------------------------ */
.btn-fg {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-fg .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform .3s ease;
}
.btn-fg:hover .ic { transform: translateX(3px); }

.btn-orange {
  background: var(--grad-orange);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(245, 123, 28, .55);
  color: white;
}

.btn-green {
  background: var(--green-700);
  color: white;
}
.btn-green:hover { background: var(--green-600); color: white; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: white; }

.btn-play {
  background: transparent;
  color: white;
  padding-left: 0;
}
.btn-play .ic {
  width: 52px; height: 52px;
  background: white;
  color: var(--navy-800);
  font-size: 14px;
  box-shadow: 0 0 0 6px rgba(255,255,255,.18);
}
.btn-play:hover { color: white; }
.btn-play:hover .ic { background: var(--orange-400); color: white; }

/* -----------------------------
   4. Navbar
------------------------------ */
.fg-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, box-shadow .35s ease;
}
.fg-nav.scrolled {
  background: rgba(7, 20, 43, .85);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.fg-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.fg-nav .navbar-brand img{width: 60px;}
.fg-logo {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f3f7a 0%, #0a1d3a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fg-logo svg { width: 28px; height: 28px; }
.fg-brand-text { line-height: 1; }
.fg-brand-text b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: white;
}
.fg-brand-text span {
  display: block;
  font-size: 9.5px;
  letter-spacing: .35em;
  opacity: .75;
  margin-top: 3px;
  color: white;
}

.fg-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.fg-nav .nav-links a {
  color: rgba(255,255,255,.86);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color .25s ease;
}
.fg-nav .nav-links a:hover { color: white; }
.fg-nav .nav-links li.active > a {
  color: white;
}
.fg-nav .nav-links li.active > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
}

/* dropdowns */
.fg-nav .has-dd { position: relative; }
.fg-nav .dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: rgba(10, 29, 58, .95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  list-style: none;
  margin: 0;
}
.fg-nav .has-dd:hover .dd-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.fg-nav .dd-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.fg-nav .dd-menu li a:hover { background: rgba(255,255,255,.06); color: var(--orange-300); }

/* phone CTA pill */
.fg-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 8px;
  color: white;
  backdrop-filter: blur(8px);
}
.fg-phone .ph-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.fg-phone small { font-size: 11px; opacity: .7; display: block; line-height: 1; margin-bottom: 3px; }
.fg-phone strong { font-size: 14px; font-weight: 600; line-height: 1; letter-spacing: .02em; }

.fg-burger {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (max-width: 991px) { .fg-burger { display: inline-flex; } }

/* mobile drawer */
.fg-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: var(--navy-900);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,.0,.2,1);
  padding: 24px;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,.4);
}
.fg-drawer.open { transform: translateX(0); }
.fg-drawer .close-btn {
  background: rgba(255,255,255,.08);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fg-drawer ul { list-style: none; padding: 0; margin: 24px 0; }
.fg-drawer ul li a {
  display: block;
  padding: 14px 12px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
}
.fg-drawer ul li a:hover { color: var(--orange-300); }

/* drawer submenu */
.fg-drawer .drawer-has-sub { border-bottom: 1px solid rgba(255,255,255,.06); }
.fg-drawer .drawer-has-sub > ul > li > a { border-bottom: none; }
.fg-drawer .drawer-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fg-drawer .drawer-parent > a {
  border-bottom: none;
  flex: 1;
}
.fg-drawer .drawer-toggle {
  background: rgba(255,255,255,.07);
  border: none;
  color: rgba(255,255,255,.7);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  transition: background .2s ease, transform .3s ease;
  flex-shrink: 0;
}
.fg-drawer .drawer-toggle:hover { background: rgba(255,255,255,.13); color: white; }
.fg-drawer .drawer-has-sub.open .drawer-toggle { transform: rotate(180deg); background: var(--orange-500); color: white; }
.fg-drawer .drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
}
.fg-drawer .drawer-has-sub.open .drawer-sub {
  max-height: 400px;
  padding: 4px 0 8px !important;
  margin: 0 0 4px !important;
}
.fg-drawer .drawer-sub li a {
  padding: 10px 12px 10px 22px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fg-drawer .drawer-sub li a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
  opacity: .7;
}
.fg-drawer .drawer-sub li a:hover { color: var(--orange-300); }
.fg-drawer .drawer-sub li a:hover::before { opacity: 1; }
.fg-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.fg-drawer-backdrop.show { opacity: 1; visibility: visible; }

/* -----------------------------
   5. Hero
------------------------------ */
.hero {
  position: relative;
  min-height: 760px;
  padding: 140px 0 220px;
  color: white;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center right;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--grad-hero-overlay);
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: "Caveat", "Outfit", cursive;
  font-size: 36px;
  font-weight: 600;
  color: var(--orange-400);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.hero-eyebrow svg { width: 60px; height: 14px; color: rgba(255,255,255,.7); }

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 14px 0 18px;
  color: white;
}
.hero p.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  max-width: 580px;
  margin: 0 0 30px;
  opacity: .92;
}

.hero-icons {
  display: flex;
  gap: 18px;
  margin: 26px 0 36px;
  flex-wrap: wrap;
}
.hero-icon {
  text-align: center;
  color: white;
  animation: floaty 6s ease-in-out infinite;
}
.hero-icon:nth-child(2) { animation-delay: .8s; }
.hero-icon:nth-child(3) { animation-delay: 1.6s; }
.hero-icon:nth-child(4) { animation-delay: 2.4s; }
.hero-icon .bubble {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 22px;
  color: white;
  transition: transform .3s ease, background .3s ease;
}
.hero-icon:hover .bubble { transform: scale(1.08); background: rgba(255,255,255,.16); }
.hero-icon span { font-size: 13.5px; font-weight: 500; opacity: .92; }

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

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* floating particles */
.hero-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  filter: blur(.5px);
  z-index: 1;
  pointer-events: none;
  animation: rise 10s linear infinite;
  opacity: 0;
}
@keyframes rise {
  0% { transform: translateY(0) scale(.8); opacity: 0; }
  10% { opacity: .8; }
  90% { opacity: .6; }
  100% { transform: translateY(-120vh) scale(1.1); opacity: 0; }
}

/* social rail */
.social-rail {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.social-rail .label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: .35em;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.social-rail a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-rail a.fb { background: #1877f2; }
.social-rail a.ig { background: linear-gradient(135deg,#feda75,#d62976,#962fbf); }
.social-rail a.yt { background: #ff0000; }
.social-rail a.li { background: #0a66c2; }
.social-rail a:hover { transform: translateY(-2px) scale(1.1); }

/* -----------------------------
   6. Booking Search Panel
------------------------------ */
.booking-wrap {
  position: relative;
  margin-top: -130px;
  z-index: 5;
}
.booking-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-100);
  padding: 0 8px;
}
.booking-tab {
  flex: 1;
  background: none;
  border: 0;
  padding: 22px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition: color .25s ease;
}
.booking-tab i { font-size: 16px; }
.booking-tab.active { color: var(--green-700); font-weight: 600; }
.booking-tab.active::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: -1px;
  height: 2px;
  background: var(--green-700);
}
.booking-tab:hover { color: var(--green-600); }

.booking-form {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.1fr 1.1fr auto;
  gap: 0;
  align-items: stretch;
  padding: 18px;
}
.booking-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-right: 1px solid var(--gray-100);
}
.booking-field:last-of-type { border-right: 0; }
.booking-field .f-ic {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--orange-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.booking-field .f-input,
.booking-field input,
.booking-field select {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13.5px;
  color: var(--gray-500);
  padding: 0;
  width: 100%;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
}
.booking-field select { padding-right: 18px; }
.booking-field .field-text { flex: 1; min-width: 0; }
.booking-search-btn {
  align-self: stretch;
  margin: 4px 4px 4px 12px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--green-700);
  color: white;
  font-weight: 600;
  font-size: 14.5px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .25s ease, transform .25s ease;
}
.booking-search-btn:hover { background: var(--green-600); transform: translateY(-1px); }

/* -----------------------------
   7. Stats
------------------------------ */
.stats-section {
  padding: 50px 0 30px;
}
.stats-bar {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.05fr;
  align-items: stretch;
  overflow: hidden;
}
.stat-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-right: 1px solid var(--gray-100);
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .s-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--orange-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.stat-cell .s-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-cell .s-lbl {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.2;
}
.stat-cell.guarantee {
  background: var(--gray-100);
}
.stat-cell.guarantee .s-ic { background: rgba(15, 76, 58, .12); color: var(--green-700); }
.stat-cell.guarantee .s-num { font-size: 16px; font-weight: 600; }

/* -----------------------------
   8. Popular Destinations
------------------------------ */
.destinations-section { padding: 30px 0 60px; }
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.dest-card .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,43,0) 35%, rgba(7,20,43,.85) 100%);
  z-index: 1;
}
.dest-card:hover .img { transform: scale(1.08); }
.dest-card .pin {
  position: absolute;
  top: 14px; left: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  font-size: 13px;
}
.dest-card .info {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  z-index: 2;
  color: white;
}
.dest-card .info h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.dest-card .info p {
  font-size: 13px;
  margin: 0;
  opacity: .92;
}

/* swiper nav */
.swiper-arrows {
  position: relative;
}
.swiper-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.swiper-nav-btn:hover { background: var(--orange-500); color: white; }
.swiper-nav-btn.prev { left: -56px; }
.swiper-nav-btn.next { right: -56px; }

/* -----------------------------
   9. Featured Tour Packages
------------------------------ */
.packages-section { padding: 30px 0 60px; }
.pkg-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(10, 29, 58, .14);
}
.pkg-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.pkg-img > div {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.pkg-card:hover .pkg-img > div { transform: scale(1.08); }
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange-500);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.pkg-badge.green { background: var(--green-700); }
.pkg-badge.blue  { background: #1f6fd0; }
.pkg-badge.purple{ background: #6c47c2; }

.pkg-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
  border: 0;
  z-index: 2;
  transition: color .2s ease, transform .2s ease;
}
.pkg-wishlist.active, .pkg-wishlist:hover { color: #e23b59; transform: scale(1.1); }

.pkg-body { padding: 18px 20px 20px; }
.pkg-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.pkg-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.pkg-meta i { color: var(--orange-500); font-size: 12px; }
.pkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.pkg-price small { font-size: 12px; font-weight: 500; color: var(--gray-500); display: block; margin-top: 4px; }
.pkg-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
}
.pkg-rating span { color: var(--gray-500); margin-left: 4px; }
.pkg-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pkg-btn {
  display: block;
  width: 100%;
  background: var(--green-700);
  color: white;
  text-align: center;
  padding: 11px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  transition: background .25s ease;
}
.pkg-btn:hover { background: var(--green-600); color: white; }

/* -----------------------------
   10. Why Choose Us
------------------------------ */
.why-section { padding: 20px 0 70px; }
.why-grid {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 4fr;
  overflow: hidden;
}
.why-banner {
  background: var(--grad-navy);
  color: white;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-banner::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(245, 123, 28, .15);
  filter: blur(40px);
}
.why-banner span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-banner h3 {
  font-size: 30px;
  color: var(--orange-400);
  margin: 0 0 12px;
  font-weight: 700;
}
.why-banner p {
  font-size: 13.5px;
  opacity: .85;
  margin: 0;
  line-height: 1.6;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.why-feat {
  padding: 32px 22px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: background .25s ease;
}
.why-feat:last-child { border-right: 0; }
.why-feat:hover { background: var(--off-white); }
.why-feat .w-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--orange-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  transition: transform .3s ease, background .3s ease;
}
.why-feat:hover .w-ic { transform: translateY(-4px) rotate(-6deg); background: var(--orange-500); color: white; }
.why-feat h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.why-feat p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* -----------------------------
   11. Testimonials
------------------------------ */
.testimonial-section { padding: 30px 0 80px; text-align: center; }
.testimonial-section .section-title { display: inline-block; }
.test-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  margin-bottom: 36px;
}
.test-head .swiper-arrows-inline {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; gap: 10px;
}
.test-head .swiper-arrows-inline button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.test-head .swiper-arrows-inline button:hover { background: var(--orange-500); color: white; border-color: var(--orange-500); }
.test-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  height: 100%;
}
.test-card p.txt {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0 0 18px;
}
.test-foot {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--gray-100);
}
.test-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.test-stars { color: var(--gold); font-size: 12px; margin-left: auto; letter-spacing: 1px; }

/* -----------------------------
   12. Newsletter
------------------------------ */
.newsletter-section {
  position: relative;
  padding: 60px 0 70px;
  color: white;
  overflow: hidden;
  margin-top: 40px;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,20,43,.92), rgba(10,29,58,.78)),
              url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80") center/cover;
  z-index: -1;
}
.newsletter-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.newsletter-card .nl-ic {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 0 8px rgba(255,255,255,.06);
}
.newsletter-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin: 0 0 4px;
  font-weight: 700;
}
.newsletter-card p { margin: 0; opacity: .8; font-size: 14.5px; }
.newsletter-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  width: min(520px, 100%);
  gap: 10px;
}
.newsletter-form i { color: var(--gray-400); }
.newsletter-form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  padding: 12px 0;
  font-family: inherit;
}
.newsletter-form button {
  background: var(--grad-orange);
  color: white;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-glow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.newsletter-form button:hover { transform: translateY(-1px); }

.nl-decor {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1400&q=70");
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: -1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 50%);
          mask-image: linear-gradient(90deg, transparent 0%, black 50%);
}
.nl-plane {
  position: absolute;
  right: 8%;
  top: 30%;
  font-size: 28px;
  color: white;
  opacity: .9;
  transform: rotate(-25deg);
  animation: planeFly 8s ease-in-out infinite;
}
.nl-plane::before {
  content: "- - - - - - -";
  position: absolute;
  right: calc(100% + 6px);
  top: 12px;
  color: white;
  opacity: .6;
  letter-spacing: 4px;
  font-size: 18px;
}
@keyframes planeFly {
  0%, 100% { transform: rotate(-25deg) translateX(0); }
  50% { transform: rotate(-25deg) translateX(-30px); }
}

/* -----------------------------
   13. Footer
------------------------------ */
.fg-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding: 70px 0 24px;
  font-size: 14px;
  position: relative;
}
.fg-footer h5 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 18px;
}
.fg-footer ul { list-style: none; padding: 0; margin: 0; }
.fg-footer ul li { margin-bottom: 10px; font-size: 13.5px; }
.fg-footer ul li a {
  color: rgba(255,255,255,.7);
  transition: color .2s ease, padding-left .2s ease;
  position: relative;
}
.fg-footer ul li a:hover { color: var(--orange-300); padding-left: 4px; }
.fg-footer .footer-about p { font-size: 13px; line-height: 1.7; opacity: .75; }
.fg-footer .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
}
.fg-footer .contact-row i {
  color: var(--orange-400);
  font-size: 14px;
  width: 16px;
  margin-top: 4px;
}
.fg-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.fg-footer .footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  transition: transform .2s ease, opacity .2s ease;
}
.fg-footer .footer-social a:hover { transform: translateY(-2px); }
.footer-social a.fb { background: #1877f2; }
.footer-social a.ig { background: linear-gradient(135deg,#feda75,#d62976,#962fbf); }
.footer-social a.yt { background: #ff0000; }
.footer-social a.li { background: #0a66c2; }
.footer-social a.pi { background: #e60023; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .heart { color: #ff5470; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 950;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .35);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.06); color: white; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* -----------------------------
   14. Responsive
------------------------------ */
@media (max-width: 1199px) {
  .swiper-nav-btn.prev { left: -22px; }
  .swiper-nav-btn.next { right: -22px; }
  .why-features { grid-template-columns: repeat(3, 1fr); }
  .why-feat:nth-child(3n) { border-right: 0; }
  .why-grid { grid-template-columns: 1fr 2fr; }
}
@media (max-width: 991px) {
  .fg-nav .nav-links, .fg-phone, .fg-nav .nav-cta { display: none; }
  .fg-burger { display: inline-flex; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-field { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .booking-search-btn { grid-column: 1 / -1; margin: 12px 0 0; padding: 14px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: repeat(2, 1fr); }
  .why-feat:nth-child(2n) { border-right: 0; }
  .newsletter-card { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .newsletter-form { margin: 0 auto; }
  .social-rail { display: none; }
  .hero { padding: 130px 0 200px; min-height: 720px; }
  .booking-tab span.lbl { display: none; }
  .booking-tab i { font-size: 18px; }
}
@media (max-width: 575px) {
  .hero { padding: 120px 0 220px; min-height: 680px; }
  .hero h1 { font-size: 44px; }
  .hero-eyebrow { font-size: 28px; }
  .booking-form { grid-template-columns: 1fr; padding: 12px; }
  .why-features { grid-template-columns: 1fr; }
  .why-feat { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .booking-tabs { padding: 0; flex-wrap: wrap; }
  .booking-tab { flex: 1 1 50%; padding: 16px 8px; font-size: 13px; }
  .booking-tab.active::after { left: 8px; right: 8px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-cell { border-bottom: 1px solid var(--gray-100); }
  .stats-section { padding: 30px 0 10px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* -----------------------------
   15. International Tours
------------------------------ */
.intl-section { padding: 30px 0 70px; background: var(--off-white); }
.intl-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  cursor: pointer;
}
.intl-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .9s ease;
}
.intl-card:hover .img { transform: scale(1.08); }
.intl-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,20,43,0) 30%, rgba(7,20,43,.92) 100%);
  z-index: 1;
}
.intl-card .flag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.intl-card .info {
  position: absolute;
  bottom: 18px; left: 22px; right: 22px;
  z-index: 2; color: white;
}
.intl-card .info h3 {
  font-size: 24px; font-weight: 700; margin: 0 0 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.intl-card .info p {
  font-size: 13px; margin: 0 0 12px; opacity: .88;
}
.intl-card .info .row-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; opacity: .92;
}
.intl-card .info .price {
  font-weight: 700; font-family: var(--font-display); font-size: 18px;
  color: var(--orange-300);
}
.intl-card .info .row-bottom .meta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14);
  padding: 4px 10px; border-radius: var(--radius-pill);
}

/* -----------------------------
   16. Gallery
------------------------------ */
.gallery-section { padding: 30px 0 70px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
  isolation: isolate;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .4s ease;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,20,43,0) 60%, rgba(7,20,43,.7));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .zoom-ic {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .zoom-ic { opacity: 1; transform: translateY(0); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.big  { grid-row: span 2; grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 20, 43, .92);
  backdrop-filter: blur(8px);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.show { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox .lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.24); }
.lightbox .lb-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox .lb-arrow:hover { background: rgba(255,255,255,.24); }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }

@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

/* -----------------------------
   17. FAQs
------------------------------ */
.faq-section { padding: 30px 0 80px; background: var(--off-white); }
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 36px;
}
.faq-head .eyebrow {
  font-family: "Caveat", cursive;
  color: var(--orange-500);
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item.open {
  border-color: rgba(245, 123, 28, .35);
  box-shadow: 0 14px 30px rgba(245, 123, 28, .1);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.faq-q .faq-num {
  font-family: var(--font-display);
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  flex-shrink: 0;
  width: 28px;
}
.faq-q .faq-text { flex: 1; }
.faq-q .faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.faq-item.open .faq-toggle {
  background: var(--orange-500);
  color: white;
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 22px 66px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Simple booking form responsive */
@media (max-width: 991px) {
  #bookingForm > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
  }
  #bookingForm > div > div:last-child button {
    width: 100%;
  }
}
@media (max-width: 575px) {
  #bookingForm > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .booking-wrap .booking-card {
    padding: 20px 18px !important;
  }
}

/* AOS-like fade utilities for non-AOS fallback */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* -----------------------------
   Lead Capture Popup
------------------------------ */
.fg-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(7, 20, 43, .75);
  backdrop-filter: blur(6px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.fg-popup-overlay.show { opacity: 1; visibility: visible; }

.fg-popup {
  background: var(--white);
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(7,20,43,.35);
  transform: translateY(30px) scale(.96);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  position: relative;
  max-height: 94vh;
}
.fg-popup-overlay.show .fg-popup { transform: translateY(0) scale(1); }

/* ---- Close button ---- */
.fg-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
  z-index: 10;
}
.fg-popup-close:hover { background: rgba(255,255,255,.32); }

/* ---- Left decorative panel ---- */
.fg-popup-left {
  background: linear-gradient(150deg, #0e2547 0%, #07142b 55%, #1a1040 100%);
  position: relative;
  overflow: hidden;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
}

/* floating circles decoration */
.fg-popup-left-deco { position: absolute; inset: 0; pointer-events: none; }
.pd-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.pd-c1 {
  width: 280px; height: 280px;
  background: var(--orange-500);
  top: -80px; right: -80px;
}
.pd-c2 {
  width: 180px; height: 180px;
  background: #4b7fd4;
  bottom: 40px; left: -60px;
}
.pd-c3 {
  width: 100px; height: 100px;
  background: var(--orange-400);
  top: 50%; left: 50%;
  opacity: .07;
}
.pd-plane {
  position: absolute;
  top: 28px; left: 28px;
  width: 52px; height: 52px;
  background: rgba(245,123,28,.18);
  border: 1px solid rgba(245,123,28,.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-400);
  font-size: 22px;
  transform: rotate(-20deg);
}

.fg-popup-left-body { position: relative; z-index: 1; }

.fg-popup-badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange-500);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.fg-popup-left-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: white;
  line-height: 1.22;
  margin-bottom: 14px;
}
.fg-popup-hl {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fg-popup-left-body > p {
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.fg-popup-perks {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fg-popup-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.fg-popup-perks li i {
  color: #4ade80;
  font-size: 14px;
  flex-shrink: 0;
}
.fg-popup-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.fg-popup-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.fg-popup-trust span:last-child {
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
}

/* ---- Right form panel ---- */
.fg-popup-form {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  overflow-y: auto;
}

.fg-popup-form-head { margin-bottom: 2px; }
.fg-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 8px;
}
.fg-popup-form-head h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.28;
  margin: 0 0 5px;
}
.fg-popup-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

/* ---- Fields ---- */
.fg-popup-field {
  position: relative;
  display: flex;
  align-items: center;
}
.fpf-icon {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-size: 13px;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.fg-popup-field input,
.fg-popup-field select {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--off-white);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none;
  -webkit-appearance: none;
}
.fg-popup-field input:focus,
.fg-popup-field select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(245,123,28,.13);
  background: #fff;
}
.fg-popup-field select { cursor: pointer; }

/* phone field with +91 prefix */
.fg-popup-phone-field { gap: 0; }
.fpf-prefix {
  height: 46px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: .02em;
  pointer-events: none;
}
.fg-popup-phone-field input {
  padding-left: 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-left: none;
}
.fg-popup-phone-field input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(245,123,28,.13);
}

/* ---- Submit button ---- */
.fg-popup-submit {
  width: 100%;
  height: 50px;
  background: var(--grad-orange);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(245,123,28,.38);
  transition: opacity .2s, transform .2s, box-shadow .2s;
  margin-top: 4px;
  letter-spacing: .02em;
}
.fg-popup-submit:hover { opacity: .93; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(245,123,28,.46); }
.fg-popup-submit:active { transform: translateY(0); }
.fg-popup-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- Skip link ---- */
.fg-popup-skip {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  cursor: pointer;
  margin: 0;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fg-popup-skip:hover { color: var(--gray-600); }

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .fg-popup { grid-template-columns: 1fr; max-height: 92vh; }
  .fg-popup-left { display: none; }
  .fg-popup-form { padding: 36px 24px 28px; }
  .fg-popup-close { background: rgba(12,22,38,.08); border-color: transparent; color: var(--gray-600); }
  
}
@media (max-width: 420px) {
  .fg-popup-form { padding: 28px 18px 24px; }
  .fg-popup-form-head h3 { font-size: 20px; }
}
