/* ======================================================
   ANDAMAN WIZARD - LUXURY WORLD-CLASS TRAVEL PORTAL
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Official Brand Colors Extracted from Logo */
  --brand-sky: #58B6EC;
  --brand-sky-hover: #3AA3E3;
  --brand-navy: #3E6C96;
  --dark-navy: #19273D;
  --navy-darker: #111C2E;

  --bg-light: #F4F8FC;
  --bg-gray: #F8FAFC;
  --white: #FFFFFF;
  --text-dark: #19273D;
  --text-muted: #5C708A;
  --border-color: #DDE7F0;
  --border-subtle: #E8F0F7;

  --success-green: #10B981;
  --warning-amber: #F59E0B;

  /* Premium Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(25, 39, 61, 0.05);
  --shadow-md: 0 8px 24px rgba(25, 39, 61, 0.08);
  --shadow-lg: 0 20px 45px rgba(25, 39, 61, 0.14);

  /* Clean Professional Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  width: 100%;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ========== UTILITY CLASSES ========== */
.text-navy {
  color: #19273D !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.80) !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.70) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.50) !important;
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.10) !important;
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.20) !important;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-650 {
  max-width: 650px;
}

.max-w-700 {
  max-width: 700px;
}

.max-w-850 {
  max-width: 850px;
}

.max-w-1000 {
  max-width: 1000px;
}

.letter-spacing-1 {
  letter-spacing: 0.08em;
}

.leading-relaxed {
  line-height: 1.7;
}

.shadow-xs {
  box-shadow: 0 1px 4px rgba(25, 39, 61, 0.04);
}

.cursor-pointer {
  cursor: pointer;
}

/* Form Control Custom (for tab search widgets) */
.form-control-custom {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-weight: 600;
  color: var(--dark-navy);
  font-size: 0.92rem;
  width: 100%;
  transition: all 0.2s ease;
}

.form-control-custom:focus {
  background: var(--white);
  border-color: var(--brand-sky);
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 182, 236, 0.15);
}

/* Toast Notification Styling */
.glass-dark-card {
  background: rgba(25, 39, 61, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.35s ease-out forwards;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-navy);
  background: #EBF5FC;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #D4E8F8;
  margin-bottom: 10px;
}

.section-main-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .section-main-title {
    font-size: 1.55rem;
  }
}

