/* ================================================================
   TRAVEL BEGINNINGS — Design-accurate stylesheet
   Primary: #144949 (dark teal) | Accent: #D6EAB9 (sage green)
   Fonts: Outfit (Broadacre sub) + Nunito Sans (Avenir sub)
   ================================================================ */

/* ── Custom Fonts ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Avenir LT Std';
  src: url('avenir-lt-std-35-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Std Heavy';
  src: url('../Avenir LT Std 85 Heavy/Avenir LT Std 85 Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Broadacre';
  src: url('broadacre-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  color: #1b1b1b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --teal:        #144949;
  --teal-footer: #154a4a;
  --sage:        #D6EAB9;
  --sage-form:   rgba(214, 234, 185, 0.9);
  --dark:        #1b1b1b;
  --off-white:   #F0F0F0;
  --white:       #ffffff;
  --placeholder: #92ada7;
  --contact-card:#79B0A4;
  --mint:        #EDF4F2;
  --sh-card:     1px 1px 12px rgba(27,27,27,0.10);
  --sh-hover:    3px 2px 9px rgba(27,27,27,0.34);
  --tr:          0.3s ease-in;
  --tr-fast:     0.2s ease-in;
}

/* ── Typography helpers ───────────────────────────────────────── */
.heading {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.2;
  font-size: clamp(22px, 2.65vw, 34px);
}
.heading-white  { color: var(--white); }
.heading-dark   { color: var(--dark);  }
.heading-broadacre { font-family: 'Broadacre', 'Outfit', sans-serif; }
.tb-cta-content .heading { font-family: 'Broadacre', 'Outfit', sans-serif; }
.tb-boxed-col .col-text .heading { font-family: 'Broadacre', 'Outfit', sans-serif; }

.subheading-label {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(13px, 1.2em, 18px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.subheading-label.light { color: var(--white); }

/* ── T-icon decoration ────────────────────────────────────────── */
.t-icon {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto 10px;
  flex-shrink: 0;
}
.t-icon-lg {
  display: block;
  margin: 0 auto 12px;
  animation: spinY 3s linear infinite;
}
@keyframes spinY {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.1em, 17px);
  border-radius: 30px;
  padding: 10px 10%;
  border: 1px solid transparent;
  transition: background-color var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.4;
}
.btn-sm  { padding: 8px 6%; font-size: .875em; }
.btn-lg  { padding: 12px 8%; }
.btn-wide { width: 100%; }

/* Style 1 — teal */
.btn-teal {
  background-color: var(--teal);
  border-color: var(--white);
  color: var(--white);
}
.btn-teal:hover {
  background-color: var(--white);
  border-color: var(--dark);
  color: var(--dark);
}

/* Style 2 — sage */
.btn-sage {
  background-color: var(--sage);
  border-color: var(--sage);
  color: var(--dark);
}
.btn-sage:hover {
  background-color: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Nav CTA (white text, no bg, hover fills) */
.btn-nav {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-weight: 800;
  background: transparent;
  border-color: transparent;
  color: var(--white);
  border-radius: 40px;
  padding: 6px 14px;
}
.btn-nav:hover {
  background-color: #f1f1f1;
  color: var(--teal);
}
.site-header.sticky .btn-nav { color: var(--white); }
.site-header.sticky .btn-nav:hover { background-color: #f1f1f1; color: var(--teal); }

/* ── Navigation ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--white);
  padding: 0 7%;
  transition: background-color 0.2s ease-out;
}
.site-header.sticky {
  background-color: var(--teal);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.nav-logo {
  width: clamp(145px, 17.5%, 220px);
  flex-shrink: 0;
}
.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-text span { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4%;
  flex: 1;
  justify-content: space-evenly;
}

.nav-item { position: relative; }

.nav-link {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background-color var(--tr-fast), color var(--tr-fast);
}
.nav-link:hover {
  background-color: #f1f1f1;
  color: var(--teal);
}
.nav-caret { font-size: 0.5em; opacity: .8; transition: transform var(--tr-fast); }
.nav-item.has-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* vertical separator before CTA */
.nav-sep {
  width: 2px;
  height: 40px;
  background: var(--white);
  flex-shrink: 0;
  margin: 0 4px;
}

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: 16px;
  padding: 20px 14px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr-fast), transform var(--tr-fast), visibility var(--tr-fast);
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown a {
  display: block;
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: 0.84em;
  font-weight: 700;
  color: var(--teal);
  padding: 8px 10px;
  border-radius: 8px;
  transition: background var(--tr-fast);
}
.nav-dropdown a:hover { background: var(--mint); }

/* Chevron toggle (mobile only — hidden on desktop) */
.nav-chevron { display: none; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ─────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: rgba(0,0,0,0.78);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.71;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 57.9%;
  padding: 9% 3% 7% 7%;
}
.hero-h1 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--off-white);
  font-size: clamp(41px, 4.5vw, 58px);
  line-height: 1.1;
  margin: 2.68em 0 0.37em;
  letter-spacing: -0.01em;
}
/* Hero CTA Card */
.hero-cta-card {
  display: flex;
  flex-direction: row;
  width: 63.2%;
  background: rgba(20, 73, 73, 0.4);
  border: 1px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  color: var(--white);
}
.hero-cta-card:hover { transform: scale(0.96); }
.hero-card-img {
  width: 38%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
.hero-card-detail {
  flex: 1;
  border-left: 1px solid var(--white);
  display: flex;
  flex-direction: column;
}
.hero-card-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1em, 16px);
  text-align: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--white);
  color: var(--white);
}
.hero-card-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1em, 16px);
  color: var(--white);
  text-align: center;
  padding: 10px 14px;
  border-radius: 30px;
  transition: background-color var(--tr), color var(--tr);
}
.hero-cta-card:hover .hero-card-cta {
  background-color: var(--white);
  color: var(--teal);
  margin: 7px 10px 9px;
  border-radius: 24px;
}

