:root {
  --brand-blue: #0b4f8a;
  --brand-blue-deep: #08345b;
  --brand-orange: #f26b2c;
  --brand-cream: #fff7ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --text-main: #16202a;
  --text-muted: #5d6a78;
  --border-soft: rgba(11, 79, 138, 0.12);
  --shadow-soft: 0 18px 40px rgba(11, 79, 138, 0.12);
  --shadow-strong: 0 22px 55px rgba(8, 52, 91, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(242, 107, 44, 0.16), transparent 28%),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 30%, #f9fbfe 100%);
}

a {
  color: inherit;
}

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

.topbar {
  background: var(--brand-blue-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 15px;
}

.topbar-copy {
  margin: 0;
}

.topbar-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-actions a {
  font-weight: 600;
}

.site-header .navbar {
  padding: 18px 15px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-blue-deep);
}

.navbar-brand img {
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(11, 79, 138, 0.18);
}

.navbar-nav {
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--brand-blue-deep);
  font-weight: 600;
  padding: 8px 14px !important;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus {
  background: rgba(11, 79, 138, 0.08);
  color: var(--brand-blue);
}

.nav-link--social {
  background: var(--brand-blue);
  color: #fff;
}

.nav-link--social:hover,
.nav-link--social:focus {
  background: var(--brand-blue-deep);
  color: #fff;
}

.navbar-toggler {
  border: 0;
  background: rgba(11, 79, 138, 0.08);
  color: var(--brand-blue-deep);
}

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

.hero-copy {
  padding: 28px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(242, 107, 44, 0.12);
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2 {
  margin-bottom: 18px;
  color: var(--brand-blue-deep);
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.hero-description,
.route-description,
.content-card p,
.faq-card p,
.address-card p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.cta-primary,
.cta-secondary {
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.cta-primary {
  background: linear-gradient(135deg, var(--brand-orange), #ff8b4b);
  border: 0;
  box-shadow: 0 16px 30px rgba(242, 107, 44, 0.28);
}

.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(135deg, #e85e1e, #ff7c35);
}

.cta-secondary {
  border: 1px solid rgba(11, 79, 138, 0.2);
  color: var(--brand-blue-deep);
  background: rgba(255, 255, 255, 0.65);
}

.cta-secondary:hover,
.cta-secondary:focus {
  background: rgba(11, 79, 138, 0.08);
  color: var(--brand-blue-deep);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--brand-blue-deep);
  font-weight: 600;
}

.hero-points i {
  margin-right: 8px;
  color: var(--brand-orange);
}

.booking-card,
.route-card,
.address-card,
.feature-card,
.content-card,
.faq-card,
.map-shell,
.gallery-shell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

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

.booking-card h2,
.route-card h3,
.address-card h3,
.feature-card h3,
.content-card h3,
.faq-card h3 {
  margin-bottom: 18px;
  color: var(--brand-blue-deep);
  font-weight: 700;
}

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

.info-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.info-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.info-card strong {
  font-size: 20px;
  color: var(--brand-blue-deep);
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-stack a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--brand-blue-deep);
  color: #fff;
  font-weight: 600;
}

.contact-stack a:last-child {
  background: var(--brand-orange);
}

.highlights,
.schedule-section,
.visual-section,
.content-section,
.faq-section {
  padding: 28px 0 56px;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.feature-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(242, 107, 44, 0.12);
  color: var(--brand-orange);
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.route-card,
.address-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
}

.route-line {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-orange);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.timeline-stop {
  font-weight: 700;
  color: var(--brand-blue-deep);
}

.timeline-item strong {
  color: var(--brand-orange);
  font-size: 20px;
}

.address-card address {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.7;
  font-style: normal;
  color: var(--brand-blue-deep);
  font-weight: 600;
}

.address-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
}

.map-shell,
.gallery-shell {
  overflow: hidden;
  border-radius: 28px;
}

.google-map iframe {
  display: block;
  width: 100%;
}

.carousel-inner img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-grid,
.faq-list {
  display: grid;
  gap: 22px;
}

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

.content-card,
.faq-card {
  padding: 28px;
  border-radius: 24px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: grid;
  gap: 10px;
  min-width: 240px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 52, 91, 0.94);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.floating-contact p {
  margin: 0 0 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.floating-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.site-footer {
  padding: 32px 0 120px;
  background: var(--brand-blue-deep);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  margin-bottom: 6px !important;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.footer-credit a {
  color: #fff;
  font-weight: 600;
}

#fb-root {
  display: block;
}

.fb-customerchat-mobile {
  position: fixed;
  bottom: 22px;
  left: 18px;
  z-index: 999;
  display: none;
}

@media only screen and (max-width: 991px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 18px;
  }

  .booking-card {
    margin-top: 18px;
  }

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

@media only screen and (max-width: 767px) {
  .topbar-actions,
  .hero-points,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar-brand {
    font-size: 24px;
  }

  .hero-copy {
    padding-top: 10px;
  }

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

  .highlights,
  .schedule-section,
  .visual-section,
  .content-section,
  .faq-section {
    padding: 18px 0 42px;
  }

  .feature-card,
  .route-card,
  .address-card,
  .content-card,
  .faq-card,
  .booking-card {
    padding: 22px;
    border-radius: 22px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  #fb-root,
  .fb_dialog,
  .fb-customerchat {
    display: none !important;
  }

  .fb-customerchat-mobile {
    display: block;
  }

  .site-footer {
    padding-bottom: 150px;
  }
}