.section-subtext {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Top Announcement Bar */
.top-bar-notice {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Navbar */
.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 12px 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-link-link {
  color: var(--dark-navy) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
}

.nav-link-link:hover,
.nav-link-link.active {
  color: var(--brand-sky) !important;
  background: #F0F7FD;
}

/* Buttons */
.btn-brand-primary {
  background-color: var(--brand-sky);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.btn-brand-primary:hover {
  background-color: var(--brand-sky-hover);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(88, 182, 236, 0.35);
  transform: translateY(-1px);
}

.btn-brand-navy {
  background-color: var(--brand-navy);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.btn-brand-navy:hover {
  background-color: var(--dark-navy);
  color: var(--white);
}

.btn-outline-navy {
  color: var(--brand-navy);
  border: 1px solid var(--brand-navy);
  background-color: transparent;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-outline-navy:hover {
  background-color: var(--brand-navy);
  color: var(--white);
}

/* Hero Video Background */
.hero-container {
  position: relative;
  overflow: hidden;
  padding: 65px 0 75px 0;
  background: var(--dark-navy);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 39, 61, 0.82);
  z-index: 1;
}

/* Swiper Custom Pagination & Slide Height */
.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: all 0.25s ease;
}

.swiper-pagination-bullet-active {
  background: var(--brand-sky) !important;
  opacity: 1;
  width: 26px;
  border-radius: var(--radius-sm);
}

.swiper-slide {
  height: auto;
}

.hero-content-box {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title-text {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .hero-title-text {
    font-size: 2rem;
  }
}

/* Search Engine Widget (Reference Design Matching) */
.search-widget-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.widget-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 2px solid #F0F4F8;
  padding-bottom: 10px;
}

.widget-tab-item {
  background: transparent;
  border: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.widget-tab-item.active {
  background-color: var(--dark-navy);
  color: var(--white);
}

/* Reference Ferry Search Layout Styles */
.ferry-search-mode-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #EAEFF5;
  margin-bottom: 16px;
}

.ferry-search-mode-tabs .form-check-input {
  cursor: pointer;
}

.ferry-search-mode-tabs .form-check-label {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1E293B;
}

.ferry-trip-row-item {
  padding: 16px 0;
  border-bottom: 1px dashed #E2E8F0;
}

.ferry-trip-row-item:last-child {
  border-bottom: none;
}

/* Flex Grid Layout for Pixel-Perfect Alignment */
.ferry-trip-row-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.trip-badge-col {
  flex: 0 0 55px;
}

.port-col {
  flex: 1 1 180px;
  min-width: 140px;
}

.swap-col {
  flex: 0 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-col {
  flex: 0 0 135px;
}

.pax-col {
  flex: 0 0 120px;
}

.border-left-divider {
  border-left: 1px solid #E2E8F0;
  padding-left: 12px;
}

.trip-label-badge {
  font-weight: 800;
  font-size: 0.82rem;
  color: #2563EB;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ferry-field-group {
  display: flex;
  flex-direction: column;
}

.ferry-field-label {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
}

.ferry-field-select,
.ferry-field-input {
  border: none;
  background: transparent;
  font-weight: 800;
  color: #0F172A;
  font-size: 0.92rem;
  padding: 2px 0;
  cursor: pointer;
  box-shadow: none !important;
}

.ferry-field-select:focus,
.ferry-field-input:focus {
  outline: none;
  box-shadow: none !important;
}

/* Tom Select overrides for Ferry Field Select */
.ts-wrapper.ferry-field-select,
.ts-wrapper.ferry-field-select.focus {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  height: auto;
}

.ts-wrapper.ferry-field-select .ts-control {
  border: none !important;
  background: transparent !important;
  padding: 4px 0 !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  font-size: 0.92rem !important;
  box-shadow: none !important;
  min-height: 30px !important;
  display: flex;
  align-items: center;
}

.ts-wrapper.ferry-field-select .ts-control>input,
.ts-wrapper.ferry-field-select .ts-control .item {
  font-weight: 800 !important;
  color: #0F172A !important;
}

.swap-trip-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #ffffff;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.swap-trip-btn:hover {
  background: #F1F5F9;
  color: #2563EB;
  border-color: #CBD5E1;
}

.counter-ctrl-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.counter-btn-minus,
.counter-btn-plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.counter-btn-minus {
  background: #E2E8F0;
  color: #475569;
}

.counter-btn-minus:hover {
  background: #CBD5E1;
}

.counter-btn-plus {
  background: #0F172A;
  color: #ffffff;
}

.counter-btn-plus:hover {
  background: #0F172A;
}

.counter-val-display {
  font-weight: 800;
  font-size: 0.92rem;
  color: #0F172A;
  min-width: 14px;
  text-align: center;
}

.btn-add-trip-pill {
  border: 2px solid #0F172A;
  background: #ffffff;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-trip-pill:hover {
  background: #FFFBEB;
  border-color: #0F172A;
}

.btn-ferry-search-submit {
  background: #0F172A;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 25, 62, 0.305);
}

.btn-ferry-search-submit:hover {
  background: #0F172A;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #0F172A;
}

/* --- RESPONSIVE MEDIA QUERIES FOR FERRY SEARCH ENGINE --- */
@media (max-width: 991px) {
  .ferry-trip-row-grid {
    flex-wrap: wrap;
    gap: 10px;
  }

  .port-col {
    flex: 1 1 42%;
  }

  .swap-col {
    flex: 0 0 auto;
  }

  .date-col,
  .pax-col {
    flex: 1 1 30%;
  }

  .border-left-divider {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .search-widget-card {
    padding: 14px;
    border-radius: 12px;
  }

  .ferry-search-mode-tabs {
    gap: 12px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .ferry-search-mode-tabs .form-check-label {
    font-size: 0.8rem;
  }

  .ferry-trip-row-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .trip-badge-col {
    flex: 1 1 100%;
    margin-bottom: 2px;
  }

  .port-col {
    flex: 1 1 40%;
    min-width: 0;
  }

  .swap-col {
    flex: 0 0 auto;
  }

  .date-col {
    flex: 1 1 100%;
    border-top: 1px solid #F1F5F9;
    padding-top: 6px;
  }

  .pax-col {
    flex: 1 1 48%;
  }

  .ferry-trip-row-item {
    padding: 12px 0;
  }

  .trip-label-badge {
    font-size: 0.75rem;
    margin-bottom: 4px;
    display: inline-block;
  }

  .ferry-field-label {
    font-size: 0.68rem;
  }

  .ferry-field-select,
  .ferry-field-input {
    font-size: 0.85rem;
  }

  .swap-trip-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .counter-btn-minus,
  .counter-btn-plus {
    width: 26px;
    height: 26px;
    font-size: 0.82rem;
  }

  .counter-val-display {
    font-size: 0.88rem;
    min-width: 14px;
  }

  .btn-add-trip-pill {
    width: 100%;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .btn-ferry-search-submit {
    width: 100%;
    text-align: center;
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.input-custom {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-weight: 600;
  color: var(--dark-navy);
  font-size: 0.92rem;
  width: 100%;
  transition: all 0.2s ease;
}

.input-custom:focus {
  background: var(--white);
  border-color: var(--brand-sky);
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 182, 236, 0.15);
}

/* Trust Value Bar */
.trust-value-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

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

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #E8F4FC;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Adventigo-Style 4 Category Cards Below Hero */
.adventigo-service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--dark-navy);
  cursor: pointer;
}

.adventigo-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-sky);
}

.adventigo-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.adventigo-service-card:hover .adventigo-service-img {
  transform: scale(1.05);
}

.adventigo-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 39, 61, 0.1) 20%, rgba(25, 39, 61, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
}

/* Route Cards */
.ferry-route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.ferry-route-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-sky);
}

