:root {
  --red: #d2161c;
  --red-dark: #7c0710;
  --red-deep: #4e080c;
  --gold: #efa94a;
  --gold-soft: #fff2dc;
  --cream: #fffaf4;
  --ink: #2c1718;
  --muted: #785f60;
  --line: #eadcda;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button, select { font: inherit; }

button:focus-visible, select:focus-visible, a:focus-visible {
  outline: 3px solid rgba(239, 169, 74, 0.75);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 18%, rgba(239, 169, 74, 0.18), transparent 22rem),
    linear-gradient(135deg, #fffdf9 0%, #fff8ef 58%, #fff4e8 100%);
}

.topbar {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(124, 7, 16, 0.13);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; object-fit: contain; }
.hotels-logo { width: 104px; height: 86px; }
.exitours-logo { width: 190px; height: 74px; }

.brand-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.brand-divider {
  width: 1px;
  height: 52px;
  background: rgba(124, 7, 16, 0.16);
}

.back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover { color: var(--red); }

.topbar-copy {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(239, 169, 74, 0.16);
}

.hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.82fr);
  gap: 80px;
  align-items: center;
}

.hero-copy { position: relative; }

.hero-copy::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -140px;
  bottom: -100px;
  border: 44px solid rgba(210, 22, 28, 0.055);
  border-radius: 50%;
}

.eyebrow, .card-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 700px;
  color: var(--red-deep);
  font-size: clamp(44px, 5.3vw, 74px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 570px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 590px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.benefit strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 14px; }

.benefit-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 800;
}

.quote-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(124, 7, 16, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(78, 8, 12, 0.13);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(var(--red), var(--gold));
}

.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.card-kicker { margin-bottom: 7px; font-size: 11px; }
h2 { margin: 0; color: var(--red-deep); font-size: 28px; letter-spacing: -0.03em; }

.step-badge {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 750;
}

.field { margin-bottom: 18px; }

.field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.field label span {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 10px;
}

.select-wrap { position: relative; }

.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--red-dark);
  border-bottom: 2px solid var(--red-dark);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 0 46px 0 15px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdfb;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 160ms ease;
}

select:hover:not(:disabled), select:focus { border-color: rgba(210, 22, 28, 0.55); }
select:disabled { cursor: not-allowed; color: #a28f8f; background: #f9f5f2; }

.notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 17px;
  color: var(--red-dark);
  font-size: 12px;
}

.notice[hidden], .net-rate[hidden] { display: none; }

.notice span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  font-weight: 800;
}

.result {
  margin: 26px 0 16px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5e1015, var(--red-deep));
  color: white;
}

.result p { margin: 0 0 8px; color: #f3c7c9; font-size: 12px; font-weight: 650; }
.result strong { display: block; font-size: clamp(29px, 3vw, 38px); letter-spacing: -0.045em; }
.result > span { display: block; margin-top: 6px; color: #e6babc; font-size: 11px; }
.result-ready { background: linear-gradient(135deg, var(--red), var(--red-dark)); }

.primary-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(100deg, var(--gold), #f8bb61);
  color: var(--red-deep);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(239, 169, 74, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(239, 169, 74, 0.35); }
.primary-button:disabled { cursor: not-allowed; opacity: 0.48; box-shadow: none; }
.button-arrow { font-size: 20px; }

.reserve-button {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 1px solid var(--red);
  border-radius: 13px;
  background: white;
  color: var(--red-dark);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.reserve-button:hover:not(:disabled) { background: var(--red); color: white; transform: translateY(-2px); }
.reserve-button:disabled { cursor: not-allowed; opacity: 0.42; }

.net-rate {
  margin-top: 12px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #f4d7a8;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--red-dark);
}

.net-rate span { font-size: 13px; font-weight: 650; }
.net-rate strong { font-size: 20px; }

footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 23px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(124, 7, 16, 0.13);
  color: var(--muted);
  font-size: 12px;
}

footer span:first-child { color: var(--red-dark); font-weight: 750; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 38px;
  margin-bottom: 32px;
}

.section-heading .eyebrow { margin-bottom: 9px; }
.section-heading h2 { font-size: clamp(34px, 4vw, 50px); }
.section-heading > p { max-width: 380px; margin: 0; color: var(--muted); line-height: 1.6; }

.hotel-showcase {
  border-top: 1px solid rgba(124, 7, 16, 0.13);
}

.hotel-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 4px 0 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.hotel-tab {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.hotel-tab:hover, .hotel-tab.active {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(124, 7, 16, 0.12);
  border-radius: 28px;
  background: white;
  box-shadow: 0 28px 70px rgba(78, 8, 12, 0.1);
}

.gallery-stage {
  position: relative;
  aspect-ratio: 16 / 8.7;
  min-height: 400px;
  background: #eadfda;
}

.gallery-stage > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red-dark);
  font-size: 21px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%);
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }

.gallery-count {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(78, 8, 12, 0.84);
  color: white;
  font-size: 12px;
  font-weight: 750;
}

.gallery-info {
  padding: 24px 26px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.gallery-info .card-kicker { margin-bottom: 5px; }
.gallery-info h3 { margin: 0; color: var(--red-deep); font-size: 28px; }

.gallery-quote-button {
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--red-deep);
  font-weight: 800;
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px 26px 26px;
  overflow-x: auto;
}

.gallery-thumb {
  flex: 0 0 105px;
  height: 72px;
  padding: 0;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 10px;
  background: #eee;
  cursor: pointer;
  opacity: 0.68;
}

.gallery-thumb.active { border-color: var(--gold); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }

.reservation-panel[hidden] { display: none; }

.reservation-panel {
  scroll-margin-top: 20px;
  padding-top: 20px;
}

.reservation-card {
  position: relative;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #fff8ee);
  border: 1px solid rgba(124, 7, 16, 0.13);
  box-shadow: 0 28px 80px rgba(78, 8, 12, 0.12);
}

.reservation-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 32px;
}

.reservation-heading h2 { font-size: clamp(36px, 4vw, 52px); text-transform: uppercase; }
.reservation-heading p:last-child { max-width: 700px; margin: 12px 0 0; color: var(--muted); line-height: 1.55; }

.close-reservation {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--red-dark);
  font-size: 26px;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }

.form-field label, .form-field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.form-field input:not([type="radio"]), .form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input[readonly] { background: #f7f0eb; color: var(--red-dark); font-weight: 700; }

.transfer-field {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.transfer-field[hidden] { display: none; }
.radio-option { display: inline-flex !important; align-items: center; gap: 7px; margin: 0 20px 0 0 !important; }

.transfer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 22px;
  border: 1px solid #f2cf95;
  border-radius: 16px;
  background: var(--gold-soft);
}

.transfer-details[hidden] { display: none; }

.reservation-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
}

.reservation-actions p { max-width: 570px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.submit-reservation {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(100deg, var(--red), var(--red-dark));
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.submit-reservation:disabled { cursor: wait; opacity: 0.68; }

.form-status {
  min-height: 24px;
  margin-top: 18px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success { padding: 14px 16px; border-radius: 12px; background: #e9f8ee; color: #176b36; }
.form-status.error { padding: 14px 16px; border-radius: 12px; background: #fff0f0; color: #a1141a; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.map-section { border-top: 1px solid rgba(124, 7, 16, 0.13); }

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(124, 7, 16, 0.13);
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 60px rgba(78, 8, 12, 0.1);
}

.map-frame iframe { width: 100%; height: 560px; display: block; border: 0; }

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(17, 94, 45, 0.3);
  transition: transform 160ms ease;
}

.whatsapp-button:hover { transform: translateY(-4px) scale(1.04); }

body.modal-open { overflow: hidden; }

.success-modal[hidden] { display: none; }

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(48, 10, 13, 0.68);
  backdrop-filter: blur(5px);
}

.success-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 42px 34px 34px;
  border: 1px solid rgba(124, 7, 16, 0.16);
  border-radius: 24px;
  background: white;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 30px 90px rgba(35, 5, 8, 0.3);
}

.success-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--red-dark);
  font-size: 24px;
  cursor: pointer;
}

.success-modal-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f8ed;
  color: #16833c;
  font-size: 34px;
  font-weight: 900;
}

.success-modal-card h2 { margin: 0; color: var(--red-deep); font-size: 30px; }
.success-modal-card p { margin: 16px auto 26px; color: var(--muted); line-height: 1.6; }

.success-modal-button {
  min-width: 160px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(100deg, var(--red), var(--red-dark));
  color: white;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .topbar { grid-template-columns: auto 1fr; }
  .brand-group { grid-column: 1 / -1; grid-row: 1; }
  .back-link { grid-column: 1; grid-row: 2; padding-bottom: 18px; }
  .topbar-copy { grid-column: 2; grid-row: 2; padding-bottom: 18px; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 54px; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .intro, .benefits { margin-left: auto; margin-right: auto; }
  .quote-card { width: min(560px, 100%); margin: 0 auto; }
}

@media (max-width: 620px) {
  .topbar, .hero, footer { width: min(100% - 32px, 1180px); }
  .topbar { min-height: 92px; gap: 12px; }
  .brand-group { gap: 13px; }
  .brand-divider { height: 40px; }
  .hotels-logo { width: 76px; height: 64px; }
  .exitours-logo { width: 135px; height: 58px; }
  .topbar-copy { max-width: 150px; text-align: right; font-size: 11px; }
  .hero { padding: 46px 0 54px; }
  h1 { font-size: 44px; }
  .intro { margin-top: 22px; font-size: 16px; }
  .benefits { grid-template-columns: 1fr; text-align: left; }
  .quote-card { padding: 26px 22px; border-radius: 22px; }
  .card-heading { align-items: center; }
  .section-shell { width: min(100% - 32px, 1180px); padding: 54px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 12px; }
  .gallery-stage { min-height: 280px; aspect-ratio: 4 / 3; }
  .gallery-info { display: block; }
  .gallery-quote-button { width: 100%; margin-top: 16px; }
  .gallery-thumb { flex-basis: 82px; height: 58px; }
  .reservation-card { padding: 30px 20px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .transfer-details { grid-template-columns: 1fr; padding: 18px; }
  .reservation-actions { display: block; }
  .submit-reservation { width: 100%; margin-top: 18px; }
  .map-frame iframe { height: 430px; }
  .whatsapp-button { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
