@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap");
@import url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css");

:root {
  --gutter: 32px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f6f3ee;
  color: #0a0a0a;
  overflow-x: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter);
}

/* NAV */
.nav {
  height: 68px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: #0a0a0a;
}
.nav-logo b {
  color: #e8b84b;
}
.logo-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
  margin-left: 10px;
  border-left: 1px solid rgba(10, 10, 10, 0.15);
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  color: rgba(10, 10, 10, 0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: #e8b84b;
}
.nav-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8b84b;
  color: #0a0a0a;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  font-family: "DM Sans", sans-serif;
}

/* HERO */
.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero-left {
  background: #0a0a0a;
  padding: 72px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  width: 160px;
  background: #0a0a0a;
  transform: skewX(-5deg);
  z-index: 1;
}
.hero-right {
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}
.hero-right-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gold-line {
  position: absolute;
  left: var(--gutter);
  top: 0;
  width: 3px;
  height: 100%;
  background: #e8b84b;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #e8b84b;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 86px;
  line-height: 0.92;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 28px;
}
.hero h1 span {
  color: #e8b84b;
  display: block;
}
.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 12px;
}
.btn-primary {
  background: #e8b84b;
  color: #0a0a0a;
  border: none;
  padding: 14px 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.88;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: #e8b84b;
  color: #e8b84b;
}
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* BOOK STRIP */
.book-strip {
  background: #e8b84b;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1px;
  align-items: stretch;
}
.book-field {
  background: #e8b84b;
  padding: 20px 24px;
  border-right: 1px solid rgba(10, 10, 10, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book-field:last-child {
  border-right: none;
}
.book-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}
.book-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  width: 100%;
}
.book-input::placeholder {
  color: rgba(10, 10, 10, 0.4);
}
.book-select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.book-select option {
  background: #fff;
  color: #0a0a0a;
}
.book-btn {
  background: #0a0a0a;
  color: #e8b84b;
  border: none;
  padding: 0 36px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.book-btn:hover {
  background: #1a1a1a;
}

/* NUMBERS */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
}
.num-item {
  padding: 40px var(--gutter);
  border-right: 1px solid rgba(10, 10, 10, 0.1);
}
.num-item:last-child {
  border-right: none;
}
.num-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  line-height: 1;
  color: #e8b84b;
  letter-spacing: 1px;
}
.num-label {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* SERVICES */
.services {
  padding: 80px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8b84b;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  letter-spacing: 1px;
  line-height: 1;
}
.section-link {
  color: rgba(10, 10, 10, 0.4);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  padding-bottom: 2px;
}
.section-link:hover {
  color: #e8b84b;
  border-bottom-color: #e8b84b;
}
/* Premium Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 40px 32px;
  border-top: 3px solid transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(185deg, rgba(232, 184, 75, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(232, 184, 75, 0.12);
  border-top-color: #e8b84b;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: rgba(10, 10, 10, 0.08);
  line-height: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-num {
  color: rgba(232, 184, 75, 0.25);
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fdfaf3;
  border: 1px solid rgba(232, 184, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8b84b;
  font-size: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: #e8b84b;
  color: #0a0a0a;
  transform: scale(1.1);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.2px;
}

.service-desc {
  font-size: 13.5px;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(10, 10, 10, 0.05);
  padding-top: 16px;
}

.service-price {
  font-weight: 700;
  font-size: 14px;
  color: #e8b84b;
  letter-spacing: 0.5px;
}

.service-price small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.4);
}

.service-action-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-action-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-action-link {
  color: #e8b84b;
}

.service-card:hover .service-action-link i {
  transform: translateX(4px);
}

/* POPULAR ROUTES */
.routes {
  padding: 80px 0;
  background: #ede8dd;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.route-card {
  background: #fff;
  padding: 28px;
  border-left: 2px solid transparent;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  cursor: default;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.route-card:hover {
  border-left-color: #e8b84b;
  background: #fffdf7;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
}
.route-from-to {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.route-city {
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
}
.route-arrow {
  color: #e8b84b;
  font-size: 14px;
}
.route-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.45);
}
.route-price {
  font-size: 18px;
  font-weight: 700;
  color: #e8b84b;
  margin-top: 12px;
}
.route-price span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.4);
  margin-left: 4px;
}

