@import 'tailwindcss';

:root {
  --navy: #002451;
  --navy-deep: #001a3d;
  --navy-dark: #00132e;
  --blue: #0d4f86;
  --gold: #e4aa38;
  --gold-light: #f6ce69;
  --cream: #fffdf8;
  --ink: #06254b;
  --muted: #5a6778;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Geist', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

.container {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  height: 80px;
  border-bottom: 1px solid rgba(228, 170, 56, 0.45);
  background: var(--navy-deep);
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 220px;
  height: 80px;
  flex-shrink: 0;
}

.header-logo-img {
  position: absolute;
  top: 10px;
  left: -20px;
  width: 220px;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 10, 30, 0.5));
  pointer-events: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 28px);
  height: 80px;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto;
}

.desktop-nav a {
  position: relative;
  display: flex;
  height: 80px;
  align-items: center;
  transition: color 180ms ease;
  color: white;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold-light);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: '';
}

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 30px rgba(3, 20, 43, 0.2);
  color: #062145;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 20, 43, 0.26);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 12px;
  text-transform: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 56px;
  right: 0;
  display: grid;
  width: 210px;
  overflow: hidden;
  border: 1px solid rgba(228, 170, 56, 0.4);
  border-radius: 10px;
  background: var(--navy-deep);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.mobile-menu nav a {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 640px;
  background-image: url('/fundo.png');
  background-position: center 58%;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 25, 61, 0.98) 0%, rgba(0, 30, 67, 0.87) 31%, rgba(0, 35, 75, 0.32) 58%, rgba(0, 21, 51, 0.02) 100%),
    linear-gradient(0deg, rgba(0, 31, 71, 0.3), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 110px;
}

.eyebrow {
  display: none;
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 0;
  font-size: clamp(56px, 6.2vw, 82px);
  font-weight: 900;
  letter-spacing: -0.048em;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 3px 24px rgba(0, 14, 36, 0.34);
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  margin: 18px 0 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.42;
  text-shadow: 0 2px 12px rgba(0, 19, 47, 0.5);
}

.hero-button {
  padding: 0 28px;
  min-height: 52px;
  font-size: 13.5px;
}

.hero-plane {
  position: absolute;
  z-index: 2;
  top: 48px;
  left: 47%;
  color: white;
  font-size: 50px;
  line-height: 1;
  filter: drop-shadow(0 7px 8px rgba(0, 27, 62, 0.35));
  opacity: 0.92;
  transform: rotate(-9deg);
}

.trust-wrap {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -52px;
  left: 0;
}

.trust-bar {
  display: grid;
  min-height: 104px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(228, 170, 56, 0.55);
  border-radius: 15px;
  background: rgba(0, 29, 68, 0.97);
  box-shadow: 0 16px 34px rgba(0, 21, 50, 0.24);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-item:last-child {
  border: 0;
}

.trust-item > svg {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--gold);
  stroke-width: 1.75;
}

.trust-item div {
  display: grid;
  gap: 5px;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  line-height: 1.35;
}

.section {
  padding: 60px 0;
}

.services {
  padding-top: 100px;
  padding-bottom: 45px;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 232, 247, 0.5), transparent 35%),
    #fbfcfe;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-transform: uppercase;
}

.heading-mark {
  position: relative;
  display: grid;
  width: 238px;
  height: 22px;
  margin-top: 9px;
  place-items: center;
  color: var(--gold);
}

.heading-mark::before,
.heading-mark::after {
  position: absolute;
  top: 50%;
  width: 94px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: '';
}

.heading-mark::before {
  left: 0;
}

