/* =============================================================
   A4 Travel and Insurance Agency — main stylesheet
   ============================================================= */

:root {
  /* Brand palette — sampled from the A4 logo (navy globe/text, green A4) */
  --ink: #0c2136;
  --forest: #143a5f;
  --forest-2: #0e2c4a;
  --gold: #22a455;
  --gold-soft: #7ede9f;
  --cream: #f8fafc;
  --sand: #e9f1f7;
  --stone: #5b6b7b;
  --white: #ffffff;
  --line: rgba(12, 33, 54, 0.12);
  --shadow: 0 18px 45px rgba(12, 33, 54, 0.14);
  --radius: 18px;
  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-sans: "Open Sans", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(27px, 3.5vw, 38px);
  margin: 14px 0 18px;
}

.section-lead {
  color: var(--stone);
  max-width: 700px;
  font-size: 17.5px;
}

.center { text-align: center; }
.center .section-lead { margin: 0 auto; }
.center .eyebrow::before { display: none; }

section { padding: 90px 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 44px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 1.4;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn i { font-size: 15px; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #1b8a46; color: var(--white); transform: translateY(-2px); }

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

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

.btn-outline-dark {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline-dark:hover { background: var(--forest); color: var(--white); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
}

.site-header.scrolled {
  background: rgba(12, 33, 54, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-logo {
  height: 54px;
  width: auto;
  max-width: none;
  background: var(--white);
  border-radius: 12px;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: height 0.3s ease;
}

/* while the logo image is present, hide the fallback monogram and text
   (the logo artwork already contains the company name) */
.brand-logo ~ span { display: none; }

.site-header.scrolled .brand-logo { height: 46px; }

@media (max-width: 560px) {
  .brand-logo { height: 46px; }
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a.active { color: var(--gold-soft); }

.nav-cta { margin-left: 10px; }

.main-nav a.nav-cta {
  padding: 13px 36px;
  color: var(--white);
  font-weight: 600;
}

.main-nav a.nav-cta:hover { color: var(--white); }

.main-nav a.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 70;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 160px 0 110px;
}

.hero.hero-inner-page { min-height: 62vh; padding: 170px 0 90px; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(12, 33, 54, 0.55) 0%,
    rgba(12, 33, 54, 0.35) 45%,
    rgba(12, 33, 54, 0.82) 100%);
}

.hero-content { max-width: 780px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--gold-soft);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero p {
  font-size: 18.5px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 38px;
}

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

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 33, 54, 0.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-strip-item svg { flex-shrink: 0; color: var(--gold-soft); }

/* ---------- Cards / grids ---------- */

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

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 33, 54, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--forest), var(--gold));
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img { transform: scale(1.07); }

.card-body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; }

.card-body h3 { font-size: 22px; margin-bottom: 12px; }

.card-body p { color: var(--stone); font-size: 15.5px; flex: 1; }

.card-link {
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* feature list card (no image) */
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--sand);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--stone); font-size: 15px; }

/* ---------- Split sections ---------- */

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

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: linear-gradient(135deg, var(--forest), var(--gold));
}

.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.split-img .img-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(12, 33, 54, 0.85);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 13.5px;
  backdrop-filter: blur(4px);
}

.img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold-soft);
}

.checklist { margin-top: 24px; display: grid; gap: 14px; }

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 16px;
}

.checklist li svg { flex-shrink: 0; margin-top: 4px; color: var(--gold); }

.checklist li strong { display: block; }
.checklist li span { color: var(--stone); font-size: 15px; }

/* ---------- Dark band / stats ---------- */

.band-dark {
  background: var(--forest);
  color: var(--white);
}

.band-dark .section-lead { color: rgba(255, 255, 255, 0.75); }

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

.stat {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.stat .num {
  font-family: var(--font-head);
  font-size: 42px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 10px;
}

.stat .label {
  font-size: 13.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 50px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  position: relative;
  border: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-head);
  font-size: 46px;
  color: var(--gold);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--stone); }

/* ---------- Destinations ---------- */

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

.dest {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--gold));
}

.dest.tall { grid-row: span 2; height: 100%; min-height: 500px; }

.dest img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest:hover img { transform: scale(1.06); }

.dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,32,29,0) 35%, rgba(20,32,29,0.85) 100%);
}

.dest-info { position: relative; z-index: 1; padding: 26px; }

.dest-info .tag {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.dest-info h3 { font-size: 24px; margin: 6px 0 4px; }
.dest-info p { font-size: 14px; color: rgba(255,255,255,0.85); }

/* ---------- Testimonials ---------- */

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

.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 8px 30px rgba(12, 33, 54, 0.07);
  position: relative;
}

.quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}

.quote p { color: var(--ink); font-size: 15.5px; font-style: italic; }

.quote-author { margin-top: 22px; display: flex; align-items: center; gap: 14px; }

.quote-author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 18px;
  flex-shrink: 0;
}

.quote-author strong { display: block; font-size: 15px; }
.quote-author span { font-size: 13px; color: var(--stone); }

/* ---------- Comparison table ---------- */

.table-wrap { overflow-x: auto; margin-top: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}

