:root {
  --bg: #f1f8fc;
  --bg-strong: #d8ecf8;
  --ink: #003f66;
  --ink-soft: #2f3a48;
  --accent: #00a9e9;
  --accent-deep: #00618e;
  --card: #ffffff;
  --line: rgba(17, 35, 71, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: #ffffff;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  color: #00a9e9;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: #2a2f38;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
}

.main-nav {
  display: flex;
  gap: 0.65rem;
  margin-left: auto;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  color: var(--ink-soft);
  font-weight: 600;
}

.lang-icon {
  font-size: 1rem;
  line-height: 1;
}

.lang-select {
  border: 1px solid #cfdaea;
  border-radius: 8px;
  padding: 0.42rem 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  color: #1e3558;
  background: #fff;
}

select,
option {
  font-family: "Manrope", sans-serif;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

.hero {
  background: #ffffff;
  padding: 4rem 0 3.2rem;
  min-height: 58vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  font-weight: 700;
  color: #00a9e9;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  max-width: 12ch;
  line-height: 1.22;
  min-height: 5em;
}

.typing-cursor {
  display: inline-block;
  margin-left: 0.08em;
  animation: blink 1s step-end infinite;
}

#typingText {
  display: inline-block;
  width: 100%;
}

.typing-primary {
  color: #003f66;
}

.typing-alert {
  color: #d83434;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.lead {
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.4rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(130deg, #00a9e9, #00618e);
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0, 97, 142, 0.28);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 18px 42px rgba(29, 42, 68, 0.09);
}

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.section {
  padding: 3.2rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: clamp(1.35rem, 1.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 1.2rem;
}

.booking-strip-section {
  padding-top: 0.6rem;
}

.promo-banner {
  position: relative;
  background: linear-gradient(135deg, #006a95 0%, #0098d8 55%, #00b7ff 100%);
  border-radius: 18px;
  padding: 1rem 1rem 1.9rem;
  width: min(1000px, 100%);
  margin: 0 auto 0.85rem;
  overflow: visible;
  transition: padding-bottom 0.2s ease;
}

.promo-banner.open {
  padding-bottom: 15.5rem;
}

.promo-banner.open-destination {
  padding-bottom: 18.8rem;
}

.promo-banner::before {
  content: "🏯   🛕   🐘   🎭   🛺   🏮";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 2rem;
  letter-spacing: 1.4rem;
  opacity: 0.11;
  pointer-events: none;
}

.promo-banner::after {
  content: "🛕   🌴   🐘   🛶   🏯";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  display: flex;
  justify-content: space-evenly;
  font-size: 1.45rem;
  opacity: 0.09;
  pointer-events: none;
}

.booking-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(229, 238, 247, 0.8);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: minmax(220px, 2fr) minmax(170px, 1.15fr) minmax(230px, 1.5fr) auto;
  gap: 0.6rem;
}

.booking-strip-item {
  display: grid;
  gap: 0.3rem;
}

.booking-strip-item label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #53627c;
}

.booking-strip-item input,
.booking-strip-item select {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid #d0d9e7;
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #24324c;
}

.destination-item {
  position: relative;
}

.destination-btn {
  height: 48px;
  border: 1px solid #d0d9e7;
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #6d7c95;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.destination-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.destination-item .destination-btn[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.destination-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d8e0ee;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 14px 30px rgba(16, 35, 71, 0.14);
  padding: 0.8rem;
  z-index: 25;
}

.destination-title {
  margin: 0 0 0.55rem;
  color: #2f3f5f;
  font-size: 0.87rem;
  font-weight: 700;
}

.destination-list {
  display: grid;
  gap: 0.35rem;
}

.destination-option {
  border: 1px solid #dbe3f0;
  background: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1f2f4b;
  cursor: pointer;
}

.guests-item {
  position: relative;
}

.guests-btn {
  height: 48px;
  border: 1px solid #d0d9e7;
  background: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #24324c;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.guests-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.guests-item .guests-btn[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.guests-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #d8e0ee;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 14px 30px rgba(16, 35, 71, 0.14);
  padding: 0.8rem;
  z-index: 25;
}

.guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.42rem 0;
}

.guests-row p {
  margin: 0;
  font-size: 1.03rem;
  color: #1f2a41;
}

