* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --panel: #151515;
  --panel-soft: #1d1d1d;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c9a96e;
  --accent-dark: #9c7840;
  --success: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #111 0%, var(--bg) 45%, #050505 100%);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  min-height: 74px;
  padding: 14px 44px 14px 170px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.site-header a,
.drop-trigger {
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.site-header a:hover,
.drop-trigger:hover {
  color: var(--accent);
}

.brand-logo {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  height: 108px;
  justify-content: center;
  left: 28px;
  overflow: hidden;
  padding: 12px;
  position: fixed;
  top: 14px;
  width: 108px;
  z-index: 1100;
}

.brand-logo img {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  display: none;
  min-width: 180px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 30px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  margin: 0;
  padding: 10px 12px;
}

.header-cta,
.btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  justify-content: center;
  line-height: 1;
  padding: 12px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta {
  padding: 10px 16px;
}

.btn:hover,
.header-cta:hover {
  box-shadow: 0 12px 28px rgba(201, 169, 110, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  height: 74vh;
  margin-top: 74px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease, transform 6s ease;
  width: 100%;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.04);
}

.hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(8, 8, 8, 0.92));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  left: 50%;
  max-width: 820px;
  padding: 0 20px;
  position: absolute;
  text-align: center;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.08;
}

.hero p,
.section-lead {
  color: #dedede;
  margin: 16px auto 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.section {
  margin: auto;
  max-width: 1200px;
  padding: 78px 20px;
}

.section.compact {
  padding-top: 36px;
}

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

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.urgent {
  color: #ff7272;
  font-size: 14px;
  margin-top: 12px;
}

.trust-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.trust-item,
.experience-card,
.destination-card,
.package-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-item {
  padding: 18px;
}

.trust-item strong {
  color: var(--accent);
  display: block;
  font-size: 22px;
}

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

.destination-card,
.experience-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover,
.package-card:hover,
.experience-card:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  transform: translateY(-7px);
}

.card-media {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-media .mini-slider {
  min-height: 100%;
}

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

.destination-card:hover img,
.experience-card:hover img {
  transform: scale(1.06);
}

.card-body {
  padding: 22px;
}

.card-body p,
.package-content p,
.footer p,
.footer a {
  color: var(--muted);
}

.package-list {
  display: grid;
  gap: 28px;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.place-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  transform: translateY(-7px);
}

.place-card .mini-slider {
  min-height: 250px;
}

.place-card .card-body {
  min-height: 210px;
}

.destination-card .card-media,
.destination-card .mini-slider {
  min-height: 260px;
}

.mini-slider {
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.mini-slide {
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.9s ease, transform 4s ease;
}

.mini-slide.active {
  opacity: 1;
  transform: scale(1.03);
}

.package-content {
  padding: 28px;
}

.package-meta {
  color: var(--muted);
  margin: 8px 0;
}

.price {
  color: var(--accent);
  font-weight: 600;
  margin: 14px 0;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 18px 0;
}

.highlights li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #e8e8e8;
  font-size: 13px;
  padding: 9px 12px;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.band {
  background: rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-banner {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
}

.trust-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-bottom: 26px;
  padding-top: 26px;
}

.trust-banner-inner span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f4e4c5;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
}

.lead-popup {
  align-items: center;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 5000;
}

.lead-popup.open {
  display: flex;
}

.popup-box {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 238, 226, 0.98));
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 110, 0.32);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
  color: #111;
  max-height: 92vh;
  max-width: 520px;
  overflow: auto;
  padding: 32px;
  position: relative;
  width: 100%;
}

.popup-box::before {
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.75), transparent);
  content: "";
  height: 1px;
  left: 32px;
  position: absolute;
  right: 32px;
  top: 0;
}

.popup-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.popup-box h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.popup-box > p {
  color: #555;
}

.popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}

.popup-tags span {
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 999px;
  color: #423726;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
}

.popup-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  position: absolute;
  right: 18px;
  top: 12px;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d7cab1;
  border-radius: 8px;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
  outline: none;
}

.lead-form textarea {
  min-height: 92px;
  resize: vertical;
}

.form-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.15fr 0.95fr;
  margin-top: 8px;
}

.submit-btn,
.wa-btn {
  align-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  padding: 0 18px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.submit-btn {
  background: linear-gradient(135deg, #111, var(--accent-dark) 55%, var(--accent));
  box-shadow: 0 18px 34px rgba(156, 120, 64, 0.28);
}

.wa-btn {
  background: linear-gradient(135deg, #13854a, var(--success));
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24);
}

.submit-btn::before,
.wa-btn::before {
  content: "";
  inset: 1px;
  position: absolute;
  border-radius: inherit;
  opacity: 0.16;
}

.submit-btn::before {
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.wa-btn::before {
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.submit-btn:hover,
.wa-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.submit-btn:hover {
  box-shadow: 0 22px 40px rgba(156, 120, 64, 0.34);
}

.wa-btn:hover {
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.3);
}

.form-status {
  color: #333;
  font-size: 13px;
  min-height: 18px;
}

.location-block {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.location-label {
  color: #fff;
  font-weight: 600;
}

.footer-map-btn {
  margin-top: 12px;
  width: fit-content;
}

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

.info-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  transform: translateY(-7px);
}

.info-card .card-body {
  min-height: 220px;
}

.info-card .card-body h3 {
  margin-bottom: 10px;
}

.detail-panel {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.day-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.day-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.day-item strong {
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.day-title {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.day-subtitle {
  color: #ddd;
  margin-bottom: 18px;
}

.day-details {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.day-detail {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px;
}

.day-detail h4 {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.day-detail ul {
  color: var(--muted);
  list-style: none;
}

.day-detail li + li {
  margin-top: 8px;
}

.day-experience,
.day-stay {
  color: var(--muted);
}

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

.cab-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cab-card:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  transform: translateY(-7px);
}

.cab-card .card-media {
  height: 220px;
}

.rate-list {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.vehicle-art {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.18));
  color: #fff;
  display: grid;
  gap: 12px;
  height: 100%;
  padding: 18px;
  text-align: center;
}

.vehicle-art img {
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.vehicle-art strong {
  font-size: 20px;
}

.google-review-section {
  text-align: center;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.review-card h3 {
  font-size: 18px;
  margin: 10px 0 8px;
}

.review-card p {
  color: var(--muted);
}

.review-stars {
  color: #f3d27a;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.review-actions {
  margin-top: 22px;
}

.contact-premium {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
}

.contact-brand-card {
  position: relative;
  overflow: hidden;
}

.contact-brand-card::before {
  background: radial-gradient(circle at top right, rgba(201, 169, 110, 0.18), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
}

.contact-brand-image {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  margin-bottom: 18px;
  max-width: 140px;
  padding: 12px;
}

.contact-detail-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-detail-list strong {
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.gallery-intro {
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
  width: 100%;
}

.gallery-card:hover img {
  opacity: 0.94;
  transform: scale(1.06);
}

.gallery-card span {
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  bottom: 0;
  color: #fff;
  font-size: 13px;
  left: 0;
  padding: 18px 14px 12px;
  position: absolute;
  right: 0;
  text-align: left;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 5500;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-content {
  max-width: min(1000px, 100%);
  position: relative;
}

.gallery-lightbox img {
  border-radius: 12px;
  max-height: 82vh;
  width: 100%;
}

.gallery-lightbox figcaption {
  color: #fff;
  margin-top: 12px;
  text-align: center;
}

.lightbox-close {
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  height: 42px;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 42px;
}

.floating-social {
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 18px;
  position: fixed;
  z-index: 1200;
}

.floating-social a,
.float-wa {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.floating-social .instagram {
  background: #e1306c;
}

.floating-social .facebook {
  background: #1877f2;
}

.floating-social .whatsapp,
.float-wa {
  background: var(--success);
}

.float-wa {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 1200;
}

.footer {
  background: #030303;
  border-top: 1px solid var(--line);
  padding: 58px 20px 24px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  margin: auto;
  max-width: 1200px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin: 7px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  margin: 0;
  width: 38px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #8f8f8f;
  margin: 34px auto 0;
  max-width: 1200px;
  padding-top: 18px;
  text-align: center;
}

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

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

@media (max-width: 900px) {
  .site-header {
    justify-content: flex-start;
    overflow-x: auto;
    padding-left: 150px;
  }

  .card-grid,
  .feature-grid,
  .trust-row,
  .cab-grid,
  .review-grid,
  .contact-premium,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

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

  .mini-slider {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 78px;
    left: 12px;
    top: 10px;
    width: 78px;
  }

  .site-header {
    gap: 16px;
    min-height: 68px;
    padding: 12px 14px 12px 104px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .card-grid,
  .feature-grid,
  .places-grid,
  .trust-row,
  .cab-grid,
  .review-grid,
  .contact-premium,
  .footer-grid,
  .gallery-grid,
  .form-row,
  .form-actions,
  .day-details {
    grid-template-columns: 1fr;
  }

  .floating-social {
    bottom: 82px;
  }

  .trust-banner-inner {
    justify-content: flex-start;
  }

  .vehicle-art strong {
    font-size: 18px;
  }
}