.compare th, .compare td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.compare thead th {
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.compare thead th:first-child { width: 34%; }

.compare tbody tr:nth-child(even) { background: #f4f8fb; }

.compare td.yes { color: #1e7d43; font-weight: 600; }
.compare td.no { color: #b3423a; font-weight: 600; }

.compare td:first-child { font-weight: 600; color: var(--ink); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 46px auto 0; display: grid; gap: 14px; }

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 26px;
  font-weight: 600;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 26px 22px; color: var(--stone); font-size: 15.5px; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 42, 70, 0.88), rgba(12, 33, 54, 0.9));
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 18px; }

.cta-band p { max-width: 640px; margin: 0 auto 36px; color: rgba(255,255,255,0.85); font-size: 17.5px; }

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

/* ---------- Contact page ---------- */

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

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.contact-card h3 { font-size: 24px; margin-bottom: 8px; }

.contact-rows { margin-top: 26px; display: grid; gap: 8px; }

.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

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

.contact-row .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-row .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-row .value { font-weight: 600; font-size: 16.5px; }
.contact-row .value a:hover { color: var(--gold); }
.contact-row .sub { font-size: 14px; color: var(--stone); }

/* form */
.form-card { background: var(--forest); color: var(--white); }

.form-card h3 { color: var(--white); }
.form-card .form-note { color: rgba(255,255,255,0.75); font-size: 14.5px; margin-bottom: 26px; }

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

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

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

.form-field label {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15.5px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-field select option { color: var(--ink); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.map-wrap {
  margin-top: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-wrap iframe { width: 100%; height: 430px; border: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-about p { margin-top: 18px; color: rgba(255,255,255,0.65); font-size: 14.5px; max-width: 320px; }

.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--gold-soft); }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
}

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

.footer-contact a:hover { color: var(--gold-soft); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 55;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.1); }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .grid-3, .quote-grid, .dest-grid { grid-template-columns: 1fr 1fr; }
  .steps, .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest.tall { grid-row: auto; min-height: 340px; height: 340px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(12, 33, 54, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 65;
  }

  .main-nav.open { opacity: 1; pointer-events: auto; }

  .main-nav a { font-size: 20px; }

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

  .split-img { order: -1; }

  .hero-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px; }

  section { padding: 66px 0; }
}

/* ---------- Font Awesome icon helpers ---------- */

.hero-strip-item i {
  color: var(--gold-soft);
  font-size: 19px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.feature-icon i { font-size: 23px; }

.checklist li i {
  color: var(--gold);
  font-size: 17px;
  margin-top: 5px;
  flex-shrink: 0;
}

.card-link i { font-size: 12.5px; }

.contact-row .icon i { font-size: 20px; }

.footer-contact li i {
  color: var(--gold-soft);
  font-size: 15px;
  width: 20px;
  text-align: center;
  margin-top: 5px;
  flex-shrink: 0;
}

.footer-social a i { font-size: 17px; }

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

/* ---------- Packages ---------- */

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 12px;
  color: var(--stone);
  font-size: 13.5px;
  font-weight: 600;
}

.pkg-meta i { color: var(--gold); margin-right: 6px; }

.pkg-list { display: grid; gap: 8px; margin-top: 4px; font-size: 14.5px; color: var(--stone); }

.pkg-list li { display: flex; align-items: flex-start; gap: 10px; }

.pkg-list li i { color: var(--gold); font-size: 13px; margin-top: 5px; flex-shrink: 0; }

.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pkg-price .from {
  display: block;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}

.pkg-price .amt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--forest);
}

.btn-sm { padding: 13px 36px; font-size: 13.5px; }

/* ---------- Group tours ---------- */

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

.tour {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 33, 54, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tour-head {
  background: var(--forest);
  color: var(--white);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.tour-date {
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  padding: 9px 13px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  flex-shrink: 0;
}

.tour-date .d { display: block; font-size: 19px; }
.tour-date .m { display: block; font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; }

.tour-head h3 { font-size: 18.5px; color: var(--white); }

.tour-head .tour-sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

.tour-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.tour-body > p { color: var(--stone); font-size: 14.5px; margin-bottom: 16px; }

.tour-facts { display: grid; gap: 10px; margin-bottom: 20px; font-size: 14px; color: var(--ink); }

.tour-facts li { display: flex; align-items: flex-start; gap: 12px; }

.tour-facts li i { color: var(--gold); width: 18px; text-align: center; margin-top: 4px; flex-shrink: 0; }

.seat-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  background: var(--sand);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

.seat-note i { color: var(--gold); }

.tour-body .btn { margin-top: auto; }

/* ---------- Responsive (new sections) ---------- */

@media (max-width: 1024px) {
  .tour-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .tour-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid-3, .quote-grid, .dest-grid, .steps, .stats-grid, .form-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 88vh; padding: 140px 0 130px; }

  .hero-strip-inner { grid-template-columns: 1fr; gap: 10px; padding: 16px 0; }

  .hero-strip-item { font-size: 13px; }

  .btn { padding: 16px 34px; }

  .pkg-foot { flex-direction: column; align-items: flex-start; }

  body { font-size: 15.5px; }
}