/* ── About Us image overlay card ─────────────────────────────── */
.about-img-wrap {
  position: relative;
  height: 100%;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.about-img-tag {
  position: absolute;
  bottom: 9%;
  right: 9%;
  background: rgba(18, 18, 18, 0.93);
  color: var(--white);
  padding: 1.4rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}

/* ── Section scaffold ─────────────────────────────────────────── */
.tb-section {
  padding: 5% 7%;
  background: var(--white);
}
.tb-section-bg-white { background: var(--white); }
.tb-section-bg-sage  { background: var(--sage); }

.section-intro {
  text-align: center;
  margin-bottom: 4%;
}
.section-intro .subheading-label { margin-bottom: 8px; }
.section-intro .heading           { margin-bottom: 0; }

/* ── About Section (fullwidth 2-col, image right) ─────────────── */
.tb-fullwidth-col {
  display: flex;
  flex-direction: row;
  min-height: 60vh;
}
.tb-fullwidth-col .col-text {
  width: 50%;
  padding: 5% 3.6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tb-fullwidth-col .col-text .t-icon { margin-bottom: 12px; }
.tb-fullwidth-col .col-text .heading { text-align: center; margin-bottom: 1.2em; }
.tb-fullwidth-col .col-text p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1em;
}
.tb-fullwidth-col .col-img {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.tb-fullwidth-col .col-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
/* reversed: image left, text right */
.tb-fullwidth-col.img-left .col-img img {
  border-radius: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* ── Services Cards (alternating 3-col grid) ──────────────────── */
.tb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(320px, 28vw, 440px);
}
.service-card-wrap {
  width: 100%;
}
.service-card-content {
  background: var(--teal);
  padding: 3%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: default;
  transition: box-shadow var(--tr-fast);
}
.service-card-content:hover {
  box-shadow: var(--sh-hover), inset 0 0 0 3px var(--sage);
}
.service-card-media:hover {
  box-shadow: inset 0 0 0 3px var(--sage);
}
.service-number {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(27px, 3.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2em;
  text-align: center;
  width: 100%;
}
.service-card-content h5 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(14px, 1.15em, 18px);
  font-weight: 500;
  color: var(--sage);
  text-align: center;
  margin-bottom: 0.75em;
}
.service-card-content p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 200;
  color: var(--white);
  text-align: center;
  line-height: 1.65;
}
.service-card-media {
  background: var(--sage);
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-wrap:hover + .service-card-wrap .service-card-media img,
.service-card-media:hover img { transform: scale(0.96); }

/* ── Services cards wrapper (homepage) ───────────────────────── */
.tb-services-cards-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.tb-services-cards-wrapper .service-card {
  display: flex;
  width: 33.333%;
  min-height: clamp(330px, 27vw, 410px);
  justify-content: center;
  align-items: stretch;
  transition: box-shadow var(--tr-fast);
}
.tb-services-cards-wrapper .service-card:hover {
  box-shadow: inset 0 0 0 3px var(--sage);
}
.tb-services-cards-wrapper .service-card.content {
  flex-direction: column;
  align-items: center;
  background-color: var(--teal);
  padding: 3%;
}
.tb-services-cards-wrapper .service-card.content .number {
  color: var(--white);
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(28px, 2.8vw, 56px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.tb-services-cards-wrapper .service-card.content h5 {
  color: var(--sage);
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  margin: 10px 0;
  text-align: center;
}
.tb-services-cards-wrapper .service-card.content p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-weight: 200;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.4;
  color: var(--white);
  text-align: center;
}
.tb-services-cards-wrapper .service-card.media {
  background-color: var(--sage);
}
.tb-services-cards-wrapper .service-card.media .media-holder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Destination cards (horizontal) ──────────────────────────── */
.tb-dest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center;
  margin-bottom: 4%;
}
.dest-card-h {
  width: calc(31% - 0px);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-card);
  transition: background-color var(--tr-fast), box-shadow var(--tr-fast), transform var(--tr-fast);
  cursor: pointer;
}
.dest-card-h:hover {
  background-color: var(--teal);
  box-shadow: var(--sh-hover);
  transform: scale(0.98);
}
.dest-card-h img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  background-color: var(--sage);
}
.dest-card-body-h {
  padding: 8% 10% 1.25rem;
  text-align: center;
}
.dest-card-h h5 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(14px, 1.1em, 18px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5em;
  transition: color var(--tr-fast);
}
.dest-card-h:hover h5 { color: var(--white); }
.dest-card-h p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 200;
  color: var(--dark);
  line-height: 1.6;
  transition: color var(--tr-fast);
}
.dest-card-h:hover p { color: var(--white); }