.ferry-img-header {
  height: 175px;
  overflow: hidden;
  position: relative;
}

.ferry-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2x2 Feature Offer Grid Cards */
.offer-grid-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 310px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--dark-navy);
  cursor: pointer;
}

.offer-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-sky);
}

.offer-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-grid-card:hover .offer-grid-img {
  transform: scale(1.05);
}

.offer-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 39, 61, 0.15) 20%, rgba(25, 39, 61, 0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
}

.offer-top-badge {
  align-self: flex-start;
  background-color: var(--brand-sky);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Operator Cards */
.operator-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

/* Step Circle */
.step-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(88, 182, 236, 0);
  border: 1px solid var(--brand-navy);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px auto;
}

/* Destination Cards */
.dest-item-card {
  position: relative;
  height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.dest-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dest-item-card:hover img {
  transform: scale(1.05);
}

.dest-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(25, 39, 61, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--white);
}

/* Feature Banner / Why Choose Andaman Wizards */
.blue-feature-banner {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--brand-sky);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.why-choose-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(88, 182, 236, 0.15);
  border: 1px solid rgba(88, 182, 236, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-sky);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.why-choose-title {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-choose-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Review Cards */
.review-card-pro {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-pro p {
  color: #19273D !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  line-height: 1.6;
}

.review-card-pro h6 {
  color: #19273D !important;
  font-weight: 800;
  font-size: 1rem;
}

.review-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #F0F6FC !important;
  color: #19273D !important;
  border: 1px solid #D2E4F5 !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  padding: 6px 12px !important;
  border-radius: var(--radius-sm) !important;
  margin-top: 10px;
}

.review-verified-badge {
  background-color: #ECFDF5 !important;
  color: #059669 !important;
  border: 1px solid #A7F3D0 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  padding: 4px 10px !important;
  border-radius: var(--radius-sm) !important;
}

/* Accordion FAQ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-navy);
  box-shadow: none !important;
  padding: 16px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #F0F7FD;
  color: var(--brand-navy);
}

/* Floating Actions */
.floating-btn-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-action-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  border: none;
  text-decoration: none;
}

.float-action-btn:hover {
  transform: scale(1.05);
  color: var(--white);
}

.float-wa {
  background: #25D366;
}

.float-call {
  background: var(--brand-navy);
}

.float-top {
  background: var(--dark-navy);
  opacity: 0;
  pointer-events: none;
}

.float-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Footer */
footer {
  background-color: var(--dark-navy);
  color: rgba(255, 255, 255, 0.78);
}

footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--brand-sky);
}

