:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf8;
  --text: #163027;
  --muted: #5d7068;
  --line: rgba(22, 48, 39, 0.1);
  --primary: #0e7f66;
  --primary-dark: #0a624f;
  --accent: #d9a24b;
  --accent-soft: rgba(217, 162, 75, 0.16);
  --gold-line: rgba(217, 162, 75, 0.28);
  --shadow: 0 24px 70px rgba(18, 40, 34, 0.12);
  --shadow-soft: 0 16px 38px rgba(18, 40, 34, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(205, 158, 78, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(12, 88, 74, 0.08), transparent 18%),
    linear-gradient(180deg, #faf6ef 0%, #f3ede4 34%, #ede5da 100%);
  line-height: 1.6;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 15% 8%, rgba(214, 165, 82, 0.12), transparent 20%),
    radial-gradient(circle at 88% 32%, rgba(10, 92, 76, 0.08), transparent 18%),
    radial-gradient(circle at 65% 92%, rgba(214, 165, 82, 0.07), transparent 16%);
}

body::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.45;
}

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

img {
  max-width: 100%;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid rgba(22, 48, 39, 0.06);
  box-shadow: 0 10px 30px rgba(22, 48, 39, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 56px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #0d745c, #1f9a7d 58%, #d9a24b 140%);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(15, 103, 83, 0.24);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 500;
}

.nav-menu a {
  color: rgba(24, 50, 42, 0.86);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-menu a:hover {
  color: var(--primary-dark);
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-select {
  min-height: 42px;
  padding: 0 2.2rem 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 48, 39, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.language-select:focus {
  border-color: rgba(15, 139, 109, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 139, 109, 0.12);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}

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

.btn-sm {
  min-height: 42px;
}

.btn-primary {
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--primary), #189276 68%, #d9a24b 140%);
  box-shadow: 0 18px 34px rgba(14, 127, 102, 0.24);
}

.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--primary-dark), var(--primary) 70%, #c99644 140%);
  box-shadow: 0 22px 40px rgba(10, 98, 79, 0.26);
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(22, 48, 39, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-whatsapp {
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #18a957, #0f9148);
  box-shadow: 0 16px 30px rgba(24, 169, 87, 0.22);
}

.btn-whatsapp:hover {
  background: linear-gradient(145deg, #13884a, #0c753b);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--gold-line);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-copy h1,
.section-heading h2,
.compact h2,
.cta-copy h2 {
  margin: 1rem 0 0.9rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.hero-copy p,
.section-heading p,
.cta-copy p,
.tour-card p,
.feature-card p,
.timeline-item p,
.testimonial-card p,
.faq-answer p,
.site-footer p,
.trusted p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.feature-card,
.tour-card,
.testimonial-card,
.contact-card,
.hero-image-card,
.floating-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card.main {
  width: 100%;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #091214;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(14, 27, 23, 0.2);
}

.location-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.88);
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(217, 162, 75, 0.22);
  box-shadow: 0 10px 24px rgba(16, 27, 24, 0.12);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 16, 0.06) 0%, rgba(5, 12, 16, 0.18) 52%, rgba(5, 12, 16, 0.46) 100%),
    linear-gradient(90deg, rgba(5, 12, 16, 0.28) 0%, rgba(5, 12, 16, 0.02) 44%);
}

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 36px;
  max-width: 260px;
  border-radius: 22px;
  padding: 1rem 1.1rem;
  background: rgba(255, 251, 246, 0.88);
  border: 1px solid rgba(217, 162, 75, 0.18);
  box-shadow: 0 20px 40px rgba(18, 40, 34, 0.14);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.trusted {
  padding: 0.8rem 0 1.8rem;
}

.trusted-grid {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.3rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(252, 248, 241, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.trusted-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trusted-tags span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 162, 75, 0.16);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background:
    radial-gradient(circle at 85% 10%, rgba(214, 165, 82, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.3), rgba(242, 236, 228, 0.58));
}

.section-showcase {
  padding-top: 1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}

.showcase-copy h2 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.showcase-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.showcase-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 247, 241, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.showcase-image {
  display: block;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.compact h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.tour-grid,
.feature-grid,
.vehicle-grid {
  display: grid;
  gap: 1.2rem;
}

.tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-card,
.feature-card,
.testimonial-card,
.vehicle-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.tour-card.featured {
  background: linear-gradient(180deg, rgba(15, 139, 109, 0.12), rgba(255, 255, 255, 0.88));
}

.tour-poster-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 241, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(20, 39, 34, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tour-poster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(20, 39, 34, 0.13);
  border-color: rgba(217, 162, 75, 0.24);
}

.tour-poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.8;
  object-fit: contain;
  object-position: center top;
  background:
    radial-gradient(circle at top, rgba(214, 165, 82, 0.12), transparent 32%),
    linear-gradient(180deg, #081013 0%, #10181c 100%);
}

.tour-poster-body {
  padding: 1rem 1.05rem 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 252, 246, 0.82));
}

.tour-poster-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.tour-poster-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vehicle-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 241, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(20, 39, 34, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(20, 39, 34, 0.13);
  border-color: rgba(217, 162, 75, 0.24);
}

.vehicle-shell {
  padding: 1.25rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(217, 162, 75, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 68px rgba(18, 40, 34, 0.1);
}

.vehicle-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.vehicle-topbar strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.vehicle-topbar p {
  margin: 0;
  color: var(--muted);
}

.vehicle-card-featured {
  grid-column: span 2;
}

.vehicle-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #0b1113;
}

.vehicle-card-featured .vehicle-image {
  height: 330px;
}

.vehicle-body {
  padding: 1.2rem 1.25rem 1.3rem;
}

.vehicle-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.vehicle-body h3 {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.22rem;
}

.vehicle-body p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.vehicle-badge {
  display: inline-flex;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.vehicle-badge.premium {
  color: #8a5b12;
  background: #ffe5bd;
}

.vehicle-badge.family {
  color: #0c6e58;
  background: rgba(15, 139, 109, 0.14);
}

.vehicle-badge.economy {
  color: #345945;
  background: rgba(52, 89, 69, 0.12);
}

.vehicle-badge.group {
  color: #2f4770;
  background: rgba(47, 71, 112, 0.12);
}

.vehicle-badge.outlined {
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(24, 50, 42, 0.12);
}

.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vehicle-meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(22, 48, 39, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.vehicle-cta {
  margin-top: 1.4rem;
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.84);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.vehicle-cta p {
  margin: 0;
  color: var(--muted);
}

.tour-badge {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8a5b12;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.tour-card h3,
.feature-card h3,
.timeline-item h3,
.cta-copy h2 {
  margin: 0 0 0.6rem;
}

.tour-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.tour-card li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.55rem;
  font-weight: 900;
}

.tour-footer {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tour-footer strong {
  font-size: 1.25rem;
}

.tour-footer span {
  color: var(--muted);
}

.itinerary-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.compact {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.time {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.25rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.testimonial-slider {
  position: relative;
  min-height: 210px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.35s ease;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-top: 0;
}

.testimonial-author {
  display: grid;
  gap: 0.15rem;
}

.testimonial-author span {
  color: var(--muted);
}

.slider-dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.guest-review-box {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(249, 245, 238, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.guest-review-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.guest-review-title {
  margin: 0;
}

.guest-review-description,
.review-note {
  margin: 0;
  color: var(--muted);
}

.guest-review-form {
  display: grid;
  gap: 0.95rem;
}

.guest-review-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.guest-review-form input,
.guest-review-form textarea,
.guest-review-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 50, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
}

.guest-review-form input:focus,
.guest-review-form textarea:focus,
.guest-review-form select:focus {
  border-color: rgba(15, 139, 109, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 139, 109, 0.12);
}

.dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(24, 50, 42, 0.18);
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

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

.faq-answer p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
}

.cta-section {
  padding-bottom: 5.8rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(214, 165, 82, 0.16), transparent 32%),
    radial-gradient(circle at 88% 85%, rgba(14, 127, 102, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(247, 242, 234, 0.94), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(18, 40, 34, 0.11);
}

.contact-card {
  border-radius: 28px;
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 52px rgba(18, 40, 34, 0.1);
}

.contact-card label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 50, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  border-color: rgba(15, 139, 109, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 139, 109, 0.12);
}

.contact-alt-actions {
  display: grid;
  gap: 0.8rem;
}

.contact-alt-label {
  font-weight: 700;
  color: var(--text);
}

.contact-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.btn-contact-alt {
  min-height: 48px;
  text-align: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note a {
  color: var(--primary-dark);
  font-weight: 700;
}

.site-footer {
  padding: 1.6rem 0 2.4rem;
  border-top: 1px solid rgba(22, 48, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 243, 236, 0.78));
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.2rem;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #18a957, #0f9148);
  box-shadow: 0 18px 34px rgba(14, 140, 68, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

@media (max-width: 1040px) {
  .hero-grid,
  .itinerary-layout,
  .cta-grid,
  .showcase-grid,
  .tour-grid,
  .feature-grid,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card-featured {
    grid-column: auto;
  }

  .vehicle-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .vehicle-card-featured .vehicle-image {
    height: 260px;
  }



  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(250, 246, 239, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .language-switcher,
  .language-select {
    width: 100%;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-image-card.main {
    min-height: 420px;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 1rem;
  }

  .trusted-grid,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .guest-review-box {
    grid-template-columns: 1fr;
  }

  .contact-alt-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

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

  .section,
  .cta-section {
    padding: 4rem 0;
  }

  .cta-grid {
    padding: 1rem;
    border-radius: 26px;
  }

  .contact-card,
  .tour-card,
  .feature-card,
  .testimonial-card,
  .vehicle-body {
    padding: 1.15rem;
  }

  .tour-poster-body {
    padding: 0.95rem 1rem 1rem;
  }

  .vehicle-image {
    height: 230px;
  }

  .vehicle-shell {
    padding: 0.9rem;
    border-radius: 26px;
  }

  .vehicle-topbar {
    padding: 0.95rem 1rem 1rem;
  }
}
