/* ==========================================================================
   GREENDOME TRAVEL & TOURS — Design System
   ========================================================================== */

:root {
  --primary:        #1a3a2a;
  --primary-light:  #2d5a3d;
  --primary-mid:    #234d35;
  --accent:         #4a9460;
  --accent-glow:    rgba(74, 148, 96, 0.15);
  --white:          #ffffff;
  --off-white:      #f8faf9;
  --text-primary:   #0f1f17;
  --text-secondary: #4a5e53;
  --text-muted:     #8a9e93;
  --border:         #e0ebe4;
  --dark-bg:        #0f1f17;
  --gold:           #c5a028;
  --gold-light:     #dbb84a;
  --gold-dark:      #9a7b1a;
  --gold-glow:      rgba(197, 160, 40, 0.18);
  --gold-gradient:  linear-gradient(135deg, #b8922a 0%, #dbb84a 50%, #c5a028 100%);

  --font-family:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:     all 0.3s ease;
  --radius:         16px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 8px rgba(15, 31, 23, 0.06);
  --shadow-md:      0 8px 30px rgba(15, 31, 23, 0.1);
  --shadow-lg:      0 20px 50px rgba(15, 31, 23, 0.15);
  --container:      1200px;
  --nav-height:     72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-subtext {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(197, 160, 40, 0.35);
}

.btn--primary:hover {
  background: var(--primary-light);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(197, 160, 40, 0.2), inset 0 -2px 0 rgba(197, 160, 40, 0.45);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(197, 160, 40, 0.15);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  min-height: 44px;
}

.btn--full {
  width: 100%;
}

.btn--whatsapp {
  background: var(--accent);
  color: var(--white);
  margin-top: 1.5rem;
}

.btn--whatsapp:hover {
  background: var(--primary-light);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

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

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

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: var(--transition);
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
}

.navbar__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-icon {
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 1px;
}

.navbar__cta-mobile {
  display: none;
}

.navbar__cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

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

.hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0;
}

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

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */

.page-inner .navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--off-white);
  overflow: hidden;
}

.page-hero--image {
  color: var(--white);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 23, 0.88) 0%, rgba(15, 31, 23, 0.45) 100%);
  z-index: 1;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-hero__subtext {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.page-hero--image .page-hero__subtext {
  color: rgba(255, 255, 255, 0.85);
}

/* Services overview (home) */
.services-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.service-card__link:hover {
  color: var(--gold);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(197, 160, 40, 0.12);
  border-color: rgba(197, 160, 40, 0.35);
}

/* CTA banner */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  border-top: 3px solid transparent;
  border-image: var(--gold-gradient) 1;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 1.0625rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-banner .btn--outline:hover {
  background: var(--gold-gradient);
  color: var(--primary);
  border-color: var(--gold);
}

/* About mission cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.mission-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.mission-card__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mission-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mission-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.package-card__sharing {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  background: var(--white);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__subtext {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold-glow);
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, var(--gold-gradient) border-box;
}

.hero__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Marquee */
.marquee {
  width: 100%;
  background: var(--off-white);
  border-top: 1px solid rgba(197, 160, 40, 0.25);
  border-bottom: 1px solid rgba(197, 160, 40, 0.25);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__content {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary);
  white-space: nowrap;
  padding-right: 3rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
  background: var(--primary);
  padding: 4rem 0;
  border-bottom: 3px solid transparent;
  border-image: var(--gold-gradient) 1;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-item__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-item__suffix {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold-light);
}

.stat-item__label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0.85;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: 6rem 0;
}

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

.section--dark {
  background: var(--dark-bg);
  color: var(--white);
}

/* ==========================================================================
   PACKAGE CARDS
   ========================================================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

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

.package-card--popular {
  border-left: 4px solid var(--gold);
  box-shadow: 0 0 0 1px var(--gold-glow), var(--shadow-sm);
}

.package-card--value {
  border: 2px solid var(--gold-dark);
}

.package-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--gold-glow);
  border: 1px solid rgba(197, 160, 40, 0.35);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.package-badge--filled {
  background: var(--gold-gradient);
  color: var(--primary);
  border: none;
}

.package-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.package-card__price {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.package-card__price strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.package-card__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.package-card__meta .material-icons {
  font-size: 1rem;
}

.package-card__facilities {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.facility {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.facility .material-icons {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.facility--included {
  color: var(--text-secondary);
}

.facility--included .material-icons {
  color: var(--gold-dark);
}

.facility--excluded {
  color: var(--text-muted);
}

.facility--excluded .material-icons {
  color: var(--text-muted);
  opacity: 0.6;
}

.packages-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.packages-note a {
  color: var(--gold-dark);
  font-weight: 600;
}

.packages-note a:hover {
  color: var(--gold);
}

.package-departure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.625rem 1rem;
  background: var(--gold-glow);
  border: 1px solid rgba(197, 160, 40, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.package-departure .material-icons {
  font-size: 1.125rem;
  color: var(--gold-dark);
}

.package-includes {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid transparent;
  border-image: var(--gold-gradient) 1;
}

.package-includes__title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--primary);
}

.package-includes__note {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package-includes__group {
  margin-bottom: 2rem;
}

.package-includes__group:last-child {
  margin-bottom: 0;
}

.package-includes__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.facility--special {
  color: var(--text-secondary);
}

.facility--special .material-icons {
  color: var(--gold);
}

/* ==========================================================================
   FEATURE TILES
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-tile {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.feature-tile:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(197, 160, 40, 0.1);
}

.feature-tile__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-tile__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-tile__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   DESTINATION TILES
   ========================================================================== */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.destination-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: block;
}

.destination-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 23, 0.85) 0%, rgba(15, 31, 23, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: var(--transition);
}

.destination-tile__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.destination-tile__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

.destination-tile:hover {
  transform: scale(1.03);
}

.destination-tile:hover .destination-tile__overlay {
  background: linear-gradient(to top, rgba(15, 31, 23, 0.75) 0%, rgba(15, 31, 23, 0.2) 100%);
}

.destination-tile:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-section {
  max-width: 720px;
}

.form-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.form-group label.form-label--light {
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
  min-height: 44px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input[readonly] {
  background: var(--off-white);
  color: var(--text-secondary);
}

.form-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 53, 69, 0.08);
  color: var(--text-primary);
  border-radius: 8px;
  font-size: 0.875rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius);
}

.form-success .material-icons {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-step__number {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(219, 184, 74, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step__content {
  position: relative;
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(219, 184, 74, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 1025px) {
  .process-step:not(:last-child) .process-step__content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.35rem;
    width: 1.35rem;
    border-top: 2px dotted rgba(219, 184, 74, 0.45);
    transform: translateY(-50%);
    pointer-events: none;
  }
}

.process-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card__quote {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__stars .material-icons {
  font-size: 1.125rem;
  color: var(--gold);
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  font-style: normal;
}

.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: normal;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__list .material-icons {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__list strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info__list p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-info__list a:hover {
  color: var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer__tagline {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  color: var(--gold-light);
}

.footer__links li {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--gold-gradient);
  color: var(--primary);
  transform: scale(1.05);
}

.footer__bottom {
  border-top: 1px solid rgba(219, 184, 74, 0.2);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal[hidden] {
  display: none;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 23, 0.6);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal--open .modal__dialog {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
}

.modal__close:hover {
  background: var(--off-white);
  color: var(--primary);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.modal__subtitle {
  font-size: 0.9375rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top--visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-light);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(197, 160, 40, 0.3);
}

/* ==========================================================================
   RESPONSIVE — TABLET (768px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .services-overview {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image {
    max-width: 560px;
    margin: 0 auto;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

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

  .process-step:not(:last-child) .process-step__content::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

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

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (< 768px)
   ========================================================================== */

@media (max-width: 767px) {
  :root {
    --nav-height: 64px;
  }

  .navbar__logo-img {
    height: 42px;
  }

  .section {
    padding: 4rem 0;
  }

  .hamburger {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .navbar__nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .navbar__cta-mobile {
    display: inline-flex;
    width: 100%;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal__dialog {
    padding: 1.75rem;
  }

  .scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
