:root {
  --ink: #11100f;
  --muted: #605d56;
  --paper: #f3f4f6;
  --cream: #e8eaee;
  --line: #d9dde3;
  --white: #ffffff;
  --gold: #c7ad7a;
  --green: #4f821c;
  --shadow: 0 24px 70px rgba(17, 16, 15, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 94px;
  padding: 14px clamp(24px, 4vw, 56px);
  background: rgba(243, 244, 246, 0.94);
  border-bottom: 1px solid rgba(226, 221, 210, 0.78);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 100%;
  max-width: 238px;
  height: auto;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.45vw, 24px);
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.05;
}

nav a {
  white-space: nowrap;
}

nav a:hover,
.nav-dropdown-toggle:hover {
  color: #86745c;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-dropdown-toggle span {
  color: #86745c;
  font-size: 0.72rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 160px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 221, 227, 0.95);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(17, 16, 15, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 7px;
  font-size: 0.86rem;
}

.nav-dropdown-menu a:hover {
  color: var(--ink);
  background: #f3f4f6;
}

nav a[href="/signup"],
nav a[href="/login"] {
  color: var(--muted);
}

.nav-logout {
  margin: 0;
}

.nav-logout button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-logout button:hover {
  color: #86745c;
}

.whatsapp-button,
.footer-chat,
.deal-card button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: #050505;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #11100f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.88) 0%, rgba(17, 16, 15, 0.68) 43%, rgba(17, 16, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(17, 16, 15, 0.15), rgba(17, 16, 15, 0.45)),
    url("assets/hero-clean.png") center / cover;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 180px;
  align-items: center;
  gap: 26px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 32px 24px;
}

.hero-copy {
  max-width: 660px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 0 12px;
  color: #ead8b6;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(234, 216, 182, 0.5);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4.15vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #ffffff;
}

h1 span {
  color: #d7c29c;
  white-space: nowrap;
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
}

.hero-actions .hero-action-primary {
  color: #11100f;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero-actions .hero-action-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
}

.promise-row div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  min-width: 0;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.promise-row div:last-child {
  border-right: 0;
}

.mini-icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #d7c29c;
  border: 1px solid rgba(215, 194, 156, 0.62);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.promise-row strong {
  color: #ffffff;
  font-size: 0.82rem;
}

.promise-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.price-float {
  align-self: center;
  width: 180px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.price-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 44px;
  padding: 6px 8px;
  background: #f3f4f6;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.price-logo {
  display: block;
  width: 110px;
  max-width: 100%;
  height: auto;
}

.price-float p {
  margin-bottom: 4px;
  font-weight: 800;
  font-size: 0.76rem;
}

del {
  display: inline-block;
  color: #3d332b;
  font-size: 0.96rem;
  text-decoration-color: #c7392f;
  text-decoration-thickness: 2px;
}

.price-float hr {
  margin: 9px -12px;
  border: 0;
  border-top: 1px solid var(--line);
}

.price-float strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.36rem;
}

.save-box {
  display: grid;
  gap: 4px;
  padding: 9px;
  background: #edf0de;
  border-radius: 8px;
}

.save-box small {
  color: var(--green);
  font-weight: 800;
}

.save-box b {
  color: var(--green);
  font-size: 1.05rem;
}

.save-box span {
  font-size: 0.76rem;
}

.deal-card {
  position: relative;
  z-index: 4;
  max-width: 1020px;
  margin: -2px auto 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 221, 210, 0.92);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.deal-card h2,
.savings h2,
.how-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  text-align: center;
}

.deal-card h2 {
  text-align: left;
}

.deal-subtitle {
  max-width: 760px;
  margin: -6px 0 16px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

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

.quote-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quote-tabs button {
  min-height: 46px;
  color: var(--muted);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  font-weight: 800;
  cursor: pointer;
}

.quote-tabs button:last-child {
  border-right: 0;
}

.quote-tabs .active {
  color: var(--ink);
  background: #eef1f5;
}

.drop-zone {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  text-align: center;
  border: 1px dashed #c8c0b6;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  cursor: pointer;
}

.drop-zone.has-file {
  border-color: rgba(79, 130, 28, 0.55);
  background: linear-gradient(180deg, #ffffff, #eef7e8);
}

.drop-zone.has-file .cloud {
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
}

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

.link-panel,
.details-panel {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.link-panel label,
.details-panel label {
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 800;
}

.details-panel {
  align-content: stretch;
  padding: 14px;
  overflow: visible;
  background: #f7f8fa;
}

.detail-builder {
  display: block;
  width: 100%;
}

.detail-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  background: transparent;
}

.detail-mode[hidden] {
  display: none;
}

.detail-mode label {
  min-height: 72px;
  padding: 11px 13px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(17, 16, 15, 0.04);
}

.detail-mode .wide {
  grid-column: span 2;
}

.detail-mode span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.detail-mode input,
.detail-mode select {
  min-width: 0;
  min-height: 30px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-mode input::placeholder {
  color: #8c8983;
  opacity: 1;
}

.detail-mode input:focus,
.detail-mode select:focus {
  outline: 0;
}

.link-panel small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.cloud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  color: var(--ink);
  background: #f1eee8;
  border: 1px solid #ded4c2;
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.drop-zone strong {
  display: block;
  margin-bottom: 5px;
}

.drop-zone small,
.safe-note,
.field-grid span,
.field-grid em {
  color: var(--muted);
}

.booking-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.booking-picker input {
  display: none;
}

.booking-picker button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  align-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 7px 10px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid #e4e8ee;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.booking-picker button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: transparent;
  border-radius: 999px;
}

.booking-picker button:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #cfd5de;
  transform: translateY(-1px);
}

.booking-picker button.active {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(199, 173, 122, 0.85);
  box-shadow: 0 10px 24px rgba(17, 16, 15, 0.08);
}

.booking-picker button.active::after {
  background: linear-gradient(90deg, #b6914e, #e0c98f);
}

.booking-picker strong {
  font-size: 0.76rem;
  line-height: 1.18;
  text-align: left;
}

.booking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  background: #f1eee8;
  border: 1px solid #ded4c2;
  border-radius: 50%;
}

.booking-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-picker button.active .booking-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #11100f, #3d3a35);
  border-color: #c7ad7a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 22px rgba(17, 16, 15, 0.16);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.field-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
}

.customer-logged-in .field-grid {
  grid-template-columns: 1fr;
}

.field-grid em {
  font-style: normal;
  font-weight: 500;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 14px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  width: 100%;
  min-height: 132px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.phone-field {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
}

.phone-field b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7ebf0;
  border-radius: 8px;
}

.deal-card button[type="submit"] {
  width: 100%;
  grid-column: 1 / -1;
  min-height: 46px;
}

.deal-card button[type="submit"] span {
  font-size: 1.1rem;
}

.safe-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
}

.form-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 0;
}

.form-flow span {
  padding: 9px 12px;
  color: var(--ink);
  background: #e8edf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.form-trust-badges {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.form-trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #5f5038;
  background: #f4f0e7;
  border: 1px solid #d8c8a7;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.form-trust-badges span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-weight: 800;
}

.deal-card button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.savings {
  padding: 46px clamp(24px, 5vw, 70px);
  background:
    radial-gradient(circle at 18% 0%, rgba(199, 173, 122, 0.22), transparent 32%),
    linear-gradient(180deg, #eef1f5, #f7f8fa);
  border-top: 1px solid #d9dde3;
  border-bottom: 1px solid #d9dde3;
}

.section-kicker {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 14px;
  color: #6f624e;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7c9af;
  border-radius: 999px;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.deal-grid article {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(199, 173, 122, 0.38);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(17, 16, 15, 0.1);
}

.deal-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.91) 42%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 16, 15, 0.1)),
    var(--place-image) bottom right / cover no-repeat;
  opacity: 1;
}

.deal-grid article::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(199, 173, 122, 0.24);
  border-radius: 10px;
}

.deal-grid em,
.deal-grid h3,
.deal-grid small,
.deal-grid del,
.deal-grid span,
.deal-grid strong,
.deal-grid b {
  position: relative;
  z-index: 2;
  display: block;
}

.deal-grid em {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: #6f624e;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(240, 236, 228, 0.84);
  border: 1px solid #d7c9af;
  border-radius: 999px;
}

.deal-grid h3 {
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.deal-grid small,
.deal-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.deal-grid del {
  margin: 3px 0 16px;
  color: #4b443b;
  font-size: 1rem;
}

.deal-grid strong {
  margin: 4px 0 18px;
  font-size: 1.45rem;
}

.deal-grid b {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: var(--green);
  background: #edf6e6;
  border: 1px solid #d2e8c4;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
}

.section-intro {
  max-width: 620px;
  margin: -10px auto 26px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}

.savings-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 14px 16px 14px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d9dde3;
  border-radius: 12px;
}

.savings-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.savings-proof a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: #11100f;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr) minmax(250px, 0.9fr);
  gap: 12px;
  padding: 22px clamp(24px, 5vw, 70px);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 173, 122, 0.2), transparent 34%),
    linear-gradient(180deg, #e7ebf0, #eef1f5);
  border-top: 1px solid #cfd5de;
  border-bottom: 1px solid #cfd5de;
}

.trust-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto 0;
  text-align: center;
}

.trust-heading span {
  display: block;
  width: fit-content;
  margin: 0 auto 6px;
  padding: 5px 11px;
  color: #6f624e;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7c9af;
  border-radius: 999px;
}

.trust-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.25vw, 1.95rem);
  line-height: 1.05;
}

.travel-partner,
.rating,
blockquote {
  min-height: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 213, 222, 0.92);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(17, 16, 15, 0.08);
}

.travel-partner h3 {
  margin: 0 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.rhea-logo {
  display: block;
  width: 116px;
  height: auto;
  margin: 0;
  padding: 7px 9px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(17, 16, 15, 0.08);
}

.travel-partner span,
.travel-partner p,
blockquote cite {
  color: var(--muted);
}

.travel-partner {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: center;
}

.travel-partner > span {
  grid-column: 1 / -1;
}

.travel-partner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.partner-copy {
  min-width: 0;
}

.travel-partner .trust-copy {
  max-width: 470px;
  margin: 8px 0 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
}

.stats span {
  min-height: 46px;
  padding: 9px 10px;
  background: #f7f8fa;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  font-weight: 900;
}

.rating,
blockquote {
  border-left: 0;
}

.rating {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-content: center;
  align-items: center;
  justify-items: start;
}

.rating-source {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
}

.rating h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.05;
}

.rating-source span {
  color: #f3b51f;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating strong {
  display: block;
  margin-bottom: 0;
  color: var(--gold);
  font-size: 1.95rem;
  line-height: 1;
}

.rating strong span {
  color: var(--muted);
  font-size: 1.25rem;
}

.rating p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(199, 173, 122, 0.72);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(17, 16, 15, 0.08);
}

.google-review-link::before {
  content: "G";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: #ffffff;
  background: #11100f;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.google-review-link:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.faces {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.faces i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: -8px;
  color: #ffffff;
  background: linear-gradient(135deg, #11100f, #6f7680);
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.faces i:nth-child(2) {
  background: linear-gradient(135deg, #4f821c, #8ba85f);
}

.faces i:nth-child(3) {
  background: linear-gradient(135deg, #8a7356, #c7ad7a);
}

.faces i:nth-child(4) {
  background: linear-gradient(135deg, #334155, #94a3b8);
}

.faces b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  margin-left: 12px;
  padding: 0 10px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c7ced8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.agent-stack i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: -8px;
  color: #ffffff;
  background: linear-gradient(135deg, #11100f, #5d6673);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(17, 16, 15, 0.14);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.agent-stack i:nth-child(2) {
  background: linear-gradient(135deg, #4f821c, #8ca95f);
}

.agent-stack i:nth-child(3) {
  background: linear-gradient(135deg, #c7ad7a, #8b7354);
}

blockquote {
  display: grid;
  align-content: center;
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

blockquote::before {
  content: "“";
  width: 28px;
  height: 24px;
  margin-bottom: 6px;
  color: #8a7356;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 0.86;
}

blockquote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.9rem;
}

.how-section {
  padding: 34px clamp(24px, 5vw, 70px) 96px;
  background: var(--white);
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.workflow article {
  position: relative;
}

.workflow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 42px);
  width: calc(100% - 60px);
  border-top: 1px dashed #cfc7ba;
}

.workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.8rem;
}

.workflow h3 {
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.workflow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.why-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 44px clamp(24px, 5vw, 70px) 120px;
  background: #e9edf2;
}

.why-strip article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.why-strip h2 {
  margin-bottom: 10px;
}

.why-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-card {
  display: grid;
  gap: 14px;
}

.faq-card h2 {
  margin-bottom: 4px;
}

.faq-card details {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.faq-card summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-card details p {
  margin-top: 10px;
}

.sticky-footer {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  max-width: 1120px;
  margin: 18px auto 28px;
  padding: 9px 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #11100f 0%, #1f2328 62%, #302a20 100%);
  border: 1px solid rgba(199, 173, 122, 0.34);
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(17, 16, 15, 0.1);
}

.sticky-footer strong,
.sticky-footer span {
  display: block;
}

.sticky-footer span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.agent-stack {
  display: flex;
  min-width: 72px;
}

.sticky-footer > div:first-child {
  display: none;
}

.sticky-footer > div:nth-child(3) {
  padding-left: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .facebook svg,
.social-links .linkedin svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #ffffff;
}

.social-links .instagram:hover {
  color: #c13584;
}

.social-links .facebook:hover {
  color: #1877f2;
}

.social-links .linkedin:hover {
  color: #0a66c2;
}

.footer-chat {
  color: #11100f;
  background: #ffffff;
  border-radius: 10px;
  min-height: 40px;
  padding: 0 18px;
}

.footer-chat svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

.business-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  max-width: 1120px;
  margin: -10px auto 34px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.business-links a {
  text-decoration: underline;
  text-decoration-color: rgba(96, 93, 86, 0.35);
  text-underline-offset: 4px;
}

.business-links a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 46px;
  align-items: center;
  padding: 72px clamp(24px, 5vw, 70px) 42px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.content-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
}

.content-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.content-hero-card {
  min-height: 260px;
  padding: 28px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(17, 16, 15, 0.08);
}

.content-hero-card img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 22px;
}

.content-hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.content-hero-card p {
  margin: 0;
  font-size: 0.98rem;
}

.page-section {
  padding: 54px clamp(24px, 5vw, 70px);
}

.page-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.page-section > p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-hero h1 {
  max-width: 760px;
}

.legal-updated {
  display: inline-flex;
  margin-top: 4px;
  padding: 8px 12px;
  color: #6f624e !important;
  background: #f4f0e7;
  border: 1px solid #d8c8a7;
  border-radius: 999px;
  font-size: 0.82rem !important;
  font-weight: 900;
}

.legal-section {
  max-width: 980px;
}

.legal-section h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.legal-section h2:first-child {
  margin-top: 0;
}

.legal-section p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card strong:not(:first-child) {
  margin-top: 22px;
}

.contact-card a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.business-note {
  margin-top: 24px;
  padding: 16px 18px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(17, 16, 15, 0.05);
}

.legal-section a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.guide-grid article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(17, 16, 15, 0.06);
}

.guide-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #6f624e;
  background: #f4f0e7;
  border: 1px solid #d8c8a7;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.guide-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.guide-grid a,
.guide-back {
  display: inline-flex;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guide-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 66px clamp(24px, 5vw, 70px) 34px;
}

.guide-article .section-kicker {
  margin: 24px 0 14px;
}

.guide-article h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.guide-intro {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.guide-article h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.guide-article p {
  color: var(--muted);
  line-height: 1.75;
}

.info-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.info-grid article,
.article-grid article,
.cta-panel {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(17, 16, 15, 0.06);
}

.info-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.info-grid h3,
.article-grid h3 {
  margin-bottom: 10px;
}

.info-grid p,
.article-grid p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.page-cta {
  padding: 20px clamp(24px, 5vw, 70px) 112px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  background: #11100f;
  border-color: #11100f;
  color: #ffffff;
}

.cta-panel p {
  margin: 0;
  color: #d8dde5;
}

.cta-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.faq-page-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-top: 26px;
}

.faq-page-list details {
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-page-list summary {
  font-weight: 900;
  cursor: pointer;
}

.faq-page-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.modal-open {
  overflow: hidden;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 16, 15, 0.48);
  backdrop-filter: blur(8px);
}

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

.success-dialog {
  position: relative;
  width: min(100%, 440px);
  padding: 34px 30px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(17, 16, 15, 0.24);
}

.success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--muted);
  background: #f3f4f6;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.success-dialog h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.success-dialog p {
  color: var(--muted);
  line-height: 1.65;
}

.success-ref {
  padding: 12px;
  background: #f3f4f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.success-ref strong {
  color: var(--ink);
}

.success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 140px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.success-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 180px;
  padding: 0 22px;
  color: #ffffff;
  background: #128c4a;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: translate(0, -4px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translate(0, 0);
  }

  .brand img {
    max-width: 220px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 168px;
    max-width: 900px;
    gap: 24px;
  }

  .price-float {
    width: 168px;
  }

  .deal-card form,
  .why-strip,
  .content-hero,
  .info-grid,
  .article-grid,
  .guide-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .trust-band {
    padding: 28px clamp(20px, 5vw, 42px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-heading {
    grid-column: 1 / -1;
  }

  .travel-partner {
    grid-column: 1 / -1;
  }

  .travel-partner,
  .rating,
  blockquote {
    padding: 14px 16px;
  }

  .rhea-logo {
    margin: 0;
  }

  blockquote {
    min-height: auto;
  }

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

  .savings-proof {
    grid-template-columns: 1fr;
  }

  .rating,
  blockquote {
    padding-left: 0;
    border-left: 0;
  }

  .sticky-footer {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 16px;
    margin: 18px auto 24px;
    max-width: calc(100% - 36px);
    border-radius: 14px;
  }

  .sticky-footer > div:first-child {
    padding-right: 0;
    border-right: 0;
  }

  .sticky-footer > div:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 20px;
    gap: 16px;
  }

  .brand img {
    max-width: 178px;
  }

  .whatsapp-button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 28px 20px 24px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  h1 span {
    white-space: normal;
  }

  .promise-row,
  .quote-tabs,
  .booking-picker,
  .field-grid,
  .deal-grid,
  .trust-band,
  .workflow,
  .stats,
  .form-flow {
    grid-template-columns: 1fr;
  }

  .trust-band {
    padding: 26px 18px;
  }

  .savings {
    padding: 34px 18px;
  }

  .deal-grid article {
    min-height: 220px;
  }

  .savings-proof {
    padding: 16px;
  }

  .savings-proof a {
    width: 100%;
  }

  .sticky-footer {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 18px 0 0;
    border-radius: 0;
  }

  .booking-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-mode {
    grid-template-columns: 1fr;
  }

  .detail-mode .wide {
    grid-column: auto;
  }

  .promise-row div {
    border-right: 0;
    padding-right: 0;
  }

  .price-float {
    display: none;
  }

  .deal-card {
    margin: 0 16px;
    padding: 20px;
  }

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

  .quote-tabs button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-tabs button:last-child {
    border-bottom: 0;
  }

  .workflow article:not(:last-child)::after {
    display: none;
  }

  .content-hero {
    padding: 44px 20px 30px;
  }

  .content-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .page-section {
    padding: 38px 20px;
  }

  .page-cta {
    padding: 6px 20px 42px;
  }

  .cta-panel {
    text-align: left;
  }

  .cta-panel a {
    width: 100%;
  }

  .how-section {
    padding-bottom: 42px;
  }

  .why-strip {
    padding-bottom: 44px;
  }
}
