/* ============================================================
   TravelsNooz — styles.css
   Brand: Teal + Coral | travelssnooz.com
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --primary:       #0D9488;
  --primary-dark:  #0F766E;
  --primary-light: #CCFBF1;
  --primary-mid:   #14B8A6;
  --accent:        #F97316;
  --accent-dark:   #EA6C09;
  --accent-light:  #FFF7ED;
  --gold:          #EAB308;
  --gold-light:    #FEFCE8;
  --navy:          #0F172A;
  --dark:          #1E293B;
  --dark-2:        #334155;
  --gray:          #64748B;
  --mid-gray:      #94A3B8;
  --light-gray:    #F0FDFA;
  --white:         #FFFFFF;
  --border:        #99F6E4;
  --border-gray:   #E2E8F0;
  --success:       #059669;
  --shadow-sm:     0 2px 10px rgba(13,148,136,0.08);
  --shadow:        0 4px 22px rgba(13,148,136,0.12);
  --shadow-md:     0 8px 32px rgba(13,148,136,0.16);
  --shadow-lg:     0 16px 56px rgba(13,148,136,0.20);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     28px;
  --transition:    0.22s ease;
}

/* ── Base & Reset ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

p {
  color: var(--gray);
  line-height: 1.78;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 84px 0;
}

.section-alt {
  padding: 84px 0;
  background-color: var(--light-gray);
}

.section-dark {
  padding: 84px 0;
  background-color: var(--navy);
}

/* ── Tags / Pills ────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  line-height: 1.4;
}

.tag-primary {
  background-color: var(--primary-light);
  color: var(--primary);
}

.tag-accent {
  background-color: var(--accent-light);
  color: var(--accent-dark);
}

.tag-teal {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.tag-gold {
  background-color: var(--gold-light);
  color: #92600A;
}

/* ── Section Header ──────────────────────────────────────── */
.sec-head {
  margin-bottom: 48px;
}

.sec-head.center {
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sec-sub {
  color: var(--gray);
  font-size: 1.04rem;
  max-width: 620px;
}

.sec-head.center .sec-sub {
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.4;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.35);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* Pulse animation */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background-color: var(--navy);
  height: 38px;
  display: flex;
  align-items: center;
}

.tb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tb-left,
.tb-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

.tb-left a,
.tb-right a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.tb-left a:hover,
.tb-right a:hover {
  color: var(--white);
}

.tb-dot {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(13,148,136,0.08);
  height: 70px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text .brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}

.logo-text .slogan {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav > a {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}

.nav > a:hover {
  color: var(--primary);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-phone:hover {
  background-color: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Dropdown */
.dd {
  position: relative;
}

.dd-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color var(--transition);
}

.dd-btn:hover {
  color: var(--primary);
}

.dd-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
  display: inline-block;
}

.dd.open .dd-arrow {
  transform: rotate(180deg);
}

.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 200;
}

.dd.open .dd-menu {
  display: block;
}

.dd-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  border-bottom: 1px solid var(--border-gray);
}

.dd-menu a:last-child {
  border-bottom: none;
}

.dd-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 22px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
.nav.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border-gray);
  z-index: 999;
  align-items: flex-start;
  gap: 4px;
}

.nav.nav-open > a,
.nav.nav-open .dd-btn {
  width: 100%;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-gray);
}

.nav.nav-open .dd-menu {
  position: static;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding-left: 16px;
  min-width: auto;
  width: 100%;
  background-color: var(--light-gray);
  border-radius: var(--radius);
  margin: 4px 0 8px;
}

