/**
 * TRELY CONCIERGE — DESIGN SYSTEM & STYLESHEET
 * Based on Trely Design Kit (web-tokens, Inter Tight 500, Cream/Gold/Deep Green)
 */

:root {
  /* Brand Colors */
  --tr-green: #273C3F;       /* Deep Travel Green — dark sections */
  --tr-green-card: #1A2F2F;  /* Dark card inside dark sections */
  --tr-gold: #C6A064;        /* Explorer Gold — all accents & primary buttons */
  --tr-gold-grad-1: #D4B57A; /* Gradient button start */
  --tr-gold-grad-2: #A8854F; /* Gradient button end */
  --tr-cream: #F7F6F4;       /* Main site background */
  --tr-cream-sub: #E8E2D2;   /* Decorative background arches/circles */
  --tr-white: #FFFFFF;
  --tr-ink: #0F1014;         /* Primary text */
  --tr-tag: #EDE4D1;         /* Warm tag, inline pills */
  --tr-gray-60: #6B6F71;     /* Subtitles, secondary text */
  --tr-gray-40: #A0A4A6;     /* Disabled, muted icons */
  --tr-divider: #E5E2DC;     /* Field borders, dividers */
  --tr-coral: #FF5F4D;       /* Notification badge only */

  /* Border Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-soft: 0 4px 24px rgba(39, 60, 63, 0.06);
  --sh-medium: 0 8px 32px rgba(39, 60, 63, 0.10);
  --sh-btn: 0 2px 8px rgba(15, 16, 20, 0.10);
  --sh-gold: 0 4px 16px rgba(198, 160, 100, 0.28);

  /* Typography */
  --ff: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  background: var(--tr-cream);
  color: var(--tr-ink);
  letter-spacing: -0.01em;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* TYPOGRAPHY */
h1 {
  font-size: 56px;
  font-weight: 500; /* Inter Tight Medium 500 as per Trely brandbook */
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--tr-ink);
}

h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--tr-ink);
}

h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--tr-ink);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--tr-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow-dark {
  color: var(--tr-gold);
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.section-head p.sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--tr-gray-60);
  line-height: 1.55;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
}

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
  h1 {
    font-size: 38px;
    line-height: 1.2;
  }
  h2 {
    font-size: 30px;
    line-height: 1.25;
  }
}

/* BUTTONS */
.btn-primary {
  background: var(--tr-ink);
  color: var(--tr-white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, background 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #23252c;
}

.btn-gold {
  background: linear-gradient(90deg, var(--tr-gold-grad-1) 0%, var(--tr-gold-grad-2) 100%);
  color: var(--tr-white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, filter 0.2s;
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--tr-ink);
  border: 1.5px solid var(--tr-ink);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--tr-ink);
  color: var(--tr-white);
}

.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-ghost-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HEADER (LIGHTWEIGHT & REFINED)
   ========================================================================== */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 244, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 226, 220, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-left-group {
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-svg {
  height: 22px;
  width: auto;
}

.logo-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--tr-white);
  background: var(--tr-gold);
  padding: 2.5px 7px;
  border-radius: 5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  font-size: 14.5px;
  color: #2b2e30;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--tr-gold);
}

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

.currency-select {
  background: #fff;
  border: 1px solid var(--tr-divider);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  color: var(--tr-ink);
}

.lang-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tr-gray-60);
  padding: 6px 8px;
}

.lang-indicator .flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D52B1E;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.lang-indicator .flag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#fff 33%, #0039A6 33% 66%, #D52B1E 66%);
}

/* ==========================================================================
   HERO SECTION (CLEAN & AIRY)
   ========================================================================== */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -140px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--tr-cream-sub);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 140px;
  left: -240px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--tr-cream-sub);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  margin-top: 14px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.lead {
  margin-top: 18px;
  font-size: 19px;
  color: var(--tr-gray-60);
  line-height: 1.5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Quick Hero Search Input */
.hero-search-box {
  margin: 36px auto 0;
  max-width: 740px;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-medium);
  padding: 10px 14px 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(229, 226, 220, 0.7);
}

.hero-search-box svg {
  color: var(--tr-gray-40);
  flex-shrink: 0;
}

.hero-search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: var(--tr-ink);
}

.hero-search-box input::placeholder {
  color: var(--tr-gray-60);
  font-weight: 400;
}

.hero-search-box .btn-gold {
  padding: 12px 24px;
  font-size: 15px;
}

/* Quick Filter Pills in Hero */
.hero-tag-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hero-tag-pill {
  background: #fff;
  border: 1px solid var(--tr-divider);
  padding: 7px 15px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--tr-ink);
  cursor: pointer;
  transition: all 0.2s;
}

.hero-tag-pill:hover, .hero-tag-pill.active {
  border-color: var(--tr-gold);
  background: rgba(198, 160, 100, 0.1);
  color: #8C6A30;
}

/* Hero Stats Bar */
.hero-stats {
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 860px;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 18px 12px;
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-soft);
}

