/* =============================================================
   V Trial — Premium Cinematic Travel Website
   Style System
   ============================================================= */

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

:root {
  --bg-deep: #05120E;
  --bg-card: #0A1F18;
  --bg-card-hover: #102A22;
  --gold: #C6A75E;
  --gold-light: #D4BA7A;
  --gold-dark: #A88B3E;
  --beige: #D6CBAF;
  --beige-muted: #A89F8E;
  --white: #F0ECE4;
  --white-soft: #C8C2B6;
  --text-body: #9A9A8A;
  --border: rgba(198, 167, 94, 0.18);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg-deep);
  color: var(--text-body);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ── Grain Overlay ──────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: clamp(5rem, 12vh, 10rem) 0;
  position: relative;
}

.section__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal--delay-1 {
  transition-delay: 0.15s;
}

.reveal--delay-2 {
  transition-delay: 0.3s;
}

.reveal--delay-3 {
  transition-delay: 0.45s;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(5, 18, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: height 0.5s var(--ease);
}

.nav--scrolled .nav__logo-img {
  height: 50px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-soft);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 31, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 0;
  min-width: 180px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  color: var(--white-soft);
  letter-spacing: 0.04em;
  transition: color 0.3s, padding-left 0.3s var(--ease);
}

.nav__dropdown a:hover {
  color: var(--gold);
  padding-left: 1.8rem;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(198, 167, 94, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 236, 228, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
}

.btn--submit {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 280px;
  padding: 1.1rem 2rem;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(5, 18, 14, 0.45) 0%,
      rgba(5, 18, 14, 0.6) 40%,
      rgba(5, 18, 14, 0.88) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--beige-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--serif);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── Destinations Grid ──────────────────────────────────────── */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
}

.dest-card__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dest-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.dest-card:hover .dest-card__img-wrap img {
  transform: scale(1.08);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(5, 18, 14, 0.88) 100%);
  z-index: 1;
}

.dest-card__name {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s var(--ease);
}

.dest-card:hover .dest-card__name {
  border-bottom-color: var(--gold);
}

.dest-card.active {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* Destination Detail Panel */
.dest-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out), opacity 0.5s var(--ease);
  opacity: 0;
  margin-top: 0;
}

.dest-detail[aria-hidden="false"] {
  max-height: 300px;
  opacity: 1;
  margin-top: 2rem;
}

.dest-detail__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  position: relative;
}

.dest-detail__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white-soft);
  transition: color 0.3s;
  line-height: 1;
}

.dest-detail__close:hover {
  color: var(--gold);
}

.dest-detail__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.dest-detail__desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--serif);
  max-width: 600px;
}

.dest-detail__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #081A14 50%, var(--bg-deep) 100%);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.why-us__card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(10, 31, 24, 0.5);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.why-us__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-us__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.why-us__icon svg {
  width: 100%;
  height: 100%;
}

.why-us__card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-us__card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* Gold Divider on cards */
.why-us__card::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.5;
  transition: width 0.4s var(--ease), opacity 0.4s;
}

.why-us__card:hover::before {
  width: 60px;
  opacity: 1;
}

/* ── About ─────────────────────────────────────────────────── */
.about__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__para {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--beige-muted);
  margin-bottom: 1.25rem;
}

.about__para:first-of-type {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--beige);
}

.about__img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__img-stack img {
  border-radius: 4px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about__img-stack img:nth-child(2) {
  transform: translateY(2.5rem);
}

/* ── Visa ──────────────────────────────────────────────────── */
.visa {
  background: linear-gradient(180deg, var(--bg-deep), #071A13, var(--bg-deep));
}

.visa__layout {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 4rem;
  align-items: center;
}

.visa__desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--beige-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.visa__pattern {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visa__pattern svg {
  width: 240px;
  height: 240px;
  animation: visaSpin 30s linear infinite;
}

@keyframes visaSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Contact Form ──────────────────────────────────────────── */
.contact {
  background: linear-gradient(180deg, var(--bg-deep), #03110D);
}

.contact__form {
  max-width: 740px;
  margin: 0 auto;
}

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

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

.form__group--full {
  margin-bottom: 1.5rem;
}

.form__group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: 0.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(154, 148, 138, 0.5);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.08);
}

.form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A948A' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form__group select option {
  background: var(--bg-card);
  color: var(--white);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__success {
  display: none;
  max-width: 740px;
  margin: 0 auto;
}

.contact__success[aria-hidden="false"] {
  display: block;
}

.contact__success-inner {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(10, 31, 24, 0.5);
}

.contact__success-inner svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact__success-inner p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--beige);
  line-height: 1.7;
}

/* Contact Info */
.contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__info-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact__info-item a,
.contact__info-item address {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--beige-muted);
  line-height: 1.7;
  transition: color 0.3s var(--ease);
}

.contact__info-item a:hover {
  color: var(--gold);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--beige-muted);
  opacity: 0.6;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--white-soft);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

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

/* ── Mobile Sticky CTA ─────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 14, 0.95) 30%);
}

.btn--mobile {
  display: block;
  text-align: center;
  width: 100%;
  border-radius: 4px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .visa__pattern {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 18, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__item {
    text-align: center;
    width: 100%;
  }

  .nav__item--dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__item--dropdown .nav__dropdown {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: max-height 0.4s var(--ease);
    text-align: center;
  }

  .nav__item--dropdown.expanded .nav__dropdown {
    max-height: 400px;
    padding: 0.5rem 0;
  }

  .nav__dropdown a {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: var(--beige-muted);
    text-align: center;
  }

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

  .dest-card {
    aspect-ratio: 3/4;
  }

  .dest-detail__inner {
    padding: 2rem 1.5rem;
  }

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

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .about__img-stack {
    grid-template-columns: 1fr 1fr;
  }

  .about__img-stack img {
    height: 220px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-cta {
    display: block;
  }

  /* Pad bottom for sticky CTA */
  .footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 480px) {
  .destinations__grid {
    grid-template-columns: 1fr;
  }

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

  .about__img-stack img {
    height: 180px;
  }
}