.nav.nav-open .nav-phone {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 560px;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 45%, #0F172A 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* Floating plane */
.hero-plane {
  position: absolute;
  right: -40px;
  top: -20px;
  font-size: 300px;
  opacity: 0.05;
  animation: floatPlane 4s ease-in-out infinite;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

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

/* Decorative rings */
.hero-rings {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--primary-mid);
}

.hero-ring-1 {
  width: 280px;
  height: 280px;
  opacity: 0.15;
}

.hero-ring-2 {
  width: 420px;
  height: 420px;
  opacity: 0.10;
}

.hero-ring-3 {
  width: 560px;
  height: 560px;
  opacity: 0.07;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(20,184,166,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero-desc {
  color: rgba(255,255,255,0.83);
  font-size: 1.12rem;
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ht-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.ht-ico {
  font-size: 20px;
  line-height: 1;
}

/* ── Phone Strip ─────────────────────────────────────────── */
.phone-strip {
  background: linear-gradient(135deg, #F97316, #EA6C09);
  padding: 20px 0;
}

.ps-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ps-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.02rem;
}

.ps-num {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition);
}

.ps-num:hover {
  opacity: 0.9;
  color: var(--white);
}

.ps-avail {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
}

/* ── Service Cards ───────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.srv-card {
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.srv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--border);
}

.srv-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.srv-title {
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.srv-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}

.srv-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: all var(--transition);
}

.srv-link:hover {
  text-decoration: underline;
  gap: 8px;
}

/* ── Destinations ────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.dest-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

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

.dest-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
}

.dest-img-1 { background: linear-gradient(135deg, #0D9488, #0F172A); }
.dest-img-2 { background: linear-gradient(135deg, #F97316, #0F172A); }
.dest-img-3 { background: linear-gradient(135deg, #14B8A6, #334155); }
.dest-img-4 { background: linear-gradient(135deg, #0F766E, #1E293B); }
.dest-img-5 { background: linear-gradient(135deg, #EA6C09, #0F172A); }
.dest-img-6 { background: linear-gradient(135deg, #EAB308, #0D9488); }
.dest-img-7 { background: linear-gradient(135deg, #CCFBF1, #0F766E); }
.dest-img-8 { background: linear-gradient(135deg, #0F172A, #14B8A6); }

.dest-body {
  padding: 18px;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.dest-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.dest-sub {
  color: var(--gray);
  font-size: 0.83rem;
  margin-bottom: 8px;
}

.dest-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── Steps / How It Works ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  align-items: start;
}

.step-card {
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-ico {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
  text-align: center;
}

.step-arrow {
  color: var(--gray);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
}

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

.step-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Features ────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.feat-card {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
  background-color: var(--white);
}

.feat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.feat-ico {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
}

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

.feat-desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Airline Partners Strip ──────────────────────────────── */
.airlines-strip {
  background-color: var(--primary-light);
  padding: 28px 0;
}

.airlines-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.airline-tag {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
  border: 1px solid var(--border-gray);
  white-space: nowrap;
  transition: all var(--transition);
}

.airline-tag:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--border);
}

/* ── Service / Inner Page Hero ───────────────────────────── */
.page-hero {
  min-height: 360px;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 45%, #0F172A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.page-hero-plane {
  position: absolute;
  right: -20px;
  top: -10px;
  font-size: 240px;
  opacity: 0.05;
  animation: floatPlane 4s ease-in-out infinite;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

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

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 24px;
}

/* Breadcrumb */
.breadcrumb-nav {
  background-color: var(--primary-light);
  padding: 12px 0;
  font-size: 0.83rem;
}

.breadcrumb-nav .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.breadcrumb-nav a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--mid-gray);
}

/* Service layout */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 44px;
  padding: 64px 0 80px;
  align-items: start;
}

.svc-content h2 {
  font-size: 1.55rem;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.svc-content h2:first-child {
  margin-top: 0;
}

.svc-content h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.svc-content p {
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 14px;
}

.svc-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
  list-style: disc;
}

.svc-content ul li {
  color: var(--gray);
  margin-bottom: 9px;
  line-height: 1.75;
}

.svc-content ul li::marker {
  color: var(--primary);
}

/* Highlight box */
.highlight-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 22px 0;
}

.highlight-box p {
  color: var(--primary-dark);
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
}

/* Horizontal steps list */
.steps-horizontal {
  list-style: none;
  margin: 22px 0;
  counter-reset: step-counter;
}