.guests-row small {
  color: #6d7c95;
  font-size: 0.84rem;
  margin-left: 0.2rem;
}

.counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 2px solid #2d5bff;
  background: #fff;
  color: #2d5bff;
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.counter-btn.minus {
  border-color: #b7c2d6;
  color: #b7c2d6;
}

.counter span {
  min-width: 18px;
  text-align: center;
  font-size: 1.2rem;
  color: #1f2a41;
}

.guests-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.65rem;
}

.guests-actions button {
  border: none;
  background: #2d5bff;
  color: #fff;
  border-radius: 8px;
  padding: 0.55rem 0.95rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.booking-strip-action {
  align-self: end;
}

.booking-strip-action button {
  height: 48px;
  min-width: 130px;
  border: 2px solid #2d5bff;
  border-radius: 8px;
  background: #fff;
  color: #2d5bff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

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

.category-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(20, 23, 31, 0.08);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.category-card h3 {
  margin: 0;
  padding: 0.8rem 0.9rem 0.9rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

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

.tour-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 23, 31, 0.08);
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tour-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.tour-country {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 1.1px;
  font-weight: 800;
  text-transform: uppercase;
  color: #00a9e9;
}

.tour-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.1px;
  margin: 0 0 1rem;
}

.tour-price {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  color: #6e6e6e;
}

.tour-price strong {
  color: #006ea0;
  font-size: 1.15em;
  font-weight: 800;
}

.details-toggle {
  margin: 0.5rem 0 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 999px;
  color: #4b4b4b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.details-toggle .chevron {
  font-size: 0.9rem;
  line-height: 1;
}

.tour-meta {
  margin: 0;
  color: #777;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.tour-footer {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px dashed #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.book-btn {
  text-decoration: none;
  background: linear-gradient(130deg, #00a9e9, #00618e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 21, 33, 0.56);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.booking-modal.open {
  display: flex;
}

.booking-dialog {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  position: relative;
}

.booking-dialog h3 {
  font-family: "Manrope", sans-serif;
  margin: 0 0 0.45rem;
}

.selected-package {
  margin: 0 0 0.9rem;
  color: #4b4b4b;
  font-size: 0.92rem;
}

.booking-dialog form {
  display: grid;
  gap: 0.45rem;
}

.booking-dialog label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #34435f;
}

.booking-dialog input {
  border: 1px solid #d6dce6;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.submit-booking {
  border: none;
  background: linear-gradient(130deg, #00a9e9, #00618e);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #76829a;
}

.tour-details {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ececec;
}

.tour-details p {
  margin: 0 0 0.35rem;
  color: #666;
  font-size: 0.85rem;
}

.tour-card.open .tour-details {
  display: block;
}

.tour-card.open .details-toggle .chevron {
  transform: rotate(180deg);
}

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

.feature {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.95rem 1rem;
  border-radius: 10px;
}

.contact p {
  max-width: 52ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.payment-success {
  background: #e9fff2;
  border-bottom: 1px solid #bceccc;
}

.payment-success p {
  margin: 0;
  padding: 0.8rem 0;
  color: #0f6a39;
  font-weight: 700;
}

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

.metric-card {
  background: #fff;
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  padding: 1rem;
}

.metric-card p {
  margin: 0;
  color: #6a7489;
  font-weight: 600;
  font-size: 0.9rem;
}

.metric-card h2 {
  margin: 0.3rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.table-wrap {
  background: #fff;
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  padding: 1rem;
}

.table-scroll {
  overflow-x: auto;
}

.booking-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

.booking-table th,
.booking-table td {
  text-align: left;
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid #edf1f7;
  font-size: 0.87rem;
}

.booking-table th {
  color: #42547a;
  font-weight: 700;
  white-space: nowrap;
}

.booking-table td {
  color: #2c3a57;
}

@media (max-width: 860px) {
  .menu-btn {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 0.45rem;
  }

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

  .tour-cards,
  .category-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .booking-strip {
    grid-template-columns: 1fr;
  }

  .booking-strip-action button {
    width: 100%;
  }

  .promo-banner {
    text-align: center;
  }

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

  .tour-card h3 {
    font-size: 1.18rem;
  }

  .tour-price {
    font-size: 0.95rem;
  }
}