/* PROVINCE COVERAGE */
.provinces {
  padding: 80px 0;
  background: #f6f3ee;
}
.province-intro {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.55);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.7;
}
.province-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.province-tag {
  padding: 8px 16px;
  border: 1px solid rgba(10, 10, 10, 0.15);
  font-size: 12px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.3px;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  cursor: default;
}
.province-tag:hover {
  border-color: #e8b84b;
  color: #e8b84b;
  background: rgba(232, 184, 75, 0.06);
}
.province-tag.highlight {
  border-color: #e8b84b;
  color: #e8b84b;
  background: rgba(232, 184, 75, 0.08);
}

/* FLEET */
.fleet {
  padding: 80px 0;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10, 10, 10, 0.06);
  margin-top: 48px;
}
.fleet-card {
  background: #fff;
  padding: 36px 32px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.fleet-card:hover {
  background: #fffdf7;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
}
.fleet-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(232, 184, 75, 0.1);
  border: 1px solid rgba(232, 184, 75, 0.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e8b84b;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 20px;
}
.fleet-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.fleet-eg {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 20px;
}
.fleet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.fleet-features li {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-features li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e8b84b;
  flex-shrink: 0;
}
.fleet-price {
  font-size: 20px;
  font-weight: 700;
  color: #e8b84b;
}
.fleet-price span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.4);
  margin-left: 4px;
}

