/* =========================================================
   MEETLIONS — GLOBAL STYLESHEET
   Compatible with /tr/index.html
   ========================================================= */


/* =========================
   1. VARIABLES
   ========================= */

:root {
  --color-background: #080808;
  --color-background-soft: #111111;
  --color-surface: #171717;
  --color-surface-light: #202020;

  --color-text: #ffffff;
  --color-text-soft: #d2d2d2;
  --color-text-muted: #969696;

  --color-gold: #d8ad5b;
  --color-gold-light: #f0cf88;
  --color-gold-dark: #a97d35;

  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-light: rgba(255, 255, 255, 0.2);

  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c4a;

  --container-width: 1240px;
  --header-height: 88px;

  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;

  --shadow-small: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-large: 0 25px 70px rgba(0, 0, 0, 0.4);

  --transition: 0.3s ease;
}


/* =========================
   2. RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

p {
  color: var(--color-text-soft);
}

::selection {
  background: var(--color-gold);
  color: #000000;
}


/* =========================
   3. GENERAL
   ========================= */

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

.content-section {
  padding: 120px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 60px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.section-eyebrow,
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-lead {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.section-content h2 {
  margin-bottom: 28px;
}

.section-content p {
  margin-bottom: 22px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  height: 680px;
  object-fit: cover;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 99999;
  padding: 12px 18px;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 20px;
}


/* =========================
   4. BUTTONS
   ========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  color: #080808;
  box-shadow: 0 12px 32px rgba(216, 173, 91, 0.23);
}

.button-primary:hover {
  background: linear-gradient(
    135deg,
    #f7dfa6,
    var(--color-gold-light)
  );
  box-shadow: 0 16px 38px rgba(216, 173, 91, 0.35);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

.button-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-outline:hover {
  background: #ffffff;
  color: #080808;
}

.button-dark {
  background: #080808;
  color: #ffffff;
  border-color: #080808;
}

.button-dark:hover {
  background: #ffffff;
  color: #080808;
}

.button-large {
  min-height: 62px;
  padding: 18px 34px;
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold-light);
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

.center-button {
  margin-top: 48px;
  text-align: center;
}


/* =========================
   5. HEADER
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.96),
    rgba(5, 5, 5, 0.78)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.site-logo {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
}

.site-logo img {
  width: 88px;
  height: 64px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-navigation > a:not(.navigation-booking-button) {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-navigation > a:not(.navigation-booking-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-navigation > a:not(.navigation-booking-button):hover {
  color: #ffffff;
}

.main-navigation > a:not(.navigation-booking-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navigation-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  background: var(--color-gold);
  color: #080808;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform var(--transition),
    background var(--transition);
}

.navigation-booking-button:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}


/* =========================
   6. LANGUAGE SWITCHER
   ========================= */

.language-switcher {
  position: relative;
}

.language-button {
  min-width: 44px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 90px;
  padding: 8px;
  background: #161616;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-small);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a.active {
  background: var(--color-gold);
  color: #080808;
}


/* =========================
   7. MOBILE MENU BUTTON
   ========================= */

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition:
    transform var(--transition),
    top var(--transition),
    opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle.menu-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.menu-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.menu-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}


/* =========================
   8. HERO
   ========================= */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 80px) 0 90px;
  overflow: hidden;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.72) 40%,
      rgba(0, 0, 0, 0.22) 72%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.84) 0%,
      transparent 48%
    );
}

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

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

