/*
Theme Name: Study Abroad
Description: Pixel-perfect Study Abroad theme with exact Cabinet Grotesk typography and Trova Travel aesthetic.
Version: 2.4.0
Author: Z-Crew
Text Domain: studyabroad
*/

/* ============================================================
   DESIGN TOKENS (EXACT TROVA VALUES)
============================================================ */
:root {
  --bg: #EEF2EC;
  --bg-dark: #E1E5DF;
  --bg-card: #FFFFFF;
  --green: #1A3D1F;
  --green-hover: #224E28;
  --ink: #1C1C1A;
  --ink-mid: #464A52;
  --ink-muted: #5C5C58;
  --white: #FFFFFF;
  --border: #D8DBD4;
  --border-light: rgba(0, 0, 0, 0.06);
  --card-radius: 24px;
  --font-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1320px;
  --gutter: 32px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100%;
}

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

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

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

/* ============================================================
   TYPOGRAPHY (EXACT TROVA CABINET GROTESK SPEC)
============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--white);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

/* ============================================================
   CONTAINER & SECTIONS
============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}

.section {
  padding-block: 100px;
}

.section--lg {
  padding-block: 120px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn--white {
  background-color: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--white:hover {
  background-color: #F4F4F4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--green {
  background-color: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,61,31,0.25);
}

/* ============================================================
   HEADER & FLOATING PILL NAVBAR
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 28px;
  padding-bottom: 12px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: calc(var(--gutter) + 16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}

/* Floating pill nav when scrolled */
.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header.scrolled .nav-inner {
  max-width: 860px;
  background: rgba(238, 242, 236, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 8px 14px 8px 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .nav-logo {
  color: var(--ink);
}

.site-header.scrolled .nav-links a {
  color: var(--ink-mid);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--ink);
}

.site-header.scrolled .nav-hamburger span {
  background: var(--ink);
}

/* ============================================================
   MOBILE OVERLAY
============================================================ */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nav-mobile__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.nav-mobile__close {
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}
.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.nav-mobile__links a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO FRAME (ALL 4 CORNERS ROUNDED CARD TROVA SPEC)
============================================================ */
.hero-frame {
  padding: 16px 16px 0 16px;
  background-color: var(--bg);
  width: 100%;
}

.hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: calc(100vh - 32px);
  min-height: 640px;
  max-height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #0E150B;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.02);
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.85) 90%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-bottom: 48px;
  padding-inline: 44px;
  width: 100%;
}

.hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero__left {
  max-width: 680px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.hero__cta {
  margin-top: 24px;
}

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  max-width: 440px;
  text-align: right;
}