/* ── Video / CTA Section ──────────────────────────────────────── */
.tb-cta-section {
  position: relative;
  padding: 5% 9% 5.9375%;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tb-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tb-cta-bg img, .tb-cta-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tb-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.tb-cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.tb-cta-content .heading {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 48px);
}

/* ── Gallery / Types of Travel ────────────────────────────────── */
.tb-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5%;
}
.gallery-card {
  width: 32%;
  height: 20vw;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5%;
  box-shadow: var(--sh-card);
  cursor: pointer;
  transition: box-shadow var(--tr-fast);
}
.gallery-card:hover { box-shadow: var(--sh-hover); }
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 73, 73, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay h5 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(14px, 1.2em, 18px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75em;
}
.gallery-card-overlay p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(12px, 1em, 15px);
  font-weight: 200;
  color: var(--white);
  line-height: 1.8;
}

/* ── Boxed Column Sections (Itinerary etc.) ───────────────────── */
.tb-boxed-col {
  display: flex;
  flex-direction: row;
  padding: 5% 7% 5% 1%;
  gap: 2%;
  align-items: stretch;
}
.tb-boxed-col .col-text {
  width: 50%;
  padding: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tb-boxed-col .col-text .heading { margin-bottom: .5em; }
/* ── All Services page ────────────────────────────────────────── */
/* Intro boxed section */
.as-intro {
  padding: 5% 7%;
  background: var(--white);
  border-bottom: 1px solid rgba(20,73,73,0.12);
}
.as-intro-cols {
  display: flex;
  gap: 5%;
  align-items: center;
}
.as-intro-text { width: 55%; }
.as-intro-text h2 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.3em;
}
.as-intro-text .as-sub {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.9em;
  display: block;
}
.as-intro-text p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
}
.as-intro-img {
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sage);
}
.as-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Full-width content sections */
.as-full {
  display: flex;
  background: var(--white);
  min-height: clamp(300px, 33vw, 460px);
}
.as-full-img {
  height: clamp(300px, 33vw, 460px);
  max-height: clamp(300px, 33vw, 460px);
  align-self: center;
}
.as-full.image-left { flex-direction: row-reverse; }
.as-full-text {
  width: 50%;
  padding: 6% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.as-full-text h2 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--teal);
  text-align: center;
  margin-bottom: 0.5em;
}
.as-full-text h5 {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--dark);
  margin: 0.9em 0 0.4em;
}
.as-full-text p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.05vw, 15px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 0.6em;
}
.as-full-text .btn {
  width: fit-content;
  align-self: center;
  margin-top: 0.5rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
.as-full-text ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.as-full-text ul li {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.05vw, 15px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 0.35em;
}
.as-full-img {
  width: 50%;
  overflow: hidden;
}
.as-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

/* Process section */
.as-process {
  padding: 5% 7%;
  background: var(--white);
}
.as-process-cols {
  display: flex;
  gap: 5%;
  align-items: center;
  margin-bottom: 3%;
}
.as-process-img {
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
}
.as-process-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.as-process-text { width: 55%; }
.as-process-text h2 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.3em;
}
.as-process-text .as-sub {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 0.9em;
}
.as-process-text p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
}
.as-process-list {
  list-style: decimal;
  padding-left: 1.5em;
  border-top: 1px solid rgba(20,73,73,0.1);
  padding-top: 2%;
}
.as-process-item {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
  padding: 0.7em 0;
  border-bottom: 1px solid rgba(20,73,73,0.08);
}