.hero-content h1 {
  max-width: 920px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero-description {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-small-text {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.scroll-down {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-down span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scroll-indicator 1.8s infinite;
}

@keyframes scroll-indicator {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}


/* =========================
   9. TRUST SECTION
   ========================= */

.trust-section {
  position: relative;
  z-index: 4;
  background: #0e0e0e;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 30px 26px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 0.96rem;
}

.trust-item span {
  color: var(--color-text-muted);
  font-size: 0.79rem;
}


/* =========================
   10. EXPERIENCE
   ========================= */

.experience-section {
  background:
    radial-gradient(
      circle at 12% 40%,
      rgba(216, 173, 91, 0.08),
      transparent 28%
    ),
    var(--color-background);
}

.experience-image img {
  object-position: center;
}

.experience-section blockquote {
  position: relative;
  margin: 34px 0;
  padding: 24px 28px;
  background: rgba(216, 173, 91, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 14px 14px 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
}


/* =========================
   11. BENEFITS
   ========================= */

.why-section {
  background: var(--color-background-soft);
}

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

.benefit-card {
  position: relative;
  min-height: 320px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 91, 0.45);
  background:
    linear-gradient(
      145deg,
      rgba(216, 173, 91, 0.11),
      rgba(255, 255, 255, 0.035)
    );
}

.card-number {
  display: block;
  margin-bottom: 65px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  margin-bottom: 16px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}


/* =========================
   12. REAL MOMENTS
   ========================= */

.moments-section {
  background: #090909;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 290px;
  gap: 18px;
}

.moment-card {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-medium);
}

.moment-card-large {
  grid-column: span 7;
  grid-row: span 2;
}

.moment-card-wide {
  grid-column: span 8;
}

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

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

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.04) 65%
  );
}

.moment-card figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================
   13. STEPS
   ========================= */

.steps-section {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(216, 173, 91, 0.1),
      transparent 30%
    ),
    var(--color-gold);
  color: #080808;
}

.steps-section .section-eyebrow {
  color: rgba(8, 8, 8, 0.66);
}

.steps-section .section-heading p {
  color: rgba(8, 8, 8, 0.74);
}

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

.step-card {
  min-height: 290px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: var(--radius-medium);
  backdrop-filter: blur(12px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 50px;
  background: #080808;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 900;
}

.step-card h3 {
  color: #080808;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.73);
}


/* =========================
   14. TRANSFER
   ========================= */

.transfer-section {
  background: var(--color-background-soft);
}

.transfer-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 35px;
}

.location-tags span {
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-soft);
  font-size: 0.81rem;
  font-weight: 650;
}

.transfer-image img {
  object-position: center;
}


/* =========================
   15. EMOTIONAL CTA
   ========================= */

.emotional-cta-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: 120px 0;
  overflow: hidden;
}

.emotional-cta-background,
.emotional-cta-overlay {
  position: absolute;
  inset: 0;
}

.emotional-cta-background img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.emotional-cta-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.54)
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72),
      transparent
    );
}

.emotional-cta-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.emotional-cta-content h2 {
  margin-bottom: 25px;
}

.emotional-cta-content p {
  max-width: 700px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.12rem;
}

.emotional-cta-content small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
}


/* =========================
   16. FAQ
   ========================= */

.faq-section {
  background: #0d0d0d;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading p {
  margin-bottom: 26px;
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 25px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 750;
  text-align: left;
}

.faq-question span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--color-text-muted);
}

.faq-item.faq-open .faq-answer {
  max-height: 400px;
}

.faq-item.faq-open .faq-question span {
  transform: rotate(45deg);
}


/* =========================
   17. FINAL CTA
   ========================= */

.final-cta-section {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(216, 173, 91, 0.18),
      transparent 45%
    ),
    #080808;
  border-top: 1px solid var(--color-border);
}

.final-cta-content {
  max-width: 900px;
  text-align: center;
}

.final-cta-content h2 {
  margin-bottom: 25px;
}

.final-cta-content p {
  max-width: 650px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
}


/* =========================
   18. FOOTER
   ========================= */

.site-footer {
  padding: 80px 0 120px;
  background: #050505;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 55px;
}

.footer-brand img {
  width: 110px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 0.96rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-column a {
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  margin: 0;
  color: #707070;
  font-size: 0.78rem;
}


/* =========================
   19. FLOATING WHATSAPP
   ========================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 54px;
  padding: 13px 22px;
  background: var(--color-whatsapp);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.3);
  font-weight: 850;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.floating-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.4);
}


/* =========================
   20. MOBILE BOOKING BAR
   ========================= */

.mobile-booking-bar {
  display: none;
}


/* =========================
   21. RESPONSIVE — TABLET
   ========================= */

@media (max-width: 1100px) {
  :root {
    --header-height: 78px;
  }

  .main-navigation {
    gap: 17px;
  }

  .main-navigation > a:not(.navigation-booking-button) {
    font-size: 0.82rem;
  }

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

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


/* =========================
   22. RESPONSIVE — MOBILE MENU
   ========================= */

@media (max-width: 900px) {
  .content-section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
    padding: 110px 28px 40px;
    background: rgba(5, 5, 5, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

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

  .main-navigation > a:not(.navigation-booking-button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.22rem;
  }

  .navigation-booking-button {
    margin-top: 20px;
    min-height: 54px;
  }

  .language-switcher {
    margin-top: 16px;
  }

  .language-button {
    display: none;
  }

  .language-menu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .language-menu a {
    padding: 8px 13px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
  }

  .two-column-layout,
  .transfer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }

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

  .step-card {
    min-height: auto;
  }

  .moment-card {
    grid-column: span 6;
  }

  .moment-card-large {
    grid-column: span 12;
    grid-row: span 2;
  }

  .moment-card-wide {
    grid-column: span 12;
  }

  .experience-image {
    order: 2;
  }

  .experience-section .section-content {
    order: 1;
  }

  .transfer-image {
    order: 2;
  }

  .image-frame img {
    height: 580px;
  }

  .floating-whatsapp {
    bottom: 88px;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 11px 18px;
    background: rgba(8, 8, 8, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
  }

  .mobile-booking-text {
    display: grid;
  }

  .mobile-booking-text strong {
    color: #ffffff;
    font-size: 0.9rem;
  }

  .mobile-booking-text span {
    color: var(--color-text-muted);
    font-size: 0.7rem;
  }

  .mobile-booking-bar > a {
    flex: 0 0 auto;
    padding: 11px 18px;
    background: var(--color-whatsapp);
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 850;
  }

  .site-footer {
    padding-bottom: 170px;
  }
}


/* =========================
   23. RESPONSIVE — SMALL MOBILE
   ========================= */

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .content-section {
    padding: 74px 0;
  }

  .header-container {
    min-height: 70px;
  }

  .site-logo img {
    width: 76px;
    height: 54px;
  }

  .hero-section {
    min-height: 100svh;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-background img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.72) 53%,
        rgba(0, 0, 0, 0.34) 100%
      );
  }

  .hero-content {
    padding-top: 180px;
  }

  .hero-content h1 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero-description {
    font-size: 1.02rem;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-features span {
    padding: 7px 11px;
    font-size: 0.74rem;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .scroll-down {
    display: none;
  }

  .trust-item {
    padding: 22px 12px;
  }

  .trust-item strong {
    font-size: 0.8rem;
  }

  .trust-item span {
    font-size: 0.68rem;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-content h2 {
    margin-bottom: 22px;
  }

  .image-frame {
    border-radius: 20px;
  }

  .image-frame img {
    height: 470px;
  }

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

  .benefit-card {
    min-height: auto;
    padding: 27px;
  }

  .card-number {
    margin-bottom: 40px;
  }

  .moments-grid {
    display: block;
  }

  .moment-card,
  .moment-card-large,
  .moment-card-wide {
    height: 420px;
    margin-bottom: 14px;
  }

  .step-card {
    padding: 28px;
  }

  .step-number {
    margin-bottom: 34px;
  }

  .emotional-cta-section {
    min-height: 700px;
    padding: 90px 0;
  }

  .emotional-cta-overlay {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.48)
      );
  }

  .faq-question {
    font-size: 0.96rem;
  }

  .final-cta-section {
    padding: 90px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 84px;
    min-width: auto;
    min-height: 48px;
    padding: 11px 17px;
    font-size: 0.8rem;
  }

  .mobile-booking-bar {
    min-height: 68px;
    padding-inline: 13px;
  }

  .mobile-booking-bar > a {
    padding: 10px 14px;
  }
}


/* =========================
   24. ACCESSIBILITY
   ========================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 4px;
}


/* =========================
   25. PRINT
   ========================= */

@media print {
  .site-header,
  .floating-whatsapp,
  .mobile-booking-bar,
  .scroll-down {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  p {
    color: #222222;
  }
}