.steps-horizontal li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border-left: 4px solid var(--primary);
  counter-increment: step-counter;
}

.steps-horizontal li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.sh-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.sh-desc {
  color: var(--gray);
  font-size: 0.88rem;
  margin: 0;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.benefit-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.benefit-ico {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-text h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.benefit-text p {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* Service Sidebar */
.svc-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 22px;
}

.sidebar-cta h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.s-phone {
  display: block;
  color: var(--white);
  font-size: 1.42rem;
  font-weight: 800;
  text-decoration: none;
  margin: 10px 0;
  transition: opacity var(--transition);
}

.s-phone:hover {
  opacity: 0.9;
  color: var(--white);
}

.s-email {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  text-decoration: none;
}

.s-email:hover {
  color: var(--white);
}

.sidebar-links {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
}

.sidebar-links h4 {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 700;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--gray);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border-gray);
  transition: all var(--transition);
}

.sidebar-links a:last-child {
  border-bottom: none;
}

.sidebar-links a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 22px;
}

.sidebar-links a.active {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  padding-left: 22px;
}

/* IATA box */
.iata-box {
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
}

.iata-box p {
  font-size: 0.82rem;
  color: #78350F;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq-section {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-gray);
  padding: 18px 0;
}

.faq-q {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.98rem;
  user-select: none;
}

.faq-arrow {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.78;
  font-size: 0.93rem;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 80px 0;
  align-items: start;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.ci-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.ci-ico {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.ci-text h4 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.ci-text p,
.ci-text a {
  color: var(--gray);
  font-size: 0.93rem;
  text-decoration: none;
  line-height: 1.6;
}

.ci-text a:hover {
  color: var(--primary);
}

/* Contact CTA box */
.contact-cta-box {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
}

.contact-cta-box h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.7;
}

.big-phone {
  display: block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
  margin: 16px 0;
  transition: opacity var(--transition);
}

.big-phone:hover {
  opacity: 0.9;
  color: var(--white);
}

.avail-badge {
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ── Policy Pages ────────────────────────────────────────── */
.pol-hero {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pol-hero.terms {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.pol-hero.privacy {
  background: linear-gradient(135deg, var(--primary-dark), var(--navy));
}

.pol-hero.refund {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
}

.pol-hero.disc-pg {
  background: linear-gradient(135deg, var(--navy), var(--primary-dark));
}

.pol-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.pol-hero p {
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Policy layout */
.pol-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  padding: 64px 0 90px;
  align-items: start;
}

.pol-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.pol-sidebar-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 600;
}

.pol-nav {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pol-nav a {
  display: block;
  padding: 12px 18px;
  color: var(--dark);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border-gray);
  transition: all var(--transition);
}

.pol-nav a:last-child {
  border-bottom: none;
}

.pol-nav a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

.pol-nav a.active {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  padding-left: 24px;
}

/* Contact box inside policy sidebar */
.contact-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  margin-top: 20px;
}

.contact-box h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-box p {
  color: rgba(255,255,255,0.82);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-box a {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin: 8px 0;
}

.contact-box a:hover {
  opacity: 0.9;
}

/* Policy body */
.pol-body h2 {
  font-size: 1.32rem;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 13px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.pol-body h2:first-child {
  margin-top: 0;
}

.pol-body p {
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 14px;
}

.pol-body ul,
.pol-body ol {
  padding-left: 22px;
  color: var(--gray);
  margin-bottom: 14px;
}

.pol-body ul {
  list-style: disc;
}

.pol-body ol {
  list-style: decimal;
}

.pol-body li {
  margin-bottom: 9px;
  line-height: 1.75;
}

/* Info table */
.info-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.info-tbl th {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}

.info-tbl td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-gray);
  color: var(--gray);
}

.info-tbl tr:nth-child(even) td {
  background-color: #F8FAFC;
}

/* Step list (policy) */
.step-list {
  list-style: none;
  margin: 22px 0;
  counter-reset: step-counter;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border-left: 4px solid var(--primary);
  counter-increment: step-counter;
}

.step-list li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.step-content h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.step-content p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}

/* Entity card */
.entity-card {
  background-color: #F8FAFC;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 16px 0;
}

.ec-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.entity-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.entity-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}

/* Disclaimer box */
.disc-box {
  background-color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 28px 0;
}

.disc-box h3 {
  color: #92600A;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.disc-box p {
  color: #78350F;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* IATA pill */
.iata-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #92600A;
  margin-top: 20px;
}

/* ── Disclaimer Strip ────────────────────────────────────── */
.disc-strip {
  background-color: var(--navy);
  padding: 22px 0;
}

.disc-strip p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.75;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background-color: var(--dark);
  padding: 60px 0 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 36px;
  padding-bottom: 40px;
}

.ft-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
}

.ft-iata {
  display: inline-block;
  background-color: var(--gold-light);
  border: 1px solid var(--gold);
  color: #92600A;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 14px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

.ft-logo .logo-mark-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ft-logo .brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.ft-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.ft-col ul li {
  margin-bottom: 9px;
}

.ft-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

.ft-col a:hover {
  color: var(--white);
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0 28px;
}

.ft-bottom p {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  line-height: 1.75;
}

.ft-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.ft-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--transition);
}

.ft-links a:hover {
  color: var(--white);
}

/* ── Utility Classes ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-8        { margin-top: 8px; }
.mt-12       { margin-top: 12px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-32       { margin-top: 32px; }
.mb-8        { margin-bottom: 8px; }
.mb-12       { margin-bottom: 12px; }
.mb-16       { margin-bottom: 16px; }
.mb-24       { margin-bottom: 24px; }
.mb-32       { margin-bottom: 32px; }

/* ── Responsive ──────────────────────────────────────────── */

/* 1024px */
@media (max-width: 1024px) {
  .hd-inner {
    gap: 16px;
  }

  .nav {
    gap: 14px;
  }

  .svc-layout {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }

  .pol-layout {
    grid-template-columns: 230px 1fr;
    gap: 32px;
  }

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

/* 900px */
@media (max-width: 900px) {
  .svc-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 64px;
  }

  .svc-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .svc-sidebar .sidebar-links {
    grid-column: 1 / -1;
  }

  .pol-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 64px;
  }

  .pol-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
}

/* 768px */
@media (max-width: 768px) {
  .section,
  .section-alt,
  .section-dark {
    padding: 60px 0;
  }

  /* Nav hidden, toggle shown */
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Dest grid 2-col */
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Hero */
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-rings {
    display: none;
  }

  .hero-plane {
    font-size: 200px;
    right: -20px;
    top: auto;
    bottom: -20px;
  }

  /* Top bar */
  .tb-right {
    display: none;
  }

  /* Airline tags wrap */
  .airlines-inner {
    gap: 12px;
  }

  /* Footer */
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Policy layout already 1-col */
  .pol-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pol-nav a {
    border-right: 1px solid var(--border-gray);
  }

  .pol-nav a:nth-child(even) {
    border-right: none;
  }

  /* Steps horizontal mobile */
  .steps-horizontal li {
    padding: 14px;
  }
}

/* 560px */
@media (max-width: 560px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn {
    justify-content: center;
  }

  .ps-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .ps-num {
    font-size: 1.3rem;
  }

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

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

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

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .contact-cta-box {
    padding: 36px 24px;
  }

  .big-phone {
    font-size: 1.55rem;
  }

  .airlines-inner {
    gap: 10px;
  }

  .airline-tag {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .svc-sidebar {
    grid-template-columns: 1fr;
  }

  .pol-nav {
    grid-template-columns: 1fr;
  }

  .pol-nav a {
    border-right: none;
  }

  .hero-trust {
    gap: 14px;
  }

  .container,
  .container-sm {
    padding: 0 16px;
  }

  .tb-left {
    font-size: 0.72rem;
    gap: 8px;
  }

  .tb-dot {
    display: none;
  }
}