/* Overview cards */
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-overview-card {
  position: relative;
  height: clamp(300px, 30vw, 440px);
  overflow: hidden;
  display: block;
}
.service-overview-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-overview-card:hover .service-overview-card-bg { transform: scale(1.05); }
.service-overview-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,73,73,0.72);
  transition: background 0.3s;
}
.service-overview-card:hover .service-overview-card-overlay { background: rgba(20,73,73,0.55); }
.service-overview-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8% 9% 10%;
}
.service-overview-num {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
  display: block;
  margin-bottom: 0.15em;
  opacity: 0.75;
}
.service-overview-card-content h3 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.service-overview-card-content p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 200;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* Service bands */
.service-band { padding: 7% 7%; }
.service-band--teal { background: var(--teal); }
.service-band--white { background: var(--white); }
.service-band--sage  { background: #f3f7ec; }
.service-band-inner {
  display: flex;
  gap: 8%;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.service-band-left  { width: 50%; }
.service-band-right { width: 50%; padding-top: 0.5em; }
.service-band-num {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 500;
  line-height: 0.85;
  display: block;
  margin-bottom: 0.1em;
  user-select: none;
}
.service-band--teal .service-band-num  { color: rgba(255,255,255,0.07); }
.service-band--white .service-band-num { color: rgba(20,73,73,0.06); }
.service-band--sage  .service-band-num { color: rgba(20,73,73,0.07); }
.service-band-tag {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5em;
}
.service-band--teal  .service-band-tag  { color: var(--sage);  opacity: 0.8; }
.service-band--white .service-band-tag,
.service-band--sage  .service-band-tag  { color: var(--teal); opacity: 0.6; }
.service-band-heading {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.35em;
}
.service-band--teal  .service-band-heading { color: var(--white); }
.service-band--white .service-band-heading,
.service-band--sage  .service-band-heading { color: var(--teal); }
.service-band-sub {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.4;
}
.service-band--teal  .service-band-sub  { color: rgba(255,255,255,0.6); }
.service-band--white .service-band-sub,
.service-band--sage  .service-band-sub  { color: var(--teal); }
.service-band-desc {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.75em;
}
.service-band--teal  .service-band-desc  { color: rgba(255,255,255,0.72); }
.service-band--white .service-band-desc,
.service-band--sage  .service-band-desc  { color: var(--dark); }
.service-band-included {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
.service-band--teal  .service-band-included { color: var(--sage);  border-bottom: 1px solid rgba(214,234,185,0.25); }
.service-band--white .service-band-included,
.service-band--sage  .service-band-included { color: var(--teal); border-bottom: 1px solid rgba(20,73,73,0.15); }
.service-band-list { list-style: none; padding: 0; margin-bottom: 0; }
.service-band-list li {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.7em;
  padding-left: 1.25em;
  position: relative;
}
.service-band-list li::before { content: '–'; position: absolute; left: 0; font-weight: 700; }
.service-band--teal  .service-band-list li          { color: rgba(255,255,255,0.75); }
.service-band--teal  .service-band-list li::before  { color: var(--sage); }
.service-band--white .service-band-list li,
.service-band--sage  .service-band-list li          { color: var(--dark); }
.service-band--white .service-band-list li::before,
.service-band--sage  .service-band-list li::before  { color: var(--teal); }
.btn-sage-outline {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-weight: 800;
  background: transparent;
  border: 2px solid var(--sage);
  color: var(--sage);
  border-radius: 40px;
  padding: 10px 28px;
  font-size: clamp(13px, 1em, 15px);
  display: inline-block;
  transition: background var(--tr-fast), color var(--tr-fast);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-sage-outline:hover { background: var(--sage); color: var(--teal); }

/* Process section */
.tb-process-section {
  background: var(--teal);
  padding: 7% 7%;
  text-align: center;
}
.tb-process-section .section-intro { margin-bottom: 5%; }
.tb-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.tb-process-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(214,234,185,0.25);
}
.process-step { padding: 0 1rem; }
.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage);
  margin: 0 auto 1.25em;
  background: var(--teal);
  position: relative;
  z-index: 1;
}
.process-step h5 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5em;
}
.process-step p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 200;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.col-text .sub {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1em;
  line-height: 1.4;
}