.heading-mark::after {
  right: 0;
  transform: rotate(180deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.service-card {
  display: flex;
  min-height: 215px;
  flex-direction: column;
  align-items: center;
  padding: 19px 12px 17px;
  border: 1px solid #e4eaf1;
  border-radius: 13px;
  background: white;
  box-shadow: 0 12px 28px rgba(7, 34, 69, 0.07);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(228, 170, 56, 0.72);
  box-shadow: 0 17px 34px rgba(7, 34, 69, 0.12);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: #f2f6fb;
  color: var(--navy);
}

.service-icon svg {
  width: 33px;
  height: 33px;
}

.service-card:nth-child(2) .service-icon {
  background: #fff8e9;
  color: var(--gold);
}

.service-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.destinations {
  background:
    radial-gradient(circle at 10% 50%, rgba(17, 86, 137, 0.38), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(18, 70, 111, 0.3), transparent 32%),
    var(--navy-deep);
  padding-top: 42px;
  padding-bottom: 48px;
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light > p {
  color: var(--gold-light);
}

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

/* Destination Carousel */
.destination-carousel-wrapper {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.destination-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 24px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}

.destination-carousel-track::-webkit-scrollbar {
  display: none;
}

.destination-card.carousel-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 250px;
  height: 275px;
  scroll-snap-align: start;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 26, 61, 0.92);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 200ms ease;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(228, 170, 56, 0.5);
}

.carousel-btn.prev {
  left: -26px;
}

.carousel-btn.next {
  right: -26px;
}

.carousel-dots-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(228, 170, 56, 0.4);
  cursor: pointer;
  transition: all 220ms ease;
  padding: 0;
}

.carousel-dot.active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
}

@media (max-width: 1100px) {
  .destination-card.carousel-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 820px) {
  .destination-card.carousel-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .carousel-btn.prev { left: -8px; }
  .carousel-btn.next { right: -8px; }
}

@media (max-width: 560px) {
  .destination-card.carousel-card {
    flex: 0 0 86%;
  }
}

.destination-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 7, 22, 0.3);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-card:hover img {
  transform: scale(1.055);
}

.destination-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 21, 51, 0.98) 0%, rgba(0, 28, 65, 0.76) 35%, transparent 71%);
}

.destination-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
}

.destination-content h3 {
  margin: 0 0 11px;
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

.destination-content span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.destination-content strong {
  display: block;
  margin: 2px 0 12px;
  color: var(--gold-light);
  font-size: 20px;
}

.destination-content a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.benefits {
  padding: 40px 0 45px;
  background: white;
}

.section-heading.compact {
  margin-bottom: 25px;
}

.section-heading.compact h2 {
  font-size: clamp(24px, 2.4vw, 31px);
}

.section-heading.compact h2 span {
  color: var(--gold);
}

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

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.benefit > svg {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  color: var(--navy);
  stroke-width: 1.65;
}

.benefit h3 {
  margin: 2px 0 6px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.5;
}

.consultant {
  position: relative;
  overflow: hidden;
  background-image: url('/bora-bora.jpg');
  background-position: center 56%;
  background-size: cover;
  color: white;
}

.consultant-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 37, 81, 0.98), rgba(0, 44, 87, 0.83) 52%, rgba(0, 33, 73, 0.66));
}

.consultant-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 155px;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  align-items: center;
  gap: 35px;
}

.consultant-grid > div + div {
  border-left: 1px solid rgba(228, 170, 56, 0.74);
  padding-left: 34px;
}

.consultant-title {
  margin: 0 0 12px;
  font-size: 24px !important;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03 !important;
}

.consultant-title span {
  color: var(--gold-light);
}

.consultant-grid p {
  max-width: 375px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  line-height: 1.55;
}

.promise-list {
  display: grid;
  gap: 12px;
}

.promise-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 670;
}

.promise-list svg {
  width: 25px;
  height: 25px;
  color: var(--gold-light);
  stroke-width: 1.8;
}

.consultant-action {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.consultant-action .button {
  padding: 0 22px;
}

.consultant-action p {
  text-align: center;
}

.footer {
  border-top: 1px solid rgba(228, 170, 56, 0.6);
  background: var(--navy-dark);
  color: white;
}

.footer-grid {
  display: grid;
  min-height: 96px;
  grid-template-columns: 195px 1fr;
  align-items: center;
  gap: 38px;
}

.footer-logo {
  width: 185px;
  height: 82px;
  margin-top: 0;
  margin-left: 0;
  background-position: center;
  background-size: contain;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 18px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke-width: 1.7;
}

.social-at {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.58);
  font-size: 9.5px;
}

.footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom svg {
  width: 13px;
  color: var(--gold);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: #23c663;
  box-shadow: 0 8px 24px rgba(0, 42, 72, 0.3);
  color: white;
  transition: transform 180ms ease;
}

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

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .brand-logo {
    width: 176px;
    height: 86px;
    margin-top: 0;
    margin-left: 0;
    background-size: contain;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 13px;
  }

  .button-small {
    display: none;
  }

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

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

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

  .consultant-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 32px;
  }

  .consultant-action {
    grid-column: 1 / -1;
    justify-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(228, 170, 56, 0.5);
    border-left: 0 !important;
  }

  .contact-list {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-around;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 580px);
  }

  .site-header {
    height: 76px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand-logo {
    width: 159px;
    height: 70px;
  }

  .header-logo-img {
    position: static;
    width: 159px;
    height: 70px;
    max-height: 70px;
    filter: none;
  }

  .desktop-nav,
  .button-small {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 660px;
    background-position: 64% 55%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 25, 61, 0.96), rgba(0, 29, 65, 0.76) 68%, rgba(0, 26, 60, 0.45));
  }

  .hero-content {
    padding-top: 77px;
  }

  .eyebrow {
    display: block;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-plane {
    top: 50px;
    right: 20px;
    left: auto;
    font-size: 44px;
  }

  .trust-wrap {
    bottom: -113px;
  }

  .trust-bar {
    min-height: 226px;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    min-height: 113px;
    gap: 12px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item > svg {
    width: 33px;
    height: 33px;
  }

  .services {
    padding-top: 168px;
  }

  .section {
    padding-bottom: 68px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

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

  .service-card {
    min-height: 254px;
  }

  .destination-card {
    height: 290px;
  }

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

  .consultant-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 42px;
  }

  .consultant-grid > div + div {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(228, 170, 56, 0.5);
    border-left: 0;
  }

  .consultant-action {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding-block: 15px 28px;
  }

  .contact-list {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    width: 100%;
  }

  .footer-bottom {
    gap: 15px;
    padding-block: 16px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 49px;
  }

  .hero-button {
    width: 100%;
    padding: 0 13px;
    font-size: 11px;
  }

  .desktop-break {
    display: none;
  }

  .trust-item {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .trust-item span {
    display: none;
  }

  .service-grid,
  .destination-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
    padding-inline: 24px;
  }

  .destination-card {
    height: 340px;
  }

  .benefit p {
    font-size: 10.5px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ==========================================================================
   INNER PAGES & PRODUCTION EXTENSIONS
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold) !important; }
.text-success { color: #16a34a !important; }
.text-slate-600 { color: #475569 !important; }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* Buttons & Pill Variants */
.btn {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 30px rgba(3, 20, 43, 0.2);
  color: #062145 !important;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  cursor: pointer;
  padding: 0 24px;
  text-decoration: none;
}
.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 20, 43, 0.26);
}
.btn--sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 11.5px;
  font-weight: 750;
}
.btn--lg {
  min-height: 52px;
  padding: 0 32px;
  font-size: 14px;
}
.btn--full { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #062145 !important;
}
.btn--gold-pill {
  border-radius: 999px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #062145 !important;
}
.btn--outline-light {
  background: transparent;
  color: white !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.08);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
  box-shadow: none;
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: white !important;
}

/* Page Hero */
.page-hero {
  background: var(--navy-deep);
  color: white;
  padding: 44px 0;
  border-bottom: 1px solid rgba(228, 170, 56, 0.3);
  text-align: center;
}
.page-hero__breadcrumb {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.page-hero__breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.page-hero__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* Catalogs & Filter Bar */
.section--catalog { padding: 40px 0 60px; }
.catalog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: white;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 21, 50, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 32px;
  align-items: center;
}
.catalog-filter-bar__group { flex: 1 1 180px; }
.catalog-filter-bar__action { display: flex; gap: 8px; }
.destinations-catalog-grid, .packages-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* Destination Cards in Catalog */
.destinations-catalog-grid .destination-card {
  height: auto;
  min-height: 390px;
  background: white;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.destination-card__image-box {
  position: relative;
  height: 180px;
  background: var(--navy-deep);
}
.destination-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 26, 61, 0.85);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(228, 170, 56, 0.3);
}
.destination-card__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: var(--ink);
}
.destination-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.destination-card__country {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.destination-card__summary {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.destination-card__pricing {
  margin-top: auto;
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}
.destination-card__price-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.destination-card__price-val {
  font-size: 1.25rem;
  font-weight: 850;
  color: #b87916;
}

/* Package Cards in Catalog */
.package-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 21, 50, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 21, 50, 0.1);
  border-color: rgba(228, 170, 56, 0.5);
}
.package-card__image-box {
  position: relative;
  height: 180px;
  background: var(--navy-deep);
}
.package-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 26, 61, 0.85);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.package-card__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.package-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.package-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.package-card__desc {
  font-size: 0.8125rem;
  color: #475569;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.package-card__pricing {
  margin-top: auto;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}
