/**
 * True Travel — home page sections (synced with TrueTravel-main)
 */

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

.true-home-page .true-main {
  padding-top: 0;
}

/* ── Light Hero ── */
.true-light-hero {
  position: relative;
  width: 100%;
  height: 110vh;
  height: 110dvh;
  min-height: 600px;
  margin-top: calc(-1 * var(--nav-height));
  padding-top: var(--nav-height);
  overflow: hidden;
  background: #f8faf9;
}

.true-light-hero__media {
  position: absolute;
  inset: 0;
  top: 0;
}

.true-light-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.true-light-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.true-light-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.true-light-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.true-light-hero__mouse {
  display: flex;
  justify-content: center;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding-top: 8px;
  box-shadow: 0 0 0 4px rgba(30, 77, 58, 0.15);
}

.true-light-hero__wheel {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.3));
  animation: true-scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes true-scroll-wheel {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

@media (max-width: 1023px) {
  .true-light-hero {
    padding-top: 0;
  }

  .true-light-hero__image {
    object-fit: cover;
    object-position: top center;
  }
}

@media (max-width: 767px) {
  .true-light-hero {
    margin-top: var(--nav-height);
    padding-top: 0;
    width: 100%;
    /* Match mobile hero PNG ratio (750×1334) — no empty band below image */
    height: min(calc(100vw * 1334 / 750), calc(100svh - var(--nav-height)));
    min-height: 0;
    max-height: none;
    background: #163a2b;
  }

  .true-light-hero__image {
    object-fit: cover;
    object-position: top center;
  }

  .true-light-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      transparent 12%,
      transparent 75%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .true-light-hero__scroll {
    bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .true-light-hero {
    height: min(calc(100vw * 1334 / 750), calc(100svh - var(--nav-height)));
    min-height: 0;
  }

  .true-light-hero__image {
    object-position: top center;
  }
}

/* ── About ── */
.true-home-about {
  position: relative;
  background: linear-gradient(180deg, rgba(30, 77, 58, 0.03) 0%, rgba(248, 250, 249, 0.5) 50%, rgba(30, 77, 58, 0.03) 100%);
}

.true-home-about__grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .true-home-about__grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}

.true-home-about__mission {
  font-weight: 600;
  color: var(--color-primary);
}

.true-home-about__features {
  display: grid;
  gap: 1rem;
  margin-top: var(--space-6);
}

.true-home-about__feature {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
}

.true-home-about__feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.true-home-about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(30, 77, 58, 0.08);
  border-radius: 12px;
}

.true-home-about__feature-icon svg { width: 24px; height: 24px; }
.true-home-about__feature h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.true-home-about__feature p { margin: 0; font-size: 0.95rem; color: var(--color-gray-600); }

.true-home-about__image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.true-home-about__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.true-home-about__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

html[dir="rtl"] .true-home-about__badge { left: auto; right: 1.25rem; }

.true-home-about__badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-white);
}

.true-home-about__badge span { font-size: 0.85rem; font-weight: 700; }

/* ── Special Offers ── */
.true-home-offers {
  background: var(--color-white);
}

.true-offer-card--home .true-offer-card__rating,
.true-offer-card--home .true-offer-card__duration,
.true-offer-card--home .true-offer-card__price { display: none; }

.true-offer-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

.true-offer-card--home .true-offer-card__book {
  width: 100%;
  margin-top: auto;
}

.true-home-offers__cta svg {
  transition: transform 0.2s;
}

html[dir="rtl"] .true-home-offers__cta svg { transform: scaleX(-1); }

.true-home-offers__cta:hover svg { transform: translateX(4px); }
html[dir="rtl"] .true-home-offers__cta:hover svg { transform: scaleX(-1) translateX(-4px); }

/* ── Featured Destinations ── */
.true-home-destinations {
  --dest-box-width: 26rem;
  --dest-box-height: 31rem;
  --dest-box-gap: 3rem;
  --dest-peek: 24px;
  padding: 6.25rem 0;
  background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .true-home-destinations {
    --dest-box-width: 27rem;
    --dest-box-height: 32rem;
    --dest-peek: 26px;
  }
}