.tb-boxed-col .col-text .sub {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(16px, 1.6em, 22px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1em;
  line-height: 1.3;
}
.tb-boxed-col .col-text p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1em;
}
.tb-boxed-col .col-img {
  width: 50%;
  overflow: hidden;
}
.tb-boxed-col .col-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 40px;
}
.tb-boxed-col.img-left { flex-direction: row-reverse; padding: 5% 1% 5% 7%; }

/* ── Contact Form Section ─────────────────────────────────────── */
.tb-form-section {
  position: relative;
  padding: 7%;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.tb-form-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tb-form-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tb-form-wrapper {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 48%;
  background: var(--sage-form);
  border-radius: 20px;
  padding: 2.5rem;
}
.tb-form-wrapper h3 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
}
.form-input, .form-select, .form-textarea {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.2em, 18px);
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: box-shadow var(--tr-fast);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--placeholder);
  font-size: 0.7em;
  font-weight: 400;
}
.form-input:focus, .form-textarea:focus {
  box-shadow: 0 0 0 2px var(--teal);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2392ada7' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 36px;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--teal-footer);
  padding: 3.5% 6% 2%;
}
.footer-breadcrumb {
  padding-bottom: 1.25rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-breadcrumb a {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1em, 17px);
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer-breadcrumb a:hover { color: var(--white); }
.footer-breadcrumb span {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1em, 17px);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.footer-breadcrumb .bc-sep { color: rgba(255,255,255,0.35); }
.footer-logo {
  margin-bottom: 4%;
}
.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 0.95;
  display: block;
}
.footer-logo-text span { color: var(--sage); }
.footer-logo-img {
  height: clamp(22px, 3.5vw, 48px);
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .footer-logo-img {
    height: clamp(44px, 12vw, 72px);
  }
}

.footer-cols {
  display: flex;
  gap: 4%;
  margin-bottom: 6%;
}
.footer-col-1 { width: 35%; }
.footer-col-2 { width: 25%; }
.footer-col-3 { width: 20%; }
.footer-col-4 { width: 20%; }