.package-card__price-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
}
.package-card__price-val {
  font-size: 1.35rem;
  font-weight: 850;
  color: #b87916;
}
.package-card__installments {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination__item {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #cbd5e1;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 180ms ease;
}
.pagination__item:hover, .pagination__item.is-active {
  background: var(--navy-deep);
  color: var(--gold-light);
  border-color: var(--navy-deep);
}

/* Details Pages Layout */
.destination-hero, .package-hero {
  position: relative;
  padding: 64px 0;
  background-size: cover;
  background-position: center center;
  color: white;
  border-bottom: 1px solid rgba(228, 170, 56, 0.4);
}
.destination-hero__inner, .package-hero__inner { max-width: 760px; }
.destination-hero__badge, .package-hero__badge {
  display: inline-block;
  background: rgba(228, 170, 56, 0.2);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(228, 170, 56, 0.4);
}
.destination-hero__title, .package-hero__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.destination-hero__desc, .package-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 24px;
}
.package-hero__price-box {
  background: rgba(0, 26, 61, 0.85);
  border: 1px solid rgba(228, 170, 56, 0.5);
  padding: 16px 20px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 24px;
}
.package-hero__price-label { display: block; font-size: 0.75rem; color: #cbd5e1; text-transform: uppercase; }
.package-hero__price-val { font-size: 1.85rem; font-weight: 900; color: var(--gold-light); }
.package-hero__price-sub { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); }
.destination-hero__cta-group, .package-hero__cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.destination-layout, .package-layout, .article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 50px 0;
}
.prose h2, .prose h3, .itinerary-section__title {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.prose p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 140px;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Inclusions & Exclusions */
.inclusions-exclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.inc-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}
.inc-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inc-card__list li {
  font-size: 0.875rem;
  color: #475569;
  position: relative;
  padding-left: 18px;
}
.inc-card--inclusions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 800;
}
.inc-card--exclusions li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 800;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.itinerary-day {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.itinerary-day__marker {
  background: var(--navy-deep);
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
}
.itinerary-day__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.itinerary-day__desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 6px;
}
.itinerary-day__meals {
  display: inline-block;
  font-size: 0.75rem;
  color: #b87916;
  font-weight: 600;
}

/* Sidebar Info Card */
.travel-info-card, .consultant-box {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 21, 50, 0.05);
}
.travel-info-card__title, .consultant-box__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}
.travel-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.travel-info-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}
.info-label { color: var(--muted); font-weight: 600; }
.info-value { color: var(--navy); font-weight: 700; text-align: right; }

.consultant-box {
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
}
.consultant-box__title { color: white; border-bottom-color: rgba(255, 255, 255, 0.15); }
.consultant-box__text { font-size: 0.875rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 16px; }