.true-home-destinations .true-container {
  max-width: 87.5rem;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.true-home-destinations__header {
  display: block;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto 3.75rem;
  padding-inline: 1rem;
  text-align: center;
}

.true-home-destinations__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  padding: 0.625rem 1.25rem;
  background: rgba(30, 77, 58, 0.08);
  border: 1px solid rgba(30, 77, 58, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[dir="rtl"] .true-home-destinations__label {
  text-transform: none;
  letter-spacing: 0;
}

.true-home-destinations__label svg {
  flex-shrink: 0;
  color: var(--color-primary-light);
}

.true-home-destinations__title {
  display: block;
  width: 100%;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-align: center;
}

.true-home-destinations__subtitle {
  display: block;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a5a5a;
  text-align: center;
}

.true-home-destinations__grid {
  display: grid;
  grid-template-columns: var(--dest-box-width) minmax(0, 1fr);
  align-items: center;
  gap: var(--dest-box-gap);
  max-width: calc(var(--dest-box-width) * 2 + var(--dest-box-gap) + 1rem);
  margin-inline: auto;
}

.true-home-destinations__details-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 0 0 var(--dest-box-width);
  width: var(--dest-box-width);
  max-width: var(--dest-box-width);
  align-self: center;
}

.true-home-destinations__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--dest-box-height);
  min-height: var(--dest-box-height);
  padding: 1.625rem 1.75rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 77, 58, 0.1);
  border-radius: 1.5rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(30, 77, 58, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.35s ease;
}

.true-home-destinations__card.is-switching {
  opacity: 0.5;
}

.true-home-destinations__card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(30, 77, 58, 0.06);
}

.true-home-destinations__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.true-home-destinations__location {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(30, 77, 58, 0.08);
  color: var(--color-primary);
}

.true-home-destinations__location svg {
  color: var(--color-primary-light);
}

.true-home-destinations__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.true-home-destinations__reviews {
  font-weight: 400;
  font-size: 0.8rem;
  color: #888;
}

.true-home-destinations__card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
  color: var(--color-primary);
}

.true-home-destinations__card > p {
  color: #5a5a5a;
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.true-home-destinations__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.true-home-destinations__highlights span {
  padding: 0.5rem 0.875rem;
  border-radius: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(191, 148, 104, 0.15), rgba(166, 125, 86, 0.1));
  border: 1px solid rgba(191, 148, 104, 0.3);
  color: #a67d56;
}

.true-home-destinations__duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5a5a5a;
  border-top: 1px solid rgba(30, 77, 58, 0.1);
  border-bottom: 1px solid rgba(30, 77, 58, 0.1);
}

.true-home-destinations__duration svg {
  color: var(--color-primary-light);
}