/* PROCESS */
.process {
  background: #0a0a0a;
  padding: 80px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: rgba(232, 184, 75, 0.35);
}
.step-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #e8b84b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: #e8b84b;
  background: #0a0a0a;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.process .section-title {
  color: #fff;
}
.process .section-link {
  color: rgba(255, 255, 255, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.process .section-link:hover {
  color: #e8b84b;
  border-bottom-color: #e8b84b;
}

/* HAPPY CLIENTS PHOTOS */
.client-gallery-section {
  padding: 80px 0;
  background: #faf8f5;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
.client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.client-photo {
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.client-photo:hover img {
  transform: scale(1.04);
}
.client-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.84);
}
.client-photo-modal.is-open {
  display: flex;
}
.client-photo-modal img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.client-photo-modal-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.client-photo-modal-nav {
  position: fixed;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0a0a0a;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2001;
  transition: background 0.2s, transform 0.2s;
}
.client-photo-modal-nav:hover {
  background: #e8b84b;
  transform: translateY(-50%) scale(1.04);
}
.client-photo-modal-prev {
  left: 24px;
}
.client-photo-modal-next {
  right: 24px;
}
@media (max-width: 1100px) {
  .client-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .client-gallery-section {
    padding: 64px 0;
  }
  .client-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
  }
}
@media (max-width: 460px) {
  .client-gallery-grid {
    grid-template-columns: 1fr;
  }
  .client-photo-modal {
    padding: 16px;
  }
  .client-photo-modal-close {
    top: 12px;
    right: 12px;
  }
  .client-photo-modal-nav {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }
  .client-photo-modal-prev {
    left: 10px;
  }
  .client-photo-modal-next {
    right: 10px;
  }
}

/* REVIEWS */
.reviews {
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.review-big {
  background: #fff;
  padding: 40px;
  border-left: 3px solid #e8b84b;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}
.review-small-col {
  display: grid;
  gap: 24px;
}
.review-small {
  background: #fff;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.review-stars {
  color: #e8b84b;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8b84b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
}
.reviewer-loc {
  font-size: 11px;
  color: rgba(10, 10, 10, 0.45);
}

/* CTA */
.cta-bar {
  background: #e8b84b;
  padding: 56px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-bar h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: #0a0a0a;
  letter-spacing: 1px;
  line-height: 1;
}
.cta-bar p {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.6);
  margin-top: 6px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cta-btn {
  background: #0a0a0a;
  color: #e8b84b;
  border: none;
  padding: 16px 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 2px;
}
.cta-btn.outline {
  background: transparent;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-brand-logo b {
  color: #e8b84b;
}
.footer-brand-logo .logo-sub {
  color: rgba(255, 255, 255, 0.4);
  border-left-color: rgba(255, 255, 255, 0.15);
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  max-width: 260px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 16px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover {
  color: #e8b84b;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}
.footer-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #e8b84b;
}
.footer-social a i {
  transition: transform 0.2s, filter 0.2s;
  display: inline-block;
}
.footer-social a:hover i {
  transform: scale(1.15);
  filter: brightness(1.2);
}
.footer-social a i.ti-brand-facebook {
  color: #1877F2;
}
.footer-social a i.ti-brand-whatsapp {
  color: #25D366;
}
.footer-social a i.ti-mail {
  color: #EA4335;
}
.footer-social a i.ti-brand-wechat {
  color: #07C160;
}
.footer-social a i.ti-phone {
  color: #34A853;
}

/* HERO IMAGE */
.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 32px;
}

/* FLEET IMAGES */
.fleet-img {
  display: block;
  width: calc(100% + 64px);
  height: 240px;
  object-fit: contain;
  object-position: center;
  margin: -36px -32px 28px;
  padding: 24px 32px;
  background: #f5f6f8;
}

/* SEARCH WIDGET */
.search-widget {
  background: #111;
  border-top: 3px solid #e8b84b;
}
.sw-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sw-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.sw-tab i { font-size: 20px; }
.sw-tab:hover { color: rgba(255,255,255,0.8); }
.sw-tab.sw-tab-active { color: #e8b84b; border-bottom-color: #e8b84b; }
.sw-panel { display: none; padding: 24px 0 28px; }
.sw-panel.sw-panel-active { display: block; }
.sw-subtabs { display: flex; gap: 8px; margin-bottom: 18px; }
.sw-subtab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.sw-subtab:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.sw-subtab.sw-subtab-active { background: rgba(232,184,75,0.12); border-color: #e8b84b; color: #e8b84b; }
.sw-subpanel { display: none; }
.sw-subpanel.sw-subpanel-active { display: block; }
.sw-row { display: flex; gap: 10px; align-items: stretch; }
.sw-field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0 16px 0 44px;
  min-height: 54px;
  transition: border-color 0.2s;
}
.sw-field:focus-within { border-color: #e8b84b; }
.sw-icon {
  position: absolute;
  left: 14px;
  color: #e8b84b;
  font-size: 18px;
  pointer-events: none;
}
.sw-select,
.sw-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.sw-select option { background: #1c1c1c; color: #fff; }
.sw-input::placeholder { color: rgba(255,255,255,0.35); }
.sw-btn {
  flex-shrink: 0;
  padding: 0 32px;
  min-height: 54px;
  background: #e8b84b;
  color: #0a0a0a;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.sw-btn:hover { background: #d4a43a; }
.sw-btn:active { transform: scale(0.98); }
.sw-msg { margin-top: 10px; font-size: 13px; color: #e8b84b; min-height: 18px; }

/* GOOGLE REVIEWS SECTION */
.grev-section {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
.grev-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.grev-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.grev-wordmark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  letter-spacing: 3px;
}
.grev-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.grev-big-score {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
  color: #0a0a0a;
  letter-spacing: 2px;
}
.grev-stars {
  color: #FBBC05;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.grev-score-label {
  font-size: 11px;
  color: rgba(10, 10, 10, 0.45);
  letter-spacing: 0.5px;
}
.grev-desc {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 300px;
}
.grev-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(10, 10, 10, 0.15);
  color: #0a0a0a;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 3px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.grev-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.12);
}
.grev-g-icon-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.grev-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grev-card {
  background: #f9f9f9;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 8px;
  padding: 22px;
  transition: box-shadow 0.2s;
}
.grev-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.grev-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.grev-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.grev-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.2;
}
.grev-card-stars {
  color: #FBBC05;
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 2px;
}
.grev-g-badge {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
}
.grev-card-text {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .grev-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grev-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .grev-cards {
    grid-template-columns: 1fr;
  }
}

/* TRIPADVISOR REVIEWS SECTION */
.ta-section {
  padding: 72px 0;
  background: #f7faf8;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
.ta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.ta-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 1px;
  color: #0a0a0a;
  margin: 12px 0 18px;
}
.ta-desc {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.62);
}
.ta-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ta-review-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ta-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.075);
}
.ta-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ta-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #00aa6c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.ta-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.ta-stars {
  color: #00aa6c;
  font-size: 13px;
  letter-spacing: 3px;
}
.ta-review-title {
  display: inline-block;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  margin-bottom: 12px;
}
.ta-review-title:hover {
  color: #00aa6c;
}
.ta-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.65);
  margin-bottom: 18px;
}
.ta-reviewer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 10, 10, 0.07);
  font-size: 12px;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.48);
}
.ta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00aa6c;
  color: #fff;
  border-radius: 3px;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.ta-btn:hover {
  background: #008f5b;
}
.ta-btn:active {
  transform: scale(0.98);
}
@media (max-width: 900px) {
  .ta-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .ta-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ta-section {
    padding: 56px 0;
  }
  .ta-heading {
    font-size: 40px;
  }
  .ta-review-grid {
    grid-template-columns: 1fr;
  }
  .ta-review-card {
    padding: 22px;
    min-height: auto;
  }
  .ta-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* MAP SECTION */
.map-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 480px;
}
.map-info-panel {
  background: #0a0a0a;
  display: flex;
  align-items: stretch;
}
.map-info-inner {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.map-info-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
.map-info-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.map-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.map-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.map-contact-list li i {
  color: #e8b84b;
  font-size: 16px;
  flex-shrink: 0;
}
.map-contact-list li a,
.map-contact-list li span {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.map-contact-list li a:hover {
  color: #e8b84b;
}
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8b84b;
  color: #0a0a0a;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.map-directions-btn:hover {
  opacity: 0.88;
}
.map-directions-btn i {
  font-size: 16px;
}
.map-embed-wrap {
  position: relative;
  min-height: 480px;
}
.map-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 860px) {
  .map-section {
    grid-template-columns: 1fr;
  }
  .map-embed-wrap {
    min-height: 360px;
  }
}