.hero-stats .stat {
  text-align: center;
  padding: 4px 16px;
  border-right: 1px solid var(--tr-divider);
}

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

.hero-stats .stat .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--tr-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stats .stat .num small {
  font-size: 17px;
  font-weight: 600;
}

.hero-stats .stat .lbl {
  margin-top: 6px;
  font-size: 12px;
  color: var(--tr-gray-60);
  line-height: 1.35;
}

/* Hero Illustration Composition */
.hero-illustration {
  position: relative;
  z-index: 1;
  margin: 32px auto 0;
  max-width: 680px;
  text-align: center;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  max-width: 460px;
  margin: 0 auto;
}

/* ==========================================================================
   TRUST STRIP (DEEP GREEN)
   ========================================================================== */
.trust-strip {
  background: var(--tr-green);
  color: var(--tr-cream);
  padding: 34px 0;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #cfd1d1;
}

.trust-item .ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(198, 160, 100, 0.15);
  color: var(--tr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item b {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section.site-sec {
  padding: 96px 0;
  position: relative;
}

/* ==========================================================================
   COMPREHENSIVE SERVICES CATALOG (24 SERVICES)
   ========================================================================== */
.catalog-nav-wrap {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Category Filter Tabs */
.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.catalog-tab {
  background: #fff;
  border: 1px solid var(--tr-divider);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--tr-ink);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-tab:hover {
  border-color: var(--tr-gold);
}

.catalog-tab.active {
  background: var(--tr-green);
  color: #fff;
  border-color: var(--tr-green);
  box-shadow: var(--sh-soft);
}

.catalog-tab .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
}

.catalog-tab.active .count {
  background: rgba(198, 160, 100, 0.25);
  color: var(--tr-gold);
}

/* Live Search Filter */
.catalog-search-inline {
  width: 100%;
  max-width: 540px;
  position: relative;
}

.catalog-search-inline input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--tr-divider);
  border-radius: var(--r-pill);
  padding: 12px 20px 12px 42px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.catalog-search-inline input:focus {
  border-color: var(--tr-gold);
}

.catalog-search-inline svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tr-gray-40);
}

/* 24-Cards Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 34px 30px;
  box-shadow: var(--sh-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 226, 220, 0.4);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-medium);
  border-color: rgba(198, 160, 100, 0.4);
}

.service-category-tag {
  align-self: flex-start;
  background: var(--tr-tag);
  color: var(--tr-green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.service-illust-wrap {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(198, 160, 100, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-illust-wrap img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  color: var(--tr-gray-60);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-perks-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px dashed var(--tr-divider);
}

.service-perks-bullets li {
  font-size: 13px;
  color: #2b2e30;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.service-perks-bullets li::before {
  content: "✦";
  color: var(--tr-gold);
  font-size: 11px;
  flex-shrink: 0;
}

.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--tr-divider);
}

.service-card-price {
  font-size: 12px;
  color: var(--tr-gray-60);
}

.service-card-price b {
  font-size: 18px;
  color: var(--tr-ink);
  display: block;
  letter-spacing: -0.01em;
}

.service-card .btn-order {
  background: var(--tr-gold);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  transition: transform 0.15s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .btn-order:hover {
  background: #B8915A;
  transform: translateY(-1px);
}

/* Empty state when search has 0 results */
.catalog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--tr-gray-60);
}

.catalog-empty-state h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--tr-ink);
}

/* ==========================================================================
   COMPARE TABLE (TRELY VS ALTERNATIVES)
   ========================================================================== */
.compare-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-soft);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare th, .compare td {
  padding: 20px 22px;
  text-align: center;
  border-bottom: 1px solid var(--tr-divider);
}

.compare th {
  background: var(--tr-cream);
  font-weight: 500;
  font-size: 14px;
}

.compare th:first-child, .compare td:first-child {
  text-align: left;
  font-weight: 500;
}

.compare th.col-trely {
  background: var(--tr-green);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.compare th.col-trely::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--tr-gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.compare .col-trely {
  background: rgba(198, 160, 100, 0.08);
}

.compare .col-trely b {
  color: #8C6A30;
  font-weight: 600;
}

.check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tr-gold);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.cross {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tr-cream);
  color: var(--tr-gray-40);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.partial {
  color: var(--tr-gray-60);
  font-size: 13px;
}

/* ==========================================================================
   HOW IT WORKS (4 STEPS WITH GOLD 48px CIRCLES)
   ========================================================================== */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hw-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px 28px;
  box-shadow: var(--sh-soft);
  position: relative;
}

.hw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tr-gold);
  color: var(--tr-white);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 22px;
}

.hw-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.hw-card p {
  font-size: 14.5px;
  color: var(--tr-gray-60);
  line-height: 1.55;
}

.hw-card .meta {
  margin-top: 18px;
  font-size: 12px;
  color: var(--tr-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hw-card .meta::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--tr-gold);
}

/* ==========================================================================
   POPULAR DESTINATIONS SNAP CAROUSEL
   ========================================================================== */
.routes-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.routes-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.routes-track::-webkit-scrollbar {
  display: none;
}

.route-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-soft);
  background: #fff;
  position: relative;
  transition: transform 0.2s;
  cursor: pointer;
}

.route-card:hover {
  transform: translateY(-4px);
}

.route-card-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.route-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 16, 20, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
}

.route-card-body {
  padding: 22px;
}

.route-card-body h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.route-card-airport {
  font-size: 13px;
  color: var(--tr-gray-60);
  margin-bottom: 14px;
}

.route-card-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--tr-divider);
  font-size: 13px;
}

.route-card-stats .price {
  color: var(--tr-gold);
  font-weight: 700;
  font-size: 15px;
}

/* ==========================================================================
   PRICING PACKAGES
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: var(--sh-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--tr-divider);
}

.pricing-card.featured {
  background: #fff;
  border: 2px solid var(--tr-gold);
  box-shadow: var(--sh-medium);
  transform: scale(1.02);
}

.pricing-badge-hit {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tr-gold);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pricing-card p.desc {
  font-size: 14px;
  color: var(--tr-gray-60);
  margin-bottom: 24px;
  min-height: 42px;
}

.pricing-price-wrap {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tr-divider);
}

.pricing-price-wrap .amount {
  font-size: 38px;
  font-weight: 700;
  color: var(--tr-ink);
  letter-spacing: -0.02em;
}

.pricing-price-wrap .period {
  font-size: 13px;
  color: var(--tr-gray-60);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pricing-features-list li .ico {
  color: var(--tr-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn-gold, .pricing-card .btn-primary {
  width: 100%;
}

/* ==========================================================================
   TRAVELER CTA BLOCK (DEEP GREEN)
   ========================================================================== */
.traveler {
  background: var(--tr-green);
  border-radius: var(--r-xl);
  padding: 72px 64px;
  color: var(--tr-cream);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.traveler::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(198, 160, 100, 0.08);
  pointer-events: none;
}

.traveler h2 {
  color: #fff;
  margin-bottom: 16px;
}

.traveler p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.5;
}

.traveler-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.traveler .perk {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 160, 100, 0.18);
  border-radius: var(--r-md);
  padding: 18px 20px;
}

.traveler .perk .v {
  font-size: 28px;
  font-weight: 700;
  color: var(--tr-gold);
  line-height: 1;
}

.traveler .perk .lbl {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.traveler-btns {
  display: flex;
  gap: 16px;
}

.traveler-illust-wrap {
  text-align: center;
  position: relative;
}

.traveler-illust-wrap img {
  max-width: 360px;
  margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS (DEEP GREEN BACKGROUND)
   ========================================================================== */
section.testimonials-sec {
  background: var(--tr-green);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 80px 0;
  margin: 40px 0;
}

section.testimonials-sec .section-head h2 {
  color: #fff;
}

section.testimonials-sec .section-head p.sub {
  color: rgba(255, 255, 255, 0.65);
}

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

.testim-card {
  background: var(--tr-green-card);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px solid rgba(198, 160, 100, 0.15);
  display: flex;
  flex-direction: column;
}

.testim-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testim-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--tr-gold);
}

.testim-meta b {
  display: block;
  font-size: 16px;
  color: #fff;
}

.testim-meta span {
  font-size: 13px;
  color: var(--tr-gold);
}

.testim-quote {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  flex-grow: 1;
}

.testim-badge-trip {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--tr-divider);
  padding: 24px 4px;
  cursor: pointer;
  transition: background 0.2s;
}

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

.faq-item .q {
  font-size: 18px;
  font-weight: 500;
  color: var(--tr-ink);
}

.faq-plus {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--tr-divider);
  color: var(--tr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}

.faq-item:hover .faq-plus {
  background: var(--tr-tag);
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--tr-gold);
  color: #fff;
  border-color: var(--tr-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  font-size: 15px;
  color: var(--tr-gray-60);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  margin-top: 16px;
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 20, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: var(--tr-ink);
}

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

.modal-card p.sub {
  color: var(--tr-gray-60);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tr-gray-60);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--tr-divider);
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--tr-gold);
}

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

.modal-price-box {
  background: var(--tr-cream);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 24px;
}

.modal-price-box span {
  font-size: 14px;
  color: var(--tr-gray-60);
}

.modal-price-box b {
  font-size: 22px;
  color: var(--tr-gold);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--tr-green);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  border: 1px solid rgba(198, 160, 100, 0.3);
  animation: toastIn 0.3s ease forwards;
  pointer-events: auto;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FOOTER (5 COLUMNS)
   ========================================================================== */
footer.site-footer {
  background: var(--tr-green);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 80px 0 40px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-wrap {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--tr-gold);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .traveler {
    grid-template-columns: 1fr;
    padding: 48px 36px;
  }
  .testim-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .trust-strip .row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .hw-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