.true-home-destinations__view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  margin-top: auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(135deg, #1E4D3A 0%, #2d6b52 100%);
  border: none;
  border-radius: 0.875rem;
  box-shadow:
    0 4px 20px rgba(30, 77, 58, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.true-home-destinations__view:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  box-shadow:
    0 8px 30px rgba(30, 77, 58, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

html[dir="rtl"] .true-home-destinations__view svg {
  transform: scaleX(-1);
}

/* Carousel column */
.true-home-destinations__showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

/* Single nav row — under details on desktop, bottom of card on mobile */
.true-home-destinations__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.true-home-destinations__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(30, 77, 58, 0.12);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(30, 77, 58, 0.08);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.true-home-destinations__nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(30, 77, 58, 0.2);
}

.true-home-destinations__nav-btn:active {
  transform: scale(0.96);
}

html[dir="rtl"] .true-home-destinations__nav-btn svg {
  transform: scaleX(-1);
}

.true-home-destinations__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.true-home-destinations__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(30, 77, 58, 0.2);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.true-home-destinations__dot:hover {
  background: rgba(30, 77, 58, 0.4);
}

.true-home-destinations__dot.is-active {
  width: 1.5rem;
  background: linear-gradient(135deg, #1E4D3A, #2d6b52);
}

/* Image carousel */
.true-home-destinations__carousel {
  position: relative;
  width: 100%;
  max-width: var(--dest-box-width);
  overflow: visible;
  border-radius: 1.5rem;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.true-home-destinations__carousel.is-dragging {
  cursor: grabbing;
}

.true-home-destinations__swipe-hint {
  display: none;
}

.true-home-destinations__swipe-hint span,
.true-home-destinations__swipe-hint svg {
  color: #fff;
}

.true-home-destinations__stack {
  position: relative;
  width: 100%;
  height: var(--dest-box-height);
  overflow: visible;
}

.true-home-destinations__slide {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(30, 77, 58, 0.1);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.45s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.true-home-destinations__slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) rotate(0deg) scale(1);
  pointer-events: auto;
}

.true-home-destinations__slide.is-behind-1 {
  z-index: 2;
  opacity: 0.92;
  transform: translateX(var(--dest-peek)) rotate(3deg) scale(0.94);
  filter: brightness(0.92);
}

.true-home-destinations__slide.is-behind-2 {
  z-index: 1;
  opacity: 0.78;
  transform: translateX(calc(var(--dest-peek) * 2.1)) rotate(5.5deg) scale(0.88);
  filter: brightness(0.85);
}

.true-home-destinations__slide.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: scale(0.88);
}

html[dir="rtl"] .true-home-destinations__slide.is-behind-1 {
  transform: translateX(calc(var(--dest-peek) * -1)) rotate(-3deg) scale(0.94);
}

html[dir="rtl"] .true-home-destinations__slide.is-behind-2 {
  transform: translateX(calc(var(--dest-peek) * -2.1)) rotate(-5.5deg) scale(0.88);
}

.true-home-destinations__carousel.is-dragging .true-home-destinations__slide {
  transition: none !important;
}

.true-home-destinations__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.true-travel .true-home-destinations__slide img {
  height: 100%;
  max-width: none;
}

.true-home-destinations__slide.is-active:hover img {
  transform: scale(1.05);
}

.true-home-destinations__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.true-home-destinations__slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 1.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  pointer-events: none;
}

.true-home-destinations__slide-caption svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.true-home-destinations .true-section__cta {
  margin-top: 3.75rem;
}

.true-home-destinations__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 77, 58, 0.2);
  border-radius: 999px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.true-home-destinations__cta:hover {
  color: var(--color-primary);
  background: rgba(30, 77, 58, 0.1);
  border-color: rgba(30, 77, 58, 0.3);
  transform: translateY(-2px);
}

.true-home-destinations__cta svg {
  transition: transform 0.3s ease;
}

.true-home-destinations__cta:hover svg {
  transform: translateX(4px);
}

html[dir="rtl"] .true-home-destinations__cta svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .true-home-destinations__cta:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

@media (max-width: 1200px) {
  .true-home-destinations {
    --dest-box-gap: 3rem;
  }
}