/* PHOTO BREAK */
.photo-break {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.photo-break-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.38);
  display: block;
}
.photo-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 0 var(--gutter);
}
.photo-break-text strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 3px;
  color: #e8b84b;
  line-height: 1.05;
}
.photo-break-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- ADDITIONAL SUBPAGE STYLES --- */
.page-header {
  background: #0a0a0a;
  padding: 100px var(--gutter) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e8b84b;
}
.page-header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page Section */
.page-section {
  padding: 80px 0;
}
.page-section-dark {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0;
}
.page-section-dark .section-title {
  color: #fff;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Form Styles */
.custom-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border-top: 4px solid #e8b84b;
}
.form-dark {
  background: #141414;
  border-top-color: #e8b84b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #0a0a0a;
}
.form-dark .form-title {
  color: #fff;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.6);
}
.form-dark .form-label {
  color: rgba(255, 255, 255, 0.6);
}
.form-control {
  padding: 12px 16px;
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  background: #fff;
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.2s;
}
.form-dark .form-control {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.form-control:focus {
  border-color: #e8b84b;
}
.form-btn {
  background: #e8b84b;
  color: #0a0a0a;
  border: none;
  padding: 14px 28px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 10px;
}
.form-btn:hover {
  background: #d8a83b;
}

/* Private Tours interactive package cards */
.tour-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.tour-destination-card {
  display: block;
  position: relative;
  min-height: 310px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: #0a0a0a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
}
.tour-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.tour-destination-card:hover img,
.tour-destination-card.is-active img {
  transform: scale(1.04);
}
.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.78));
}
.tour-card-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
}
.tour-card-kicker {
  display: block;
  color: #e8b84b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.tour-card-copy strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}
.tour-card-copy small {
  display: block;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.5;
}
.tour-destination-card.is-active {
  outline: 3px solid #e8b84b;
  outline-offset: 3px;
}
.tour-detail-panels {
  margin-bottom: 60px;
}
.tour-detail-panel {
  display: none;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
}
.tour-detail-panel.is-active {
  display: block;
}
.tour-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.tour-detail-head h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  line-height: 1;
  color: #0a0a0a;
}
.tour-rate-note {
  background: #fdf7e8;
  border: 1px solid rgba(232, 184, 75, 0.42);
  border-radius: 999px;
  color: #8a6313;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}
.tour-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tour-option-card {
  background: #faf8f5;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 8px;
  padding: 22px;
}
.tour-option-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.tour-option-card p {
  color: rgba(10,10,10,0.62);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.tour-option-card span {
  display: inline-block;
  color: #0a0a0a;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tour-option-card button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: #e8b84b;
  color: #0a0a0a;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}
.tour-option-card button:hover {
  background: #d8a83b;
}

/* Tour detail page */
.tour-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}
.tour-main-content {
  min-width: 0;
}
.tour-lead {
  color: rgba(10, 10, 10, 0.62);
  font-size: 16px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 28px;
}
.tour-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.tour-highlight-strip span {
  background: #fdf7e8;
  border: 1px solid rgba(232, 184, 75, 0.42);
  border-radius: 999px;
  color: #8a6313;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 14px;
}
.tour-content-block {
  margin-top: 34px;
}
.tour-content-block h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.tour-itinerary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.tour-itinerary-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
}
.tour-itinerary-card div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.tour-itinerary-card strong {
  color: #0a0a0a;
  font-size: 18px;
}
.tour-itinerary-card small {
  color: #8a6313;
  background: #fdf7e8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 10px;
  white-space: nowrap;
}
.tour-itinerary-card p {
  color: rgba(10, 10, 10, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.tour-itinerary-card > span {
  display: block;
  color: #0a0a0a;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tour-itinerary-card button,
.tour-sidebar-nav button {
  border: 0;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.tour-itinerary-card button {
  width: 100%;
  border-radius: 3px;
  background: #e8b84b;
  color: #0a0a0a;
  padding: 12px 16px;
  font-weight: 800;
}
.tour-itinerary-card button:hover {
  background: #d8a83b;
}
.tour-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.tour-sidebar {
  position: sticky;
  top: 94px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tour-sidebar-panel {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
}
.tour-sidebar-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: #0a0a0a;
  margin-bottom: 16px;
}
.tour-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tour-sidebar-nav button {
  width: 100%;
  background: #faf8f5;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: left;
}
.tour-sidebar-nav button:hover,
.tour-sidebar-nav button.is-active {
  border-color: rgba(232, 184, 75, 0.6);
  background: #fdf7e8;
}
.tour-sidebar-nav strong,
.tour-sidebar-nav span {
  display: block;
}
.tour-sidebar-nav strong {
  color: #0a0a0a;
  font-size: 15px;
  margin-bottom: 4px;
}
.tour-sidebar-nav span {
  color: rgba(10, 10, 10, 0.55);
  font-size: 12px;
}
.tour-detail-success {
  display: none;
  margin-top: 14px;
  color: #155724;
  background: #d4edda;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.tour-help-panel {
  background: #0a0a0a;
  color: #fff;
}
.tour-help-panel .tour-sidebar-title {
  color: #fff;
}
.tour-help-panel a {
  display: block;
  color: #e8b84b;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Info Cards */
.info-card {
  background: #fff;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-left: 3px solid #e8b84b;
}
.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.info-card p {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.6;
}

/* Pricing Grid and Calculator styles */
.calc-card {
  background: #fff;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(10, 10, 10, 0.05);
}
.calc-result {
  margin-top: 24px;
  padding: 20px;
  background: #fdfaf3;
  border: 1px dashed #e8b84b;
  border-radius: 2px;
  text-align: center;
}
.calc-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: #e8b84b;
  margin-top: 8px;
}

/* Table Style */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}
.price-table th, .price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}
.price-table th {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  background: #fcfbfa;
}
.price-table tr:hover {
  background: #faf8f5;
}

/* Guides Styles */
.guide-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.guide-content {
  padding: 24px;
}
.guide-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 8px;
}
.guide-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.guide-desc {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.6;
}
