:root {
  --bg: #08171b;
  --surface: rgba(15, 31, 36, 0.78);
  --surface-strong: #10242a;
  --text: #eef7f5;
  --muted: #a8c0be;
  --accent: #f19a64;
  --accent-dark: #d77743;
  --accent-soft: #ffcfad;
  --teal: #58c1bc;
  --border: rgba(238, 247, 245, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 154, 100, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(88, 193, 188, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(57, 120, 156, 0.16), transparent 28%),
    linear-gradient(180deg, #08171b 0%, #0c2126 36%, #112e35 68%, #153743 100%);
}

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

.hero {
  padding: 24px 0 56px;
}

.topbar,
.hero-content,
.section,
.footer {
  max-width: 1180px;
  margin: 0 auto;
}

.topbar,
.hero-content {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 0;
  background: rgba(8, 23, 27, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.top-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform 220ms ease, background 180ms ease;
}

.topbar.topbar-hidden {
  transform: translateY(calc(-100% - 10px));
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand p,
.footer p {
  margin: 0;
  font-weight: 800;
}

.brand span,
.footer span {
  color: var(--muted);
  font-size: 0.92rem;
}

.brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand p {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.brand span {
  font-size: 1rem;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.nav-section-switcher {
  display: inline-flex;
  align-items: center;
}

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

.nav-dropdown-trigger {
  min-width: 78px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 40px 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  font: inherit;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text) 50%),
    linear-gradient(135deg, var(--text) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-dropdown-trigger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-trigger:focus-visible,
.nav-dropdown-item:focus-visible {
  outline: 2px solid rgba(241, 154, 100, 0.35);
  outline-offset: 2px;
}

.nav-dropdown.open .nav-dropdown-trigger {
  border-color: rgba(241, 154, 100, 0.72);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-section-switcher .nav-dropdown-trigger {
  width: 92px;
  min-width: 92px;
  max-width: 92px;
  padding-right: 30px;
  text-overflow: ellipsis;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 29, 34, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nav-dropdown-menu-right {
  left: auto;
  right: 0;
  min-width: 120px;
}

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

.nav-dropdown-item {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 12px 14px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline,
.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.lead {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 32px 0 0;
  flex-wrap: wrap;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
}

.hero-card,
.info-card,
.quote-form {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: 28px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(7, 33, 40, 0.08), rgba(7, 33, 40, 0.72)),
    url("echappee-moment.webp") center/cover no-repeat;
  color: #fff;
}

.card-tag {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-card h2 {
  margin-top: auto;
  font-size: 3rem;
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  padding-top: 16px;
}

.section {
  padding: 28px clamp(20px, 5vw, 72px) 72px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.cards-grid,
.destination-grid {
  display: grid;
  gap: 22px;
}

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

.info-card {
  padding: 26px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.process-grid,
.guarantees-grid {
  display: grid;
  gap: 22px;
}

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

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

.process-card,
.guarantee-card,
.about-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.process-card,
.guarantee-card {
  border-radius: 26px;
  padding: 24px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), rgba(88, 193, 188, 0.9));
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-card h3,
.guarantee-card h3 {
  margin: 0 0 10px;
}

.process-card p,
.guarantee-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.guarantee-card {
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.about-card {
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.about-heading {
  margin-bottom: 0;
}

.about-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.02rem;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(18, 116, 122, 0.8));
}

.info-card h3,
.destination-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.info-card p,
.destination-card p,
.quote-copy p,
.footer {
  color: var(--muted);
  line-height: 1.7;
}

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

.destination-card {
  min-height: 320px;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.destination-card span {
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.card-one {
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 35, 0.18), rgba(10, 27, 35, 0.78)),
    url("zanzibar-card.webp");
}

.card-two {
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 35, 0.18), rgba(10, 27, 35, 0.78)),
    url("montenegro-card.jpg");
}

.card-three {
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 35, 0.18), rgba(10, 27, 35, 0.78)),
    url("japon-card.jpg");
}

.quote-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.reviews-heading {
  margin-bottom: 0;
}

.reviews-summary,
.review-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.reviews-summary {
  border-radius: 28px;
  padding: 26px;
  text-align: left;
}

.reviews-summary strong {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}

.reviews-stars,
.review-rating span {
  color: #ffbf47;
  letter-spacing: 0.08em;
}

.reviews-summary p {
  margin: 10px 0 18px;
  color: var(--muted);
}

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

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.review-card {
  border-radius: 28px;
  padding: 24px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.review-avatar-image {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 28%),
    linear-gradient(135deg, #148d8a, #0a4f60);
}

.review-avatar-letter {
  background: linear-gradient(135deg, #cc2d74, #8b1e6c);
}

.review-top h3 {
  margin: 0 0 4px;
}

.review-top p,
.review-rating small {
  margin: 0;
  color: var(--muted);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-text {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

.quote-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-highlights div {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 20px 20px 0;
}

.quote-highlights strong,
.quote-highlights span {
  display: block;
}

.quote-form {
  border-radius: 30px;
  padding: 26px;
}

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

.full-span {
  grid-column: 1 / -1;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

input[type="hidden"] {
  display: none;
}

select {
  color: var(--text);
}

select option {
  color: #14282d;
  background: #f6f1e8;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(217, 108, 62, 0.22);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.travel-date-mode {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travel-date-mode-label {
  font-weight: 700;
  font-size: 0.95rem;
}

.travel-date-mode-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.travel-date-mode-option {
  border: 0;
  border-radius: 16px;
  padding: 12px 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.travel-date-mode-option.is-active {
  background: linear-gradient(135deg, rgba(241, 154, 100, 0.18), rgba(88, 193, 188, 0.18));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(241, 154, 100, 0.35);
}

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

.custom-date-picker {
  position: relative;
}

.conditional-field[hidden] {
  display: none;
}

.custom-date-trigger {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 46px 14px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color 160ms ease, background 160ms ease;
}

.custom-date-trigger::before,
.custom-date-trigger::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-date-trigger::before {
  right: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(238, 247, 245, 0.82);
  border-radius: 5px;
  transform: translateY(-50%);
}

.custom-date-trigger::after {
  right: 20px;
  top: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: rgba(238, 247, 245, 0.82);
  box-shadow: 0 5px 0 rgba(238, 247, 245, 0.82);
}

.custom-date-picker.open .custom-date-trigger {
  border-color: rgba(241, 154, 100, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.custom-date-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(320px, calc(100vw - 64px));
  display: none;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 29, 34, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
  z-index: 12;
}

.custom-date-picker.open .custom-date-menu {
  display: block;
}

.custom-date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.custom-date-title {
  font-size: 1rem;
}

.custom-date-nav {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.custom-date-weekdays,
.custom-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
}

.custom-date-weekdays {
  margin-bottom: 8px;
}

.custom-date-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 0;
}

.custom-date-day,
.custom-date-day-empty {
  aspect-ratio: 1;
}

.custom-date-day {
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 0;
}

.custom-date-day:hover,
.custom-date-day:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.custom-date-day.is-selected {
  background: linear-gradient(135deg, var(--accent), rgba(88, 193, 188, 0.92));
  color: #fff;
}

.custom-date-day.is-range-edge {
  background: linear-gradient(135deg, var(--accent), rgba(88, 193, 188, 0.92));
  color: #fff;
}

.custom-date-day.is-in-range {
  background: rgba(241, 154, 100, 0.14);
  box-shadow: inset 0 0 0 1px rgba(241, 154, 100, 0.2);
}

.custom-date-day.is-today {
  box-shadow: inset 0 0 0 1px rgba(241, 154, 100, 0.7);
}

.custom-date-day:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 46px 14px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.custom-select-trigger::before,
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 160ms ease;
}

.custom-select-trigger::before {
  transform: translateY(-50%) rotate(45deg);
  right: 23px;
}

.custom-select-trigger::after {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.open .custom-select-trigger {
  border-color: rgba(241, 154, 100, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.custom-select.open .custom-select-trigger::before {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(45deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 29, 34, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
  z-index: 12;
}

.custom-select.open .custom-select-menu {
  display: flex;
}

.custom-select-option {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 12px 14px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-selected {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.full-width {
  margin-top: 16px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.form-status {
  margin: 0;
  font-weight: 700;
  color: var(--teal);
}

.footer {
  padding: 0 clamp(20px, 5vw, 72px) 36px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

input::placeholder,
textarea::placeholder {
  color: rgba(238, 247, 245, 0.55);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

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

.whatsapp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 40px;
  }

  .topbar,
  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar {
    gap: 16px;
  }

  .hero-content,
  .quote-section,
  .reviews-header,
  .about-card,
  .cards-grid,
  .destination-grid,
  .reviews-grid,
  .process-grid,
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 320px;
  }

  .quote-copy,
  .reviews-summary {
    max-width: none;
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    padding-top: 92px;
  }

  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    width: min(100%, 1180px);
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

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

  .brand {
    width: calc(100% - 68px);
    gap: 12px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand p {
    font-size: 1.1rem;
  }

  .brand span {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
    max-width: 100%;
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .hero-content {
    padding-top: 36px;
    gap: 24px;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .hero-stats li:last-child {
    grid-column: 1 / -1;
  }

  .hero-card {
    min-height: 280px;
    padding: 22px;
    border-radius: 24px;
  }

  .hero-card h2 {
    font-size: 2.25rem;
  }

  .trip-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section {
    padding: 24px 20px 56px;
  }

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

  .info-card,
  .process-card,
  .guarantee-card,
  .review-card,
  .quote-form,
  .about-card {
    border-radius: 22px;
    padding: 22px;
  }

  .destination-card {
    min-height: 260px;
    border-radius: 22px;
    padding: 22px;
  }

  .reviews-summary strong {
    font-size: 2.7rem;
  }

  .faq-item summary {
    padding: 18px 20px;
    padding-right: 56px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .quote-highlights {
    gap: 12px;
  }

  .quote-highlights div {
    padding: 16px 18px;
  }

  .full-width {
    margin-top: 14px;
  }

  .form-footer {
    align-items: stretch;
  }

  .form-footer .btn {
    width: 100%;
  }

  .btn,
  .nav-links {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 14px;
  }

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

  .nav-links a,
  .language-switcher,
  .nav-section-switcher {
    width: 100%;
  }

  .nav-links .btn,
  .nav-links a {
    justify-content: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    max-width: none;
  }

  .nav-section-switcher .nav-dropdown-trigger {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .top-banner img {
    min-height: 150px;
    object-fit: cover;
    object-position: center;
  }

  .topbar.menu-open {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .nav-dropdown-menu,
  .nav-dropdown-menu-right {
    position: static;
    min-width: 0;
    margin-top: 10px;
    border-radius: 20px;
  }

  .footer {
    padding: 0 20px 96px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    gap: 8px;
    font-size: 0.95rem;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .topbar,
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    align-items: center;
  }

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

  .hero-stats li:last-child {
    grid-column: auto;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  input,
  select,
  textarea {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .btn {
    padding: 13px 18px;
  }

  .top-banner img {
    min-height: 120px;
  }

  .custom-select-trigger {
    border-radius: 14px;
    padding: 13px 44px 13px 14px;
  }

  .custom-date-trigger {
    border-radius: 14px;
    padding: 13px 44px 13px 14px;
  }

  .travel-date-mode-switch {
    grid-template-columns: 1fr;
  }

  .flexible-dates-grid {
    grid-template-columns: 1fr;
  }

  .custom-date-trigger::before {
    right: 14px;
  }

  .custom-date-trigger::after {
    right: 18px;
  }

  .custom-date-menu {
    width: min(100%, 320px);
    border-radius: 18px;
    padding: 12px;
  }

  .custom-select-menu {
    border-radius: 18px;
  }
}