/* Responsive Mobile & Tablet Adjustments */
@media (max-width: 991px) {
  .hero-title-text {
    font-size: 2.3rem;
  }

  .section-main-title {
    font-size: 1.5rem;
  }

  .blue-feature-banner {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 45px 0 55px 0;
  }

  .hero-title-text {
    font-size: 1.85rem;
  }

  .search-widget-card {
    padding: 16px;
    border-radius: var(--radius-sm);
  }

  .widget-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .widget-tabs::-webkit-scrollbar {
    display: none;
  }

  .widget-tab-item {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .offer-grid-card {
    height: 280px;
  }

  .offer-grid-card h3 {
    font-size: 1.25rem;
  }

  .floating-btn-wrap {
    bottom: 16px;
    right: 16px;
  }

  .float-action-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .top-bar-notice {
    font-size: 0.75rem;
  }

  .hero-title-text {
    font-size: 1.6rem;
  }

  .section-main-title {
    font-size: 1.35rem;
  }

  .review-card-pro,
  .why-choose-card {
    padding: 18px;
  }
}

/* Activity Listing Cards */
.activity-card-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.activity-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Sticky Booking Sidebar Column */
.sticky-sidebar-col {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 90px !important;
  z-index: 100 !important;
  align-self: flex-start !important;
}

.sticky-booking-sidebar {
  width: 100%;
}

@media (max-width: 991px) {
  .sticky-sidebar-col {
    position: static !important;
    top: auto !important;
    align-self: stretch !important;
    margin-top: 20px !important;
  }
}

/* Mobile Sticky Bottom Booking Bar */
.mobile-sticky-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 12px 0;
  z-index: 998;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

/* Only push floating buttons up on pages with mobile bottom bar */
body:has(.mobile-sticky-booking-bar) .floating-btn-wrap {
  bottom: 75px !important;
}

@media (min-width: 992px) {
  body:has(.mobile-sticky-booking-bar) .floating-btn-wrap {
    bottom: 24px !important;
  }
}

/* Small mobile top bar overflow */
@media (max-width: 400px) {
  .top-bar-notice {
    font-size: 0.7rem;
    padding: 6px 0;
  }

  .top-bar-notice .d-flex.align-items-center.gap-3:last-child {
    gap: 6px !important;
  }
}

/* Activity Details Thumbnail Responsiveness */
@media (max-width: 480px) {
  .thumbnail-strip img {
    width: calc(25% - 6px) !important;
    height: 48px !important;
  }
}

/* ========== FLATPICKR LUXURY CALENDAR THEME ========== */
.flatpickr-calendar {
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(25, 39, 61, 0.18) !important;
  border: 1px solid var(--border-color) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.flatpickr-months {
  background: var(--dark-navy) !important;
  padding: 6px 0 !important;
  border-radius: 8px 8px 0 0;
}

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #fff !important;
  fill: #fff !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--brand-sky) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
  color: var(--dark-navy) !important;
  background: #fff !important;
}

span.flatpickr-weekday {
  color: var(--brand-navy) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
}

.flatpickr-day {
  border-radius: 6px !important;
  font-weight: 600 !important;
  color: var(--dark-navy) !important;
  transition: all 0.15s ease !important;
}

.flatpickr-day:hover {
  background: #EBF5FC !important;
  border-color: var(--brand-sky) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--brand-sky) !important;
  border-color: var(--brand-sky) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(88, 182, 236, 0.35) !important;
}

.flatpickr-day.today {
  border-color: var(--brand-sky) !important;
  color: var(--brand-sky) !important;
}

.flatpickr-day.today:hover {
  background: var(--brand-sky) !important;
  color: #fff !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #ccc !important;
  background: transparent !important;
}

/* Flatpickr alt input styling */
input.flatpickr-input[readonly]+.form-control,
input.flatpickr-input[readonly]+.form-select,
input.flatpickr-input[readonly]+.input-custom {
  cursor: pointer;
}

.flatpickr-input.flatpickr-mobile {
  display: none !important;
}

/* Global Form Input Styling (No Border, Only Bottom Border) */
.form-select,
.form-control {
  border: none !important;
  border-bottom: 2px solid #E2E8F0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.form-control.ferry-field-input {
  border: none !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.form-select:focus,
.form-control:focus {
  border-bottom-color: var(--brand-sky) !important;
  outline: none !important;
}