.hero__desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   ABOUT SECTION (3 COLUMNS TROVA STYLE)
============================================================ */
.about {
  background-color: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__body {
  font-size: 0.98rem;
  color: var(--ink-mid);
  margin-top: 20px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.about__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  margin-left: -10px;
}

.social-proof__text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.social-proof__text .stars {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.social-proof__text strong {
  color: var(--ink);
}

.about__center {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}
.about__photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about__stats {
  display: flex;
  flex-direction: column;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
}
.stat-row:first-child {
  border-top: 1px solid var(--border);
}
.stat-row__label {
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.stat-row__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.story-card {
  background-color: var(--bg-dark);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.story-card__desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.story-card__images {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.story-card__img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.story-card__icons {
  display: flex;
  gap: 8px;
}
.icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.icon-badge--green {
  background: var(--green);
  color: #fff;
}
.icon-badge--light {
  background: #FFFFFF;
}

/* ============================================================
   DESTINATIONS SECTION (2x2 CARDS TROVA STYLE)
============================================================ */
.destinations {
  background-color: var(--bg);
}

.destinations__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.destinations__header-left {
  max-width: 600px;
}

.destinations__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  max-width: 440px;
  text-align: right;
}

.destinations__desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.destinations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dest-card {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background-color: #121810;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.dest-card:hover .dest-card__img {
  transform: scale(1.05);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.dest-card__badges {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.badge {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.dest-card__body {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
}

.dest-card__sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  max-width: 480px;
}

.dest-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.dest-card__fee {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
}
.dest-card__fee span {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.process {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.process__header {
  margin-bottom: 56px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--bg-dark);
}
.step-num--active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.process__step p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ============================================================
   SERVICES SECTION (DARK FOREST GREEN WITH SUBTLE DOODLES)
============================================================ */
.services {
  background-color: var(--green);
  position: relative;
  overflow: hidden;
  padding-block: 120px;
}

/* ============================================================
   EDUCATION WAVE STREAM BACKGROUND
   A dense, elegant wave stream of 40+ miniature 20-28px study abroad icons
============================================================ */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("assets/edu-wave.svg");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 1440px 100%;
  opacity: 0.9;
}

.services::after {
  display: none;
}

.services > .container {
  position: relative;
  z-index: 2;
}

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.services__title {
  color: var(--white);
}

.services__desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 400px;
  text-align: right;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.service-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.025em;
}

.service-card__desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

/* ============================================================
   STATS BAR
============================================================ */
.stats {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: 64px;
}

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

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-right: 1px solid var(--border);
}
.stats__item:last-child {
  border-right: none;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
}

.stats__label {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials {
  background-color: var(--bg);
}

.testimonials__header {
  margin-bottom: 48px;
}

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.testi-card__quote {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
}

.testi-card__detail {
  font-size: 0.8rem;
  color: var(--ink-muted);
  display: block;
}

/* ============================================================
   BLOG PREVIEW SECTION
============================================================ */
.blog-preview {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.blog-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.blog-card__tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ============================================================
   CTA BANNER (FRAMED ROUNDED CARD WITH SUBTLE DOODLES)
============================================================ */
.cta-banner {
  background-color: var(--bg);
  padding-block: 80px;
}

.cta-banner .container {
  background-color: var(--green);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.cta-banner .container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20180%20180%22%20fill%3D%22none%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.13%29%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%20%20%3C%21--%20Outer%20Stamp%20Ring%20%28Dashed%29%20--%3E%0A%20%20%3Ccircle%20cx%3D%2290%22%20cy%3D%2290%22%20r%3D%2282%22%20stroke-dasharray%3D%225%204%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%2290%22%20cy%3D%2290%22%20r%3D%2274%22%20stroke-width%3D%221.2%22%2F%3E%0A%20%20%3C%21--%20Inner%20Globe%20Grid%20--%3E%0A%20%20%3Ccircle%20cx%3D%2290%22%20cy%3D%2290%22%20r%3D%2254%22%20stroke-width%3D%221.8%22%2F%3E%0A%20%20%3Cellipse%20cx%3D%2290%22%20cy%3D%2290%22%20rx%3D%2224%22%20ry%3D%2254%22%20stroke-width%3D%221.4%22%2F%3E%0A%20%20%3Cellipse%20cx%3D%2290%22%20cy%3D%2290%22%20rx%3D%2254%22%20ry%3D%2224%22%20stroke-width%3D%221.2%22%2F%3E%0A%20%20%3Cline%20x1%3D%2236%22%20y1%3D%2290%22%20x2%3D%22144%22%20y2%3D%2290%22%20stroke-width%3D%221.4%22%2F%3E%0A%20%20%3C%21--%20Orbital%20Flight%20Trajectory%20--%3E%0A%20%20%3Cpath%20d%3D%22M22%20130%20Q90%2020%20158%2050%22%20stroke-width%3D%222%22%20stroke-dasharray%3D%226%204%22%2F%3E%0A%20%20%3C%21--%20Airplane%20at%20apex%20--%3E%0A%20%20%3Cpath%20d%3D%22M158%2050%20L166%2042%20L162%2056%20L154%2054%20Z%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.18%29%22%20stroke%3D%22none%22%2F%3E%0A%20%20%3C%21--%20Star%20Accents%20--%3E%0A%20%20%3Cpolygon%20points%3D%2290%2C20%2092%2C26%2098%2C28%2092%2C30%2090%2C36%2088%2C30%2082%2C28%2088%2C26%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.15%29%22%20stroke%3D%22none%22%2F%3E%0A%20%20%3Cpolygon%20points%3D%2290%2C144%2092%2C150%2098%2C152%2092%2C154%2090%2C160%2088%2C154%2082%2C152%2088%2C150%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.15%29%22%20stroke%3D%22none%22%2F%3E%0A%3C%2Fsvg%3E"),
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20160%20160%22%20fill%3D%22none%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.14%29%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%20%20%3C%21--%20Laurel%20Left%20--%3E%0A%20%20%3Cpath%20d%3D%22M42%20128%20C30%20110%2026%2084%2036%2058%20C38%2066%2044%2072%2050%2074%20C42%2060%2044%2044%2054%2032%20C54%2042%2060%2048%2068%2050%20C62%2036%2068%2022%2080%2014%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M34%2094%20C26%2090%2022%2080%2026%2072%20C32%2076%2038%2084%2038%2092%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M38%20116%20C30%20110%2028%20100%2034%2092%20C40%2096%2044%20106%2042%20114%22%2F%3E%0A%20%20%3C%21--%20Laurel%20Right%20--%3E%0A%20%20%3Cpath%20d%3D%22M118%20128%20C130%20110%20134%2084%20124%2058%20C122%2066%20116%2072%20110%2074%20C118%2060%20116%2044%20106%2032%20C106%2042%20100%2048%2092%2050%20C98%2036%2092%2022%2080%2014%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M126%2094%20C134%2090%20138%2080%20134%2072%20C128%2076%20122%2084%20122%2092%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M122%20116%20C130%20110%20132%20100%20126%2092%20C120%2096%20116%20106%20118%20114%22%2F%3E%0A%20%20%3C%21--%20Center%20Cap%20--%3E%0A%20%20%3Cpolygon%20points%3D%2280%2C48%20118%2C66%2080%2C84%2042%2C66%22%20stroke-width%3D%222.2%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.03%29%22%2F%3E%0A%20%20%3Cline%20x1%3D%2280%22%20y1%3D%2284%22%20x2%3D%2280%22%20y2%3D%22108%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M60%2C76%20v14%20a20%2C20%200%200%200%2040%2C0%20V76%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M118%2C66%20v22%20c0%2C3%204%2C3%204%2C6%20c0%2C4%20-3%2C6%20-4%2C6%22%20stroke-width%3D%221.8%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%22118%22%20cy%3D%22100%22%20r%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.15%29%22%2F%3E%0A%20%20%3C%21--%20Base%20Ribbon%20--%3E%0A%20%20%3Cpath%20d%3D%22M60%20136%20Q80%20142%20100%20136%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E"),
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20140%20150%22%20fill%3D%22none%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.13%29%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%20%20%3C%21--%20Gothic%20Arch%20--%3E%0A%20%20%3Cpath%20d%3D%22M24%20140%20V70%20C24%2040%2070%2016%2070%2016%20C70%2016%20116%2040%20116%2070%20V140%22%20stroke-width%3D%222%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M34%20140%20V74%20C34%2048%2070%2028%2070%2028%20C70%2028%20106%2048%20106%2074%20V140%22%20stroke-width%3D%221.4%22%20stroke-dasharray%3D%224%203%22%2F%3E%0A%20%20%3C%21--%20Keyhole%20Center%20Crest%20--%3E%0A%20%20%3Cpath%20d%3D%22M54%2070%20A16%2016%200%200%201%2086%2070%20C86%2078%2080%2084%2076%2088%20V104%20H64%20V88%20C60%2084%2054%2078%2054%2070%20Z%22%20stroke-width%3D%221.6%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%2270%22%20cy%3D%2270%22%20r%3D%226%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.12%29%22%20stroke%3D%22none%22%2F%3E%0A%20%20%3C%21--%20Base%20Pedestal%20--%3E%0A%20%20%3Cline%20x1%3D%2216%22%20y1%3D%22140%22%20x2%3D%22124%22%20y2%3D%22140%22%20stroke-width%3D%222.5%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 220px 220px, 200px 200px, 140px 150px;
  background-position:
    -50px 50%,
    calc(100% + 40px) 50%,
    50% -30px;
  opacity: 1;
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-banner__left {
  max-width: 620px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-banner__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
}

.cta-wa {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.cta-wa:hover {
  color: var(--white);
}

/* ============================================================
   TROVA-STYLE CINEMATIC FOOTER & WATERMARK
============================================================ */
.site-footer {
  position: relative;
  background-color: #0E120B;
  color: #F7F9F4;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 0;
  margin-top: 0;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.02);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 12%, rgba(0,0,0,1) 30%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 12%, rgba(0,0,0,1) 30%);
}

.footer__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(14, 18, 11, 0.15) 0%,
    rgba(14, 18, 11, 0.65) 35%,
    rgba(10, 14, 8, 0.92) 70%,
    rgba(8, 11, 6, 0.98) 100%
  );
}

.footer__wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* --- Top Footer CTA --- */
.footer-cta {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-cta__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.8vw, 80px);
  font-weight: 500;
  color: var(--white);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.footer-cta__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 580px;
}

.footer-cta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.btn-wa {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  padding: 10px 16px;
}
.btn-wa:hover {
  color: #FFFFFF;
  transform: translateX(2px);
}

/* --- Main Footer Grid --- */
.footer__content {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.footer__logo span {
  color: var(--green-hover);
}

.footer__tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 340px;
  margin-top: 14px;
  margin-bottom: 24px;
}

.footer__copy-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.footer__col-head {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}
.footer__nav-list a:hover {
  color: #FFFFFF;
}

/* --- Massive Brand Watermark --- */
.footer__watermark-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  padding-top: 48px;
  margin-bottom: -10px;
}

.footer__watermark {
  font-family: var(--font-display);
  font-size: clamp(90px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  background: linear-gradient(180deg, rgba(247, 249, 244, 0.14) 0%, rgba(247, 249, 244, 0.01) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1080px) {
  .footer__content { grid-template-columns: 1fr; gap: 48px; }
  .footer-cta { margin-bottom: 80px; }
}

@media (max-width: 768px) {
  .site-footer { padding-top: 80px; }
  .footer-cta { margin-bottom: 64px; }
  .footer-cta__actions { flex-direction: column; gap: 14px; }
  .footer__nav-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__watermark-wrap { padding-top: 28px; }
}

============================================================ */
.site-footer {
  background: #111310;
  color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #FFFFFF;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: inherit;
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: #FFFFFF;
}

/* ============================================================
   SCROLL REVEAL (JS-GATED)
============================================================ */
.reveal {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* ============================================================
   RESPONSIVE (TABLET & MOBILE)
============================================================ */
@media (max-width: 1080px) {
  :root { --gutter: 24px; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__right { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 18px; }
  .section { padding-block: 64px; }
  .section--lg { padding-block: 80px; }

  .hero-frame { padding: 10px 10px 0 10px; }
  .hero {
    border-radius: 20px;
    height: auto;
    min-height: 560px;
  }
  .hero__content { padding: 80px 20px 36px 20px; }
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__right { align-items: flex-start; text-align: left; max-width: 100%; }
  .hero__pills { justify-content: flex-start; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding-inline: var(--gutter); }

  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__center { max-height: 360px; }
  .about__right { grid-column: auto; display: flex; flex-direction: column; }

  .destinations__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .destinations__header-right { align-items: flex-start; text-align: left; max-width: 100%; }
  .destinations__grid { grid-template-columns: 1fr; }
  .dest-card { height: 360px; }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .services__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services__desc { text-align: left; max-width: 100%; }
  .services__grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-preview__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .blog-preview__grid { grid-template-columns: 1fr; }

  .cta-banner .container { padding: 48px 24px; border-radius: 24px; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; gap: 32px; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}