@media (max-width: 968px) {
  .true-home-destinations {
    padding: 5rem 0;
    --dest-box-width: min(26rem, calc(100vw - 1.5rem));
    --dest-box-height: min(24rem, 72vw);
    --dest-box-gap: 0;
    --dest-peek: 0;
  }

  .true-home-destinations__grid {
    display: flex;
    flex-direction: column;
    max-width: var(--dest-box-width);
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(30, 77, 58, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

  .true-home-destinations__showcase {
    order: 1;
    width: 100%;
  }

  .true-home-destinations__swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: absolute;
    top: 0.75rem;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    pointer-events: none;
  }

  .true-home-destinations__swipe-hint span,
  .true-home-destinations__swipe-hint svg {
    color: #fff;
  }

  .true-home-destinations__swipe-hint svg {
    flex-shrink: 0;
    opacity: 0.95;
  }

  html[dir="rtl"] .true-home-destinations__swipe-hint svg {
    transform: scaleX(-1);
  }

  .true-home-destinations__details-col {
    order: 2;
    width: 100%;
    max-width: none;
    flex: none;
  }

  .true-home-destinations__nav {
    margin-top: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(30, 77, 58, 0.06);
  }

  .true-home-destinations__carousel {
    max-width: none;
    border-radius: 0;
    touch-action: pan-x pinch-zoom;
  }

  .true-home-destinations__stack {
    height: var(--dest-box-height);
  }

  .true-home-destinations__slide.is-hidden {
    opacity: 0;
    transform: translateX(14%) scale(0.97);
    pointer-events: none;
  }

  html[dir="rtl"] .true-home-destinations__slide.is-hidden {
    transform: translateX(-14%) scale(0.97);
  }

  .true-home-destinations__card {
    height: auto;
    min-height: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(30, 77, 58, 0.08);
  }

  .true-home-destinations__card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .true-home-destinations {
    padding: 3.125rem 0;
    --dest-box-width: calc(100vw - 1.25rem);
    --dest-box-height: min(23rem, 74vw);
  }

  .true-home-destinations .true-container {
    padding-inline: 1rem;
  }

  .true-home-destinations__header {
    margin-bottom: 2rem;
    padding-inline: 0.25rem;
  }

  .true-home-destinations__label {
    font-size: 0.7rem;
    padding: 0.5rem 0.875rem;
  }

  .true-home-destinations__title {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
  }

  .true-home-destinations__subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    padding-inline: 0.625rem;
  }

  .true-home-destinations__details-col {
    gap: 1.25rem;
  }

  .true-home-destinations__card {
    height: auto;
    min-height: 0;
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
  }

  .true-home-destinations__meta {
    gap: 0.625rem;
  }

  .true-home-destinations__card h3 {
    font-size: 1.5rem;
  }

  .true-home-destinations__card > p {
    font-size: 0.9rem;
  }

  .true-home-destinations__duration {
    padding: 0.875rem 0;
    margin-bottom: 1.125rem;
  }

  .true-home-destinations__view {
    padding: 1rem 1.75rem;
    min-height: 3.25rem;
    border-radius: 1rem;
  }

  .true-home-destinations__slide {
    border-radius: 1.25rem;
  }

  .true-home-destinations__slide-overlay {
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  }

  .true-home-destinations__slide-caption {
    font-size: 1.05rem;
    font-weight: 600;
  }

  .true-home-destinations .true-section__cta {
    margin-top: 2.5rem;
    padding-inline: 1rem;
  }

  .true-home-destinations__cta {
    width: 100%;
    justify-content: center;
    min-height: 3.5rem;
  }
}

@media (max-width: 375px) {
  .true-home-destinations {
    --dest-box-width: calc(100vw - 1rem);
    --dest-box-height: min(21rem, 70vw);
  }

  .true-home-destinations__title {
    font-size: 1.5rem;
  }

  .true-home-destinations__subtitle {
    font-size: 0.85rem;
  }

  .true-home-destinations__card {
    padding: 1.25rem 1rem;
  }

  .true-home-destinations__card h3 {
    font-size: 1.4rem;
  }
}

/* ── FAQ ── */
.true-home-faq { background: var(--color-gray-50); }

.true-home-faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.true-home-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: inherit;
  font: inherit;
  font-weight: 700;
  color: var(--color-primary);
}

.true-home-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 77, 58, 0.08);
  font-size: 1.25rem;
  line-height: 1;
}

.true-home-faq__item.is-open .true-home-faq__icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.true-home-faq__answer {
  padding: 0 1.25rem 1.1rem;
}

.true-home-faq__answer p {
  margin: 0;
  color: var(--color-gray-600);
}

/* ── Contact ── */
.true-home-contact {
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(30, 77, 58, 0.04) 100%);
}

.true-home-contact__grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .true-home-contact__grid { grid-template-columns: 1.1fr 0.9fr; }
}

.true-home-contact__form-wrap {
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.true-home-contact__form-wrap h3 {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.true-home-contact__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .true-home-contact__row { grid-template-columns: 1fr 1fr; }
}

.true-required { color: #c0392b; }

.true-home-contact__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.true-home-contact__cards {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.true-home-contact__card {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}

a.true-home-contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.true-home-contact__card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(30, 77, 58, 0.08);
  border-radius: 12px;
}

.true-home-contact__card-icon svg { width: 22px; height: 22px; }
.true-home-contact__card h4 { margin: 0 0 0.25rem; font-size: 1rem; }
.true-home-contact__card p { margin: 0; color: var(--color-gray-600); font-size: 0.95rem; }

.true-home-contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.true-home-contact__map iframe {
  display: block;
  width: 100%;
}

/* ── Accreditations ── */
.true-home-accreditations {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: visible;
}

.true-home-accreditations::before,
.true-home-accreditations::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.true-home-accreditations::before {
  top: 0;
  left: 50%;
  width: 18rem;
  height: 18rem;
  transform: translateX(-50%);
  background: rgba(244, 128, 65, 0.1);
}

.true-home-accreditations::after {
  bottom: -5rem;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(244, 128, 65, 0.08);
}

.true-home-accreditations__grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .true-home-accreditations__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .true-home-accreditations__grid { grid-template-columns: repeat(3, 1fr); }
}

.true-home-accreditations__card {
  width: 100%;
  padding: 1rem;
  text-align: inherit;
  background: var(--color-white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.true-home-accreditations__card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 128, 65, 0.7);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.true-home-accreditations__thumb {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  aspect-ratio: 4 / 3;
}

.true-home-accreditations__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.true-home-accreditations__card:hover .true-home-accreditations__thumb img {
  transform: scale(1.08);
}

.true-home-accreditations__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.true-home-accreditations__zoom svg {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.true-home-accreditations__card:hover .true-home-accreditations__zoom,
.true-home-accreditations__card:focus-visible .true-home-accreditations__zoom {
  opacity: 1;
}

.true-home-accreditations__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

html[dir="rtl"] .true-home-accreditations__badge { right: auto; left: 0.75rem; }

.true-home-accreditations__body {
  padding: 1rem 0.25rem 0.25rem;
}

.true-home-accreditations__body h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.true-home-accreditations__body p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.true-home-accreditations__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #F48041;
}

.true-home-accreditations__modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(8px);
}

.true-home-accreditations__modal[hidden] { display: none; }

.true-home-accreditations__modal-backdrop {
  position: absolute;
  inset: 0;
}

.true-home-accreditations__modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 4.5rem 1rem 1.5rem;
}

.true-home-accreditations__modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1310;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.true-home-accreditations__modal-close:hover,
.true-home-accreditations__modal-close:focus-visible {
  background: #F48041;
  border-color: #F48041;
  color: #fff;
  transform: scale(1.06);
  outline: none;
}

html[dir="rtl"] .true-home-accreditations__modal-close { right: auto; left: 1.25rem; }

@media (min-width: 768px) {
  .true-home-accreditations__modal-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
  }

  html[dir="rtl"] .true-home-accreditations__modal-close { left: 1.5rem; }
}

.true-home-accreditations__modal-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0f172a;
  min-height: 0;
}

.true-home-accreditations__modal-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
}

.true-home-accreditations__modal-caption {
  flex-shrink: 0;
  margin-top: 1rem;
  text-align: center;
  color: #e2e8f0;
}

.true-home-accreditations__modal-caption h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.true-home-accreditations__modal-caption p {
  margin: 0;
  color: #cbd5e1;
}

@media (prefers-reduced-motion: reduce) {
  .true-light-hero__wheel,
  .true-home-about__feature,
  .true-home-destinations__slide,
  .true-home-destinations__card,
  .true-home-accreditations__card,
  .true-home-accreditations__thumb img {
    animation: none;
    transition: none;
  }
}
