/* =============================================
   SEYLAN TRAVEL — FUNCTIONAL / AIRLINE STYLE
   ============================================= */

:root {
  --teal-deep: #073e3e;
  --teal-mid: #0d6b6b;
  --teal-bright: #12a5a5;
  --teal-light: #e0f5f5;
  --teal-pale: #f0fafa;
  --white: #ffffff;
  --gray-1: #f5f7f8;
  --gray-2: #e9eef2;
  --gray-3: #c8d2db;
  --gray-4: #8a9aaa;
  --text: #182530;
  --text-mid: #3a4e5e;
  --text-light: #5c7080;
  --border: #d4dde6;
  --shadow: 0 2px 8px rgba(7, 62, 62, 0.10);
  --shadow-md: 0 4px 20px rgba(7, 62, 62, 0.14);
  --shadow-lg: 0 8px 40px rgba(7, 62, 62, 0.18);
  --radius: 6px;
  --radius-lg: 10px;

  /* Map old var names to teal so everything else works */
  --blue-deep: var(--teal-deep);
  --blue-mid: var(--teal-mid);
  --blue-sky: var(--teal-bright);
  --blue-light: var(--teal-light);
  --accent: var(--teal-mid);
  --accent-dark: var(--teal-deep);
  --gold: var(--teal-bright);
}

/* ── GLOBAL ICON COLOUR (monochrome teal) ── */
.fa-solid,
.fa-regular,
.fa-brands,
[class*=" fa-"],
[class^="fa-"] {
  color: inherit;
}

.top-bar i,
.nav-phone-link i,
.search-group label i,
.service-pill i,
.why-feature-icon i,
.contact-icon i,
.section-label i,
.dest-country i,
.testi-location i,
.form-submit-btn i,
.search-btn i,
.dest-btn i,
.map-box i {
  color: var(--teal-mid);
}

.top-bar i {
  color: rgba(255, 255, 255, 0.7);
}

.marquee-item i {
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner i {
  color: inherit;
}

.testi-stars {
  color: var(--teal-bright) !important;
}

footer .fa-brands {
  color: rgba(255, 255, 255, 0.6);
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background: var(--gray-1);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
}

/* ── TOP INFO BAR ── */
.top-bar {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: #fff;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  font-size: 11px;
  opacity: 0.7;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 2px solid var(--blue-mid);
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  height: 100%;
  margin: 0;
  gap: 0;
}

.nav-links li {
  height: 100%;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-mid);
  border-bottom-color: #1a9e9e;
}

.nav-spacer {
  flex: 1;
}

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

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.nav-phone-link:hover {
  background: var(--gray-1);
}

.nav-phone-link i {
  color: var(--teal-mid);
}

.btn-book-now {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-book-now:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  /* overflow: hidden removed — allows autocomplete dropdown to overflow */
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* keeps slideshow images clipped */
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 62, 62, 0.88) 35%, rgba(7, 62, 62, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 50;
  /* raised so ac-dropdown clears all hero bg layers */
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  width: 100%;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.hero-tagline span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-title em {
  font-style: normal;
  color: #fff;
}

.hero-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── SEARCH BOX ── */
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  /* Fix: allow autocomplete to pop out */
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.search-tabs {
  display: flex;
  background: var(--blue-deep);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  /* Keep top corners rounded */
}

.search-tab {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}

.search-tab:hover {
  color: rgba(255, 255, 255, 0.9);
}

.search-tab.active {
  color: #fff;
  border-bottom-color: #1a9e9e;
  background: rgba(255, 255, 255, 0.08);
}

.search-tab i {
  font-size: 14px;
}

.search-form {
  padding: 16px 20px;
  display: none;
}

.search-form.active {
  display: block;
}

.search-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.search-group {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.search-group.grow-2 {
  flex: 2;
}

.search-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.search-input,
.search-select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

.search-input:focus,
.search-select:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(18, 165, 165, 0.1);
}

.search-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d4f63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 32px;
}

.search-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.search-btn i {
  font-size: 14px;
}

/* Hero bottom bar */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: var(--teal-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-stat {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

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

.hero-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SERVICES BAR ── */
.services-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.services-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  flex: 1;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.service-pill:last-child {
  border-right: none;
}

.service-pill:hover {
  background: var(--blue-light);
}

.service-pill i {
  font-size: 17px;
  color: var(--teal-mid);
  flex-shrink: 0;
}

.service-pill-text {
  display: block;
}

.service-pill-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}

.service-pill-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 1px;
}

/* ── PAGE LAYOUT ── */
.page-section {
  padding: 40px 0;
}

.page-section.alt {
  background: var(--white);
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue-sky);
}

.section-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--teal-deep);
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.view-all-link:hover {
  background: var(--teal-mid);
  color: #fff;
}

.view-all-link i {
  font-size: 12px;
}

/* ── DESTINATION CARDS ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.dest-img-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.05);
}

.dest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.dest-badge.blue {
  background: var(--teal-mid);
}

.dest-body {
  padding: 12px;
}

.dest-country {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

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

.dest-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-2);
}

.dest-price .from-label {
  font-size: 10px;
  color: var(--text-light);
  display: block;
}

.dest-price .amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal-deep);
}

.dest-price .amount small {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
}

.dest-btn {
  background: var(--teal-mid);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  border: none;
  transition: background 0.2s;
}

.dest-btn:hover {
  background: var(--blue-deep);
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-text h2 em {
  font-style: normal;
  color: var(--accent);
}

.why-text p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--gray-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.why-feature:hover {
  border-color: var(--teal-mid);
}

.why-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--blue-light);
  color: var(--teal-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.why-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.why-feature-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.why-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-counter {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.why-counter-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
}

.why-counter-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FLIGHT ENQUIRY LAYOUT ── */
.flight-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* ── HAMBURGER → X ANIMATION ── */
.nav-hamburger span {
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

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

.nav-hamburger.nav-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ── FLIGHTS SECTION ── */
.flights-section {
  background: var(--white);
}

.flight-form-wrap {
  background: var(--gray-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.flight-form-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

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

.form-field.span-2 {
  grid-column: span 2;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(18, 165, 165, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d4f63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

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

.form-submit-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.form-submit-btn i {
  font-size: 14px;
}

.success-msg {
  display: none;
  margin-top: 16px;
  padding: 20px 24px;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  color: #2e7d32;
  font-size: 14px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 12px;
}

.success-msg i {
  font-size: 18px;
}

/* ── TOUR ENQUIRY ── */
.tour-section {
  background: var(--gray-1);
}

.tour-enquiry-wrap {
  max-width: 820px;
}

.tab-nav {
  display: flex;
  gap: 2px;
  margin-bottom: 28px;
  background: var(--border);
  padding: 3px;
  border-radius: var(--radius);
  display: inline-flex;
}

.tab-nav-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  transition: all 0.2s;
}

.tab-nav-btn.active {
  background: var(--white);
  color: var(--teal-deep);
  box-shadow: var(--shadow);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: var(--teal-mid);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-2);
  padding-top: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-light);
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testi-location {
  font-size: 12px;
  color: var(--text-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--blue-deep);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=60') center/cover;
  opacity: 0.07;
}

.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text h2 em {
  font-style: normal;
  color: #fff;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: #fff;
  color: var(--teal-deep);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #fff;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cta-white:hover {
  background: transparent;
  color: #fff;
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--blue-light);
  color: var(--teal-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.contact-value a {
  color: var(--teal-mid);
}

.contact-value a:hover {
  text-decoration: underline;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.whatsapp-btn:hover {
  background: #20b958;
  transform: translateY(-1px);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--teal-mid);
  color: var(--teal-mid);
  background: var(--blue-light);
}

.map-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 380px;
  background: var(--gray-2);
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--blue-deep);
  border-top: 3px solid var(--blue-mid);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand img {
  height: 46px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ── SCROLL REVEAL ── */
.reveal,
.reveal-left,
.reveal-right {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.40s;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--teal-mid);
  padding: 8px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 28px;
  flex-shrink: 0;
}

.marquee-item i {
  color: #fff;
  font-size: 10px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── COUNTERS ── */
.counter-num {
  display: inline-block;
}

/* ── ALERT / INFO BOX ── */
.info-box {
  background: var(--blue-light);
  border: 1px solid rgba(18, 165, 165, 0.3);
  border-left: 4px solid var(--blue-sky);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--teal-deep);
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-box i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── AUTOCOMPLETE DROPDOWN ── */
.ac-wrap {
  position: relative;
  width: 100%;
  z-index: 15;
}

.ac-wrap:focus-within {
  z-index: 100;
}

.ac-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 280px;
  overflow-y: auto;
  z-index: 9999;
  /* must float above everything inc. hero layers */
  display: none;
  box-shadow: var(--shadow-md);
}

.ac-dropdown.open {
  display: block;
}

.ac-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-2);
  transition: background 0.15s;
}

.ac-item:last-child {
  border-bottom: none;
}

.ac-item:hover {
  background: var(--teal-light);
}

.ac-city {
  font-weight: 600;
  color: var(--text);
}

.ac-country {
  font-size: 12px;
  color: var(--text-light);
}

.ac-code {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-mid);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-left: 10px;
}

/* ── RESPONSIVE ── */

/* ─ Tablet ─ */
@media (max-width: 1100px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ─ Large Mobile / Small Tablet ─ */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Flight form: side-by-side text+form → stacked */
  div[style*="grid-template-columns:1fr 1.5fr"] {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }
}

/* ─ Mobile ─ */
@media (max-width: 768px) {

  /* Top bar */
  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-phone-link span {
    display: none;
  }

  .nav-inner {
    padding: 0 16px;
  }

  /* Mobile nav drawer */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 2px solid var(--teal-mid);
    padding: 16px;
    gap: 4px;
    z-index: 998;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  }

  .nav-links.mobile-open li {
    height: auto;
  }

  .nav-links.mobile-open a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    border-bottom: none;
    height: auto;
    color: var(--text);
    transition: background 0.15s;
  }

  .nav-links.mobile-open a:hover,
  .nav-links.mobile-open a.active {
    background: var(--teal-light);
    color: var(--teal-deep);
    border-bottom: none;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    /* full screen on mobile */
    align-items: flex-start;
  }

  .hero-content {
    padding: 80px 16px 32px;
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .hero-sub {
    font-size: 13px;
    max-width: 100%;
  }

  /* Search box */
  .search-box {
    max-width: 100%;
    border-radius: var(--radius);
    margin-top: 20px;
  }

  .search-tabs {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .search-tab {
    font-size: 12px;
    padding: 10px 8px;
    gap: 4px;
    flex-direction: column;
  }

  .search-tab i {
    font-size: 16px;
  }

  .search-form {
    padding: 14px 14px;
  }

  .search-row {
    flex-direction: column;
    gap: 10px;
  }

  .search-group {
    min-width: 100%;
    flex: none;
  }

  .search-group.grow-2 {
    flex: none;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Hero stats */
  .hero-stats-inner {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 12px;
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  /* Services bar */
  .services-bar-inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .services-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .service-pill {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 12px 12px;
  }

  .service-pill-sub {
    display: none;
  }

  /* Destinations */
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .form-field.span-2 {
    grid-column: span 1;
  }

  /* Flight enquiry layout stacks on mobile */
  .flight-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Tour tabs */
  .tab-nav {
    display: flex;
    width: 100%;
  }

  .tab-nav-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* WA float - smaller on mobile */
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 10px 14px 10px 12px;
    font-size: 13px;
  }

  .wa-float i {
    font-size: 20px;
  }

  /* Page sections */
  .page-section {
    padding: 28px 0;
  }

  .section-inner {
    padding: 0 16px;
  }
}

/* ─ Small Mobile ─ */
@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-tagline {
    font-size: 10px;
  }

  /* Make stat bar scroll horiz on very small phones */
  .hero-stats-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-stats-inner::-webkit-scrollbar {
    display: none;
  }

  .hero-stat {
    flex: 0 0 auto;
    min-width: 100px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Tour enquiry full-width tour-enquiry-wrap */
  .tour-enquiry-wrap {
    max-width: 100%;
  }

  /* Search tab text hidden, icon only */
  .search-tab {
    font-size: 10px;
    padding: 8px 4px;
  }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s infinite;
}

.wa-float i {
  font-size: 22px;
  color: #fff;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.wa-float-label {
  white-space: nowrap;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7);
  }
}

/* ── FORM SUBMIT WA STYLING ── */
.form-submit-btn .fa-whatsapp {
  color: #fff;
}