/* Services List & Cards */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-item-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 21, 50, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 21, 50, 0.08);
  border-color: rgba(228, 170, 56, 0.6);
}
.service-item-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-item-card__desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-item-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* About Story & Pillars */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.section-tag {
  display: inline-block;
  color: #b87916;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.about-grid__text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-grid__text p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  background: white;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.stat-card__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #b87916;
}
.stat-card__label {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.about-img {
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 21, 50, 0.15);
  border: 1px solid #e2e8f0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: white;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 21, 50, 0.04);
}
.pillar-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.pillar-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.pillar-card p { font-size: 0.875rem; color: #475569; line-height: 1.55; }

/* FAQ Accordion */
.faq-container { max-width: 820px; }
.faq-search-box { margin-bottom: 36px; }
.faq-group { margin-bottom: 32px; }
.faq-group__title {
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: white;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
}
.accordion-header:hover { background: #f8fafc; }
.accordion-header__icon { font-size: 1.25rem; font-weight: 800; color: #b87916; }
.accordion-body {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info-panel h2, .contact-form-panel h2 {
  font-size: 1.65rem;
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-info-panel p, .contact-form-panel p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-card-list { display: flex; flex-direction: column; gap: 14px; }
.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  transition: all 180ms ease;
}
.contact-channel-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 21, 50, 0.06);
}
.contact-channel-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bg-success { background: #16a34a; }
.bg-blue { background: var(--blue); }
.bg-gold { background: var(--gold); }
.text-navy-950 { color: var(--navy-950); }
.contact-channel-card__info h4 { font-size: 0.9375rem; font-weight: 800; color: var(--navy); }
.contact-channel-card__info p { font-size: 0.8125rem; color: #475569; margin: 2px 0 4px 0; }
.contact-channel-card__action { font-size: 0.75rem; font-weight: 700; color: #b87916; }
.contact-form-panel {
  background: white;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px rgba(0, 21, 50, 0.05);
}

/* Form Controls */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 0.875rem;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.form-textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228, 170, 56, 0.2);
}
.checkbox-group { display: flex; align-items: center; gap: 8px; }
.checkbox-label { font-size: 0.8125rem; color: #475569; cursor: pointer; }

/* Planner Wizard */
.planner-wizard-container { max-width: 820px; margin: 40px auto; }
.planner-stepper { margin-bottom: 24px; }
.stepper-track {
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.stepper-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width 0.3s ease;
}
.stepper-steps { display: flex; justify-content: space-between; }
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-indicator.is-active .step-num { background: var(--gold); color: var(--navy-dark); }
.step-indicator.is-passed .step-num { background: var(--navy); color: white; }
.step-label { font-size: 11px; font-weight: 600; color: var(--muted); }
.step-indicator.is-active .step-label { color: var(--navy); font-weight: 800; }
.planner-form-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 12px 34px rgba(0, 21, 50, 0.08);
  border: 1px solid #e2e8f0;
}
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.step-badge {
  display: inline-block;
  background: #fdf6e2;
  color: #b87916;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.step-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-subtitle { font-size: 0.9375rem; color: var(--muted); margin-bottom: 24px; }
.trip-type-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trip-option-card { cursor: pointer; }
.trip-option-card input { display: none; }
.trip-option-card__box {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  background: #fcfdfe;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trip-option-card input:checked + .trip-option-card__box {
  border-color: var(--gold);
  background: #fffbf0;
  box-shadow: 0 4px 14px rgba(228, 170, 56, 0.2);
}
.trip-option-card__icon { font-size: 1.75rem; margin-bottom: 6px; }
.trip-option-card__title { font-size: 0.875rem; font-weight: 800; color: var(--navy); }
.trip-option-card__sub { font-size: 0.75rem; color: var(--muted); }
.checkbox-chips-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-chip input { display: none; }
.checkbox-chip span {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  font-size: 0.8125rem;
  background: #f8fafc;
  cursor: pointer;
  transition: all 180ms ease;
}
.checkbox-chip input:checked + span {
  background: var(--navy-deep);
  color: var(--gold-light);
  border-color: var(--navy-deep);
  font-weight: 700;
}
.travelers-counters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.counter-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}
.counter-control { display: flex; align-items: center; gap: 8px; }
.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: white;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-input { width: 36px; text-align: center; border: none; background: none; font-weight: 800; font-size: 1rem; }
.children-ages-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.child-age-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

/* Thank you page & 404 */
.thank-you-container, .error-page-container {
  max-width: 600px;
  margin: 60px auto;
  text-align: center;
}
.thank-you-card, .error-page-card {
  background: white;
  border-radius: 16px;
  padding: 48px 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(0, 21, 50, 0.08);
}
.thank-you-card__icon { font-size: 3.5rem; margin-bottom: 12px; }
.thank-you-card__title { font-size: 1.85rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.thank-you-card__desc { font-size: 0.9375rem; color: #475569; margin-bottom: 24px; }
.protocol-badge-box {
  background: #fdf6e2;
  border: 2px dashed var(--gold);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
}
.protocol-badge-label { display: block; font-size: 0.75rem; color: #b87916; font-weight: 800; text-transform: uppercase; }
.protocol-badge-number { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.next-steps-list {
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.next-steps-list li {
  font-size: 0.875rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}
.error-code { font-size: 5rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.error-title { font-size: 1.75rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.error-desc { font-size: 0.9375rem; color: var(--muted); margin-bottom: 24px; }

/* Policies */
.policy-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.policy-tab {
  padding: 10px 20px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
}
.policy-tab.is-active {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}
.policy-content__card {
  background: white;
  border-radius: 14px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 21, 50, 0.04);
}

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.alert--danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