.footer-col h4 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-size: clamp(14px, 1.2em, 18px);
  font-weight: 500;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}
.footer-col p,
.footer-col a {
  font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 1em, 17px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: block;
  transition: text-decoration var(--tr-fast);
}
.footer-col a:hover { text-decoration: underline; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
}
.social-icon-link img {
  width: 38px; height: 38px;
  border-radius: 8px;
  transition: transform 0.2s ease-in;
}
.social-icon-link:hover img { transform: translateY(-5px); }

/* SVG social icon fallback */
.social-icon-svg {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease-in;
}
.social-icon-svg:hover { transform: translateY(-5px); }
.social-icon-svg svg, .social-icon-svg img { width: 27px; height: 27px; }

.footer-legal {
  text-align: center;
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(11px, 0.8em, 14px);
  font-weight: 100;
  color: var(--white);
  opacity: 0.7;
  padding-top: 2%;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ── Page Hero (interior pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  background: rgba(0,0,0,0.78);
  padding: 10% 7% 7%;
  overflow: hidden;
  min-height: 58vh;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  max-width: 750px;
}
.page-hero-content .breadcrumb {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: 0.82em;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  display: flex;
  gap: .4rem;
  align-items: center;
}
.page-hero-content .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero-content .breadcrumb a:hover { color: var(--white); }
.page-hero-content h1 {
  font-family: 'Broadacre', 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.75vw, 61px);
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.page-hero-content p {
  font-family: 'Avenir LT Std', 'Nunito Sans', sans-serif;
  font-size: clamp(15px, 1.1em, 18px);
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

/* ── Scroll Animations ────────────────────────────────────────── */
.fade-up    { transition:opacity .65s ease, transform .65s ease; }
.fade-right { transition:opacity .7s ease, transform .7s ease; }
.fade-left  { transition:opacity .7s ease, transform .7s ease; }
.zoom-in    { transition:opacity .6s ease, transform .6s ease; }
.js .fade-up    { opacity:0; transform:translateY(30px); }
.js .fade-right { opacity:0; transform:translateX(-32px); }
.js .fade-left  { opacity:0; transform:translateX(32px); }
.js .zoom-in    { opacity:0; transform:scale(.92); }
.is-visible { opacity:1!important; transform:none!important; }

/* ── Utility ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tb-fullwidth-col .col-img { display: none; }
  .tb-fullwidth-col .col-text { width: 100%; }
  .service-card-wrap { width: 50%; }
  .service-card-wrap:nth-child(odd) .service-card-media { display: none; }
  .tb-services-cards-wrapper .service-card { width: 50%; min-height: 330px; }
  .tb-services-cards-wrapper .service-card.media:nth-child(2) { order: 1; }
  .tb-services-cards-wrapper .service-card.content:nth-child(1) { order: 2; }
  .tb-services-cards-wrapper .service-card.content:nth-child(3) { order: 4; }
  .tb-services-cards-wrapper .service-card.media:nth-child(4) { order: 3; }
  .tb-services-cards-wrapper .service-card.content:nth-child(5) { order: 6; }
  .tb-services-cards-wrapper .service-card.media:nth-child(6) { order: 5; }
  .tb-dest-grid { gap: 3%; }
  .dest-card-h { width: 47%; }
  .gallery-card { width: 48%; height: 28vw; }
  .tb-boxed-col { flex-direction: column; padding: 5% 7%; }
  .tb-boxed-col .col-text, .tb-boxed-col .col-img { width: 100%; }
  .tb-process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .tb-process-steps::before { display: none; }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-overview-card { height: 55vw; max-height: 380px; }
  .service-band-inner { flex-direction: column; gap: 2rem; }
  .service-band-left, .service-band-right { width: 100%; }
  .as-intro-cols, .as-process-cols { flex-direction: column; }
  .as-intro-text, .as-intro-img, .as-process-text, .as-process-img { width: 100%; }
  .as-full { flex-direction: column; min-height: auto; }
  .as-full.image-left { flex-direction: column; }
  .as-full-text, .as-full-img { width: 100%; }
  .as-full-img { height: 60vw; }
  .tb-boxed-col.img-left { flex-direction: column; padding: 5% 7%; }
  .tb-boxed-col .col-text .mt-md { text-align: center; }
  .tb-boxed-col .col-img { display: none; }
  .tb-boxed-col .col-text .heading { font-size: 18px; }
  .tb-form-wrapper { width: 65%; }
  .footer-cols { flex-wrap: wrap; gap: 0; }
  .footer-logo { margin-bottom: 2rem; }
  .site-footer--home .footer-logo { margin-top: 1.5rem; }
  .subheading-label { font-size: 12px; }
  .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 { width: 100%; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 5%; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--teal);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 999;
    padding: 5rem 8% 4rem 12%;
    overflow-y: auto;
    gap: 0;
    margin-left: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-sep { display: none; }
  .nav-hamburger { display: flex; position: relative; z-index: 1001; }

  .nav-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .nav-link {
    flex: 0 0 auto;
    font-family: 'Avenir LT Std Heavy', 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    padding: 0;
    border-radius: 0;
    text-align: left;
    white-space: normal;
  }
  .nav-link:hover { background: none; color: var(--white); opacity: 0.8; }

  .nav-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    line-height: 1;
    padding: 0 0.25rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    transform: translateY(-0.05em);
  }
  .nav-item.has-dropdown.open > .nav-chevron { transform: translateY(-0.05em) rotate(90deg); }

  .nav-dropdown {
    flex-basis: 100%;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    box-shadow: none;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    min-width: auto;
  }
  .nav-links .nav-dropdown a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 0;
    background: none;
  }
  .nav-links .nav-dropdown a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
  }
  .nav-item.has-dropdown.open .nav-dropdown { max-height: 300px; padding: 0.5rem 0; margin-top: 0.5rem; pointer-events: auto; }
  .nav-item.has-dropdown:hover .nav-dropdown { transform: none; }
  .nav-item.has-dropdown:hover:not(.open) .nav-dropdown { max-height: 0; padding: 0; margin: 0; }

  .btn-nav {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.875rem 2.5rem;
    border: 2px solid var(--white);
    border-radius: 40px;
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
  }
  .btn-nav:hover { background: rgba(255,255,255,0.15); color: var(--white); }

  .hero-content { width: 90%; padding: 8rem 5% 6%; }
  .hero-h1 { margin-top: 0; }
  .hero-cta-card { width: 100%; }

  .service-card-wrap { width: 100%; }
  .tb-services-cards-wrapper .service-card { width: 100%; }
  .tb-services-cards-wrapper .service-card.content { padding: 1.5% 10%; }
  .tb-services-cards-wrapper .service-card.content h5 { font-size: 16px; }
  .tb-services-cards-wrapper .service-card.content p { font-size: 15px; }
  .tb-services-cards-wrapper .service-card.content:nth-child(1) { order: 1; }
  .tb-services-cards-wrapper .service-card.media:nth-child(2) { order: 2; }
  .tb-services-cards-wrapper .service-card.content:nth-child(3) { order: 3; }
  .tb-services-cards-wrapper .service-card.media:nth-child(4) { order: 4; }
  .tb-services-cards-wrapper .service-card.content:nth-child(5) { order: 5; }
  .tb-services-cards-wrapper .service-card.media:nth-child(6) { order: 6; }
  .tb-fullwidth-col .col-text .mt-md { text-align: center; }
  .dest-card-h { width: 100%; margin-bottom: 1.5rem; }
  .dest-card-body-h { padding-bottom: 1.5rem; }
  .dest-card-h p { font-size: 15px; }
  .gallery-card { width: 100%; height: 55vw; }
  .gallery-card .gallery-card-overlay { opacity: 1; }
  .tb-form-wrapper { width: 100%; }
  .footer-col-2, .footer-col-3, .footer-col-4 { width: 100%; }
  .footer-col h4 { margin-bottom: 1.5rem; }
  .page-hero-content h1 { font-size: 52px; }
  .as-intro-text p { margin-bottom: 1.5rem; }
  .as-process-img { display: none; }
}
