:root {
  --bg: #F8FAFC;
  --text: #0F172A;
  --muted: #64748B;
  --light-muted: #94A3B8;
  --brand: #C8102E;
  --brand-2: #A50E24;
  --card: #FFFFFF;
  --accent: #E6F0FF;
  --accent-light: #F1F8FF;
  --success: #10B981;
  --warning: #F59E0B;
  --info: #3B82F6;
  --purple: #8B5CF6;
  --gradient-1: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-3: linear-gradient(135deg, var(--info) 0%, var(--purple) 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --ring: 0 0 0 3px rgba(15, 94, 221, 0.25);
  /* layout spacing scale */
  --space-section: 55px;
  --space-section-alt: 44px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  width: 100%;
  max-width: 100vw;
}

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

a {
  color: var(--brand-2);
  text-decoration: none
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 20 20px
}

/* Top Contact Bar */
.top-bar {
  background: var(--text);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-info {
  display: flex;
  gap: 25px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  color: var(--brand);
  font-size: 0.9rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--brand);
  text-decoration: none;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.top-link:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--brand);
  transform: translateY(-2px);
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

/* Enhanced Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 100px;
}

/* Enhanced Brand */
/* Remove underline from brand logo link */
.brand {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
  text-decoration: none !important;
}

.logo {
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 10px
}

/* Enhanced Main Navigation */
.main-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  /* background: var(--accent-light); */
  color: var(--brand);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-link.active {
  /* background: var(--accent); */
  color: var(--brand);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

.nav-link.btn {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.nav-link.btn:hover {
  background: var(--brand-2);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--gradient-1) !important;
}

.main-nav .btn {
  color: white;
  background: var(--brand-2);
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--brand-2);
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(15, 94, 221, 0.2);
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(0.95)
}

.btn-outline {
  background: white;
  color: var(--brand-2);
  border-color: var(--brand-2)
}

.btn-sm {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px
}

.btn-lg {
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 18px
}

.w-100 {
  width: 100%
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: var(--accent-light);
}

/* Check list styles */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.check-list li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1rem;
}

/* Hero Section - Swiper */
.hero {
  position: relative;
  padding-bottom: 32px;
}

.hero-swiper {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  height: 100%;
}

.hero .slide {
  position: absolute;
  inset: 0;
  background: #000 url() center/cover no-repeat;
  background-image: var(--bg);
  height: 100%;
  width: 100%;
}

.hero .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .40));
}

.hero .slide .slide-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 20px;
  color: white;
  z-index: 2;
}

.hero .slide h1 {
  font-size: 44px;
  margin: 0 0 8px;
  animation: slideInUp 1s ease-out;
}

.hero .slide h2 {
  font-size: 36px;
  margin: 0 0 8px;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero .slide p {
  opacity: .95;
  margin: 0 0 16px;
  font-size: 18px;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero .slide a {
  box-shadow: 0 8px 24px rgba(2, 6, 23, .4);
  animation: slideInUp 1s ease-out 0.6s both;
}

/* Hero Video Styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Ensure media slides handle video properly */
.media-slide {
  position: relative;
  overflow: hidden;
}

.media-slide .slide-inner {
  z-index: 3;
}

.media-slide::before {
  z-index: 2;
}

/* Hero Navigation Styling */
.hero-next,
.hero-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: -25px;
}

.hero-next:hover,
.hero-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hero-next::after,
.hero-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Hero Pagination */
.hero-pagination {
  bottom: 30px !important;
  text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 8px;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.3);
}

/* Slide animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-small {
  height: 38vh;
  min-height: 300px;
  background: #000 var(--bg) center/cover no-repeat;
  display: grid;
  place-items: center;
  color: white
}

.hero-small .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .25))
}

.hero-small .hero-inner {
  position: relative;
  text-align: center
}

.hero-small h1 {
  font-size: 40px;
  margin: 0
}

.hero-small p {
  opacity: .9
}

.search-card {
  margin-top: 30px
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--card);
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
  border: 1px solid #e2e8f0
}

.search-grid input,
.search-grid select,
.search-grid textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: white;
  outline: none
}

.search-grid input:focus,
.search-grid select:focus,
.search-grid textarea:focus {
  box-shadow: var(--ring);
  border-color: var(--brand-2)
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  /* reduced vertical padding for tighter layout */
  padding: 32px 0;
}

.feature {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, .05)
}

.feature .icon {
  font-size: 28px
}

.section {
  padding: var(--space-section) 0;
}

.section.alt {
  background: #eef2ff;
  padding: var(--space-section-alt) 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

/* Enhanced composite header layout */
.destinations-head {
  --gap: 34px;
  /* slightly reduced */
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--gap);
  align-items: start;
  /* bottom padding reduced from 30px to 20px */
  padding: 6px 0 20px;
  position: relative;
}

.destinations-head:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(200, 16, 46, 0) 60%);
  opacity: .25;
}

.destinations-head h2 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.4rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.destinations-head h2 .kicker {
  display: block;
  font-size: .55em;
  letter-spacing: .08em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.destinations-head .sh-desc {
  margin: 0;
  max-width: 64ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.destinations-head .sh-cta {
  display: flex;
  align-items: flex-start;
}

.arrow-link {
  --c: var(--brand-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--c);
  text-decoration: none;
  position: relative;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, .15);
  backdrop-filter: blur(3px);
  transition: .3s;
}

.arrow-link:hover {
  background: var(--gradient-1);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.arrow-link .arrow {
  display: inline-block;
  transition: transform .3s;
}

.arrow-link:hover .arrow {
  transform: translateX(4px);
}



.page-head h1 {
  margin-bottom: 8px
}

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

.route-card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, .05)
}

.route-card .tag {
  display: inline-block;
  background: var(--accent);
  color: var(--brand-2);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px
}

.route-card .pair {
  font-weight: 700
}

.prose {
  line-height: 1.7;
  color: var(--muted)
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0 26px;
}

.stats div {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  text-align: center
}

.stats strong {
  font-size: 28px;
  display: block;
  color: var(--brand)
}

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

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(2, 6, 23, .05)
}

.dest-card .thumb {
  aspect-ratio: 16/10;
  background: #000 center/cover no-repeat
}

.dest-card .body {
  padding: 12px
}

.dest-card h3 {
  margin: 0 0 6px
}

.dest-card p {
  margin: 0;
  color: var(--muted)
}

.dest-card .actions {
  padding: 12px;
  display: flex;
  gap: 8px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /* remove extra 40px vertical padding; rely on parent section */
  padding: 12px 0 8px;
}

.service-card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: 0 6px 20px -10px rgba(2, 6, 23, .18);
  transition: .35s;
}

.service-card:hover {
  box-shadow: 0 12px 36px -14px rgba(2, 6, 23, .4);
  transform: translateY(-5px);
}

/* Enhanced service grid visuals */
.service-grid.enhanced {
  --svc-gap: 16px;
}

.service-grid.enhanced .service-card {
  position: relative;
  overflow: hidden;
}

.service-grid.enhanced .service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 18%, rgba(200, 16, 46, .08), transparent 65%);
  opacity: 0;
  transition: .5s;
}

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

.service-grid.enhanced .service-card .svc-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--gradient-1);
  color: #fff;
  border-radius: 14px;
  margin: 4px 0 14px;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px -6px rgba(200, 16, 46, .5);
}

.service-grid.enhanced .service-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.service-grid.enhanced .service-card p {
  margin: 0 0 14px;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
}

.service-grid.enhanced .service-card a.btn {
  box-shadow: none;
  font-weight: 600;
}

.service-grid.enhanced .service-card a.btn-outline {
  background: #fff;
}

.service-grid.enhanced .service-card a.btn:hover {
  filter: none;
  transform: translateY(-2px);
}

/* Redesigned Amenities Section */
.amenities-section {
  --amenity-accent: var(--brand);
}

.amenities-grid-v2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}

.amenity-card {
  position: relative;
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: .35s;
  box-shadow: 0 4px 16px -8px rgba(2, 6, 23, .15);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px -18px rgba(2, 6, 23, .35);
}

.amenity-card.highlight {
  grid-row: span 2;
  background: linear-gradient(140deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .8)), radial-gradient(circle at 18% 22%, rgba(200, 16, 46, .12), transparent 70%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .6);
}


.amenity-card .icon-wrap {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gradient-1);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 8px 22px -10px rgba(200, 16, 46, .5);
}

.amenity-card h3 {
  margin: 8px 0 4px;
  font-size: 1rem;
}

.amenity-card p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--muted);
}

.amenity-card .mini-bullets {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

.amenity-card .mini-bullets li {
  background: var(--accent-light);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 14px;
  display: inline-block;
}

.amenity-card .tag-note {
  font-size: .6rem;
  letter-spacing: .05em;
  background: var(--accent-light);
  padding: 4px 8px;
  width: max-content;
  border-radius: 12px;
  margin-top: auto;
  font-weight: 600;
}

.amenity-card .foot-note {
  margin-top: auto;
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Amenities v3 layout */
.amenities-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: 350px 1fr;
  align-items: start;
}



.amenities-summary {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 26px 28px 30px;
  background: linear-gradient(145deg, #ffffff, #f6f9fc);
  box-shadow: 0 8px 32px -14px rgba(2, 6, 23, .18);
  position: relative;
  overflow: hidden;
}

.amenities-summary:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(200, 16, 46, .18), transparent 70%);
  mix-blend-mode: multiply;
  opacity: .55;
  pointer-events: none;
}

.amenities-summary .summary-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.amenities-summary .summary-lead {
  margin: 0 0 16px;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--muted);
}

.amenities-summary .summary-bullets {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: .78rem;
}

.amenities-summary .summary-bullets li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #fff;
  padding: 8px 10px 8px 12px;
  border-radius: 14px;
  box-shadow: 0 4px 14px -8px rgba(2, 6, 23, .12);
  font-weight: 500;
}

.amenities-summary .summary-bullets i {
  color: var(--brand);
  font-size: .8rem;
  margin-top: 2px;
}

.amenities-summary .summary-note {
  margin: 0;
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.amenities-grid-v3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.amenity-tile {
  position: relative;
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 18px 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  cursor: default;
  transition: .4s;
  box-shadow: 0 4px 18px -10px rgba(2, 6, 23, .16);
}

.amenity-tile:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.amenity-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px -18px rgba(2, 6, 23, .4);
}

.amenity-tile .tile-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-1);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 8px 22px -10px rgba(200, 16, 46, .5);
}

.amenity-tile h3 {
  margin: 6px 0 4px;
  font-size: .95rem;
}

.amenity-tile p {
  margin: 0;
  font-size: .75rem;
  line-height: 1.45;
  color: var(--muted);
}

.amenity-tile .details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px 14px;
  font-size: .63rem;
  line-height: 1.4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .95));
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: .45s;
  pointer-events: none;
  color: var(--text);
  font-weight: 500;
}

.amenity-tile:hover .details,
.amenity-tile:focus .details {
  opacity: 1;
  transform: translateY(0);
}



.cta-card {
  background: linear-gradient(135deg, #0F5EDD, #0A2540);
  color: #fff;
  padding: 26px 28px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  /* tightened vertical margins */
  margin: 36px auto 34px;
  box-shadow: 0 18px 48px -18px rgba(2, 6, 23, .55);
}

.cta-card p a {
  color: #fff;
  /* text-decoration: none; */
}

.table-wrap {
  overflow: auto;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(2, 6, 23, .05)
}

.table {
  width: 100%;
  border-collapse: collapse
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left
}

.table th {
  background: #f8fafc
}

.card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: 0 6px 20px -10px rgba(2, 6, 23, .18);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px
}

/* Contact form enhancements */
.contact-form {
  --input-bg: #fff;
  --input-border: #cbd5e1;
  --input-border-focus: var(--brand-2);
  --input-radius: 12px;
  --gap: 18px;
  position: relative;
}

.contact-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--gap);
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.contact-form .field-full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--input-border);
  border-radius: var(--input-radius);
  background: var(--input-bg);
  font: inherit;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: var(--ring);
}

/* ========= Generic Application / Careers Form ========= */
.application-form {
  --gap: 22px;
  background: var(--card);
  padding: 34px 36px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.application-form.compact {
  padding: 26px 28px 32px;
}

.application-grid {
  display: grid;
  gap: 22px 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.application-form label.form-label {
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.application-form textarea {
  resize: vertical;
  min-height: 140px;
  grid-column: 1/-1;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: var(--ring);
}

.application-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%), linear-gradient(to right, #cbd5e1, #cbd5e1);
  background-position: calc(100% - 22px) calc(50% + 3px), calc(100% - 16px) calc(50% + 3px), calc(100% - 48px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 60%;
  background-repeat: no-repeat;
}

.application-form .row-span-2 {
  grid-column: 1/-1;
}

.application-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.application-status {
  font-size: .75rem;
  color: var(--muted);
  min-height: 1rem;
}

.application-form [aria-invalid="true"] {
  border-color: var(--brand);
  background: #fff5f6;
}

.field-error {
  font-size: .6rem;
  color: var(--brand);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.required-indicator {
  color: var(--brand);
  margin-left: 3px;
}

.file-note {
  font-size: .65rem;
  color: var(--muted);
  margin-top: 6px;
}



.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap select {
  appearance: none;
  padding-right: 40px;
}

.contact-form .select-wrap:after {
  content: "\f107";
  /* FontAwesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  font-size: .9rem;
}

.contact-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.contact-form .checkbox input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.contact-form .hint {
  color: var(--light-muted);
  font-size: 11px;
  margin-top: -2px;
}

.contact-form .req {
  color: var(--brand);
  font-weight: 600;
}

.contact-form .actions {
  margin-top: 4px;
}

.contact-form button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.contact-form .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.contact-form.loading .spinner {
  display: inline-block;
}

.contact-form.loading .btn-label {
  opacity: .7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border-color: var(--brand);
  background: #fff5f6;
}

.contact-form .error-msg {
  color: var(--brand);
  font-size: 11px;
  margin-top: 2px;
}



.map-embed {
  height: 240px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e5e7eb, #cbd5e1);
  color: #334155
}

.table .btn {
  padding: 8px 10px;
  border-radius: 10px
}

.site-footer {
  margin-top: 48px;
  background: white;
  border-top: 1px solid #e5e7eb
}

/* ===== Redesigned Footer ===== */
.site-footer {
  background: #0A1B2E;
  color: #e2e8f0;
  position: relative;
  font-size: 15px;
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-top {
  padding: 60px 0 40px;
  background: radial-gradient(circle at 30% 40%, rgba(200, 16, 46, .08), transparent 60%);
}

.footer-layout {
  display: grid;
  gap: 50px 40px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
}

.footer-layout .f-brand {
  grid-column: span 2;
  max-width: 380px;
}


.f-brand .tagline {
  margin-top: 0;
  line-height: 1.5;
  color: #bcc3cf;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.contact-list i {
  color: var(--brand);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.s-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  transition: .3s;
  font-size: 15px;
}

.s-icon:hover {
  background: var(--gradient-1);
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .4);
}

.footer-layout h4 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: .5px;
  color: #fff;
}

.footer-layout .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-layout .list.compact {
  gap: 6px;
  max-width: 220px;
}

.more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--brand);
}

.more-link:hover {
  color: #fff;
}

.newsletter-wrap .mini-copy {
  margin: 0 0 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.newsletter-wrap .input-wrap {
  display: flex;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.newsletter-wrap input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
}

.newsletter-wrap input::placeholder {
  color: #94a3b8;
}

.newsletter-wrap button {
  margin: 4px;
  background: var(--brand);
  box-shadow: none;
}

.newsletter-wrap button:hover {
  background: var(--brand-2);
}

.newsletter-wrap .consent {
  margin: 6px 0 0;
  font-size: 11px;
  color: #8fa0b4;
}

.newsletter-wrap .consent a {
  color: var(--brand);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #13273c;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  border: 1px solid #20364e;
  transition: .3s;
}

.badge i {
  font-size: 20px;
}

.badge:hover {
  background: var(--gradient-1);
  color: #fff;
  border-color: var(--brand);
}

.pay-icons {
  display: flex;
  gap: 14px;
  font-size: 32px;
  color: #64748b;
  margin-top: 10px;
  padding: 0;
}

.pay-icons li {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
}

.pay-icons i {
  transition: .3s;
}

.pay-icons i:hover {
  color: #fff;
}

/* duplicate .sr-only removed */

/* Placeholder (disabled) nav/legal items */
.site-footer .placeholder {
  color: #64748b;
  opacity: .55;
  cursor: default;
  text-decoration: none;
}

.site-footer .placeholder:focus {
  outline: 2px dashed var(--brand-2);
  outline-offset: 2px;
}

/* Focus states */
.site-footer a:focus-visible,
.site-footer button:focus-visible,
.site-footer .badge:focus-visible,
.site-footer .more-link:focus-visible,
.site-footer .s-icon:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Address block */
.site-footer .contact-block {
  font-style: normal;
}

/* Newsletter status region */
#nl-status {
  min-height: 1.1rem;
  margin-top: 4px;
  font-size: 11px;
  color: #94a3b8;
}

/* ================= Help Center Optimized ================= */
.help-hero {
  padding: 80px 0 60px;
  background: linear-gradient(120deg, #0a1b2e, #112f52);
  text-align: center;
}

.help-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.help-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.help-search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.help-search {
  display: flex;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.help-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.2);
}

.help-search input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.help-search input::placeholder {
  color: var(--muted);
}

.help-search button {
  background: var(--brand);
  color: white;
  border: none;
  padding: 16px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.help-search button:hover {
  background: var(--brand-2);
}

/* Help Categories Section */
.help-cards-section {
  padding: 80px 0;
  background: white;
}

.help-cards-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.help-cards-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.help-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.help-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--brand);
}

.help-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.help-card-icon i {
  font-size: 2rem;
}

.help-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.help-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.help-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-card .card-link:hover {
  gap: 12px;
  color: var(--brand-2);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.1);
  border: 1px solid var(--brand);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--brand);
}

.faq-question[aria-expanded="true"] {
  color: var(--brand);
  background: #fef2f2;
}

.faq-question i {
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-content p {
  margin-bottom: 16px;
}

.faq-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.faq-content li {
  margin-bottom: 8px;
}

.faq-content strong {
  color: var(--text);
  font-weight: 600;
}

/* Support Section */
.support-section {
  padding: 80px 0;
  background: white;
}

.support-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.support-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.support-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.support-method {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.support-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--brand);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.support-icon i {
  font-size: 1.5rem;
}

.support-method h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.support-method p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.support-method .method-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid var(--brand);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.support-method .method-link:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
}

.emergency-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.3);
}

.emergency-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.emergency-card p {
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.6;
}

.emergency-number {
  margin-bottom: 16px;
}

.emergency-number a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.emergency-number a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.emergency-card small {
  opacity: 0.8;
  font-size: 0.9rem;
  display: block;
  margin-top: 16px;
}

/* Search Results Highlighting */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  color: var(--light-muted);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}



/* Charter Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 16px;
  z-index: 1200;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 25, .72);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  padding: 32px 34px 38px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  gap: 18px;
}



.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.modal-close {
  background: none;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--brand);
}

.charter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.charter-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.charter-form .form-row.small {
  font-size: .85rem;
}

.charter-form .form-row.span-2 {
  grid-column: 1 / -1;
}

.charter-form label {
  font-weight: 500;
  font-size: .9rem;
}

.charter-form input,
.charter-form select,
.charter-form textarea {
  border: 1px solid #d0d7e1;
  background: #f8fafc;
  padding: 11px 12px;
  border-radius: 10px;
  font: inherit;
  resize: vertical;
}

.charter-form input:focus,
.charter-form select:focus,
.charter-form textarea:focus {
  outline: 2px solid var(--brand);
  background: #fff;
}

.charter-form .checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .8rem;
  line-height: 1.3;
}

.charter-form .checkbox input {
  margin-top: 3px;
}

.charter-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.charter-form .form-actions .form-status {
  flex: 1 1 100%;
  margin: 4px 0 0;
  font-size: .85rem;
  min-height: 1.1rem;
}

.charter-form button .spinner {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin .7s linear infinite;
  opacity: 0;
  transform: translateY(2px);
}

.charter-form button.loading .spinner {
  opacity: 1;
}

.bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #081522;
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.legal-links a {
  color: #94a3b8;
}

.legal-links a:hover {
  color: #fff;
}

.copyright {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}



.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  padding: 28px 0
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-grid li {
  margin: 6px 0
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--card);
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .1)
}

.fineprint {
  color: #64748b;
  font-size: 13px
}



.service-grid {
  grid-template-columns: 1fr 1fr
}

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

.contact-grid {
  grid-template-columns: 1fr
}

.footer-grid {
  grid-template-columns: 1fr
}

.cta-card {
  flex-direction: column;
  text-align: center
}




.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-name {
  display: inline;
  margin-left: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-name strong {
  font-weight: 700;
}



/* Destinations Image Grid Section */
.destinations-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  /* padding: 20px 18px 22px; */
  box-shadow: 0 4px 18px -6px rgba(2, 6, 23, .12);
  transition: all 0.3s ease;
  height: 280px;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.destination-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

.destination-content {
  width: 100%;
}

.destination-content h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.destination-content h3 i {
  font-size: 1.2rem;
  color: var(--brand);
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--brand);
}

.explore-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateX(3px);
  text-decoration: none;
}

.explore-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.explore-btn:hover i {
  transform: translateX(3px);
}


/* Enhanced Icons Styling */
.icon i {
  font-size: 2rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Statistics Section */
.stats-section {
  padding: 80px 0;
  background: var(--gradient-1);
  color: white;
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-icon {
  margin-bottom: 20px;
}

.stat-icon i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Removed legacy services showcase styles (streamlined to enhanced .service-grid earlier) */

/* Testimonials Section - Swiper.js (light theme) */
.testimonials-section {
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

/* Blog Page */
.blog-hero {
  padding: 70px 0 30px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin: 0 0 12px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
}

.posts-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0 32px;
}

.posts-filters button {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: .875rem;
}

.posts-filters button.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.posts-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.post-card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: .3s;
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  text-decoration: none;
}

.post-card .thumb {
  position: relative;
  padding-top: 56%;
  background: #ddd center/cover no-repeat;
}

.post-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .05em;
  padding: 4px 8px;
  border-radius: 16px;
}

.post-card .body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post-card h3 {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
}

.post-card p {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.45;
}

.post-card .meta {
  margin-top: auto;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--light-muted);
  display: flex;
  justify-content: space-between;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .8rem;
  color: var(--brand-2);
}

.read-more:hover {
  text-decoration: none;
  color: var(--brand);
}

/* Booking Page */
.booking-hero {
  padding: 60px 0 20px;
  text-align: center;
}

.booking-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
}

.booking-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-form-wrap {
  max-width: 960px;
  margin: 0 auto 80px;
}

.booking-form {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: var(--card);
  padding: 38px 34px 44px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form label {
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
  min-height: 120px;
  grid-column: 1/-1;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: var(--brand-2);
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form .agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  line-height: 1.4;
}

.booking-form .agree input {
  margin-top: 3px;
}

.booking-form .actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.booking-status {
  font-size: .85rem;
  color: var(--muted);
}

.booking-form .error {
  border-color: var(--brand);
}

.booking-form .error-msg {
  color: var(--brand);
  font-size: .7rem;
  margin-top: 4px;
}

.badge-required {
  color: var(--brand);
  margin-left: 4px;
}



/* Modern Booking Form Styles */
.booking-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.booking-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  gap: 6px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-step.active .step-icon {
  background: var(--brand);
  color: white;
  transform: scale(1.05);
}

.progress-step.active .step-info {
  color: var(--brand);
}

.progress-step.completed .step-icon {
  background: var(--success);
  color: white;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
  background: #e2e8f0;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step-info {
  text-align: center;
  color: var(--muted);
  transition: color 0.3s ease;
}

.step-number {
  font-weight: 700;
  font-size: 11px;
  display: block;
}

.step-title {
  font-size: 12px;
  font-weight: 500;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-form-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 30px;
  border: 1px solid #e2e8f0;
}

.booking-form-modern {
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.step-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.step-header h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
}

.step-header p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.form-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.form-group-modern {
  position: relative;
}

.form-group-modern.span-2 {
  grid-column: 1 / -1;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input,
.select-wrapper select,
.textarea-wrapper textarea {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  background: white;
  transition: all 0.3s ease;
  outline: none;
  height: 50px;
}

.input-wrapper input:focus,
.select-wrapper select:focus,
.textarea-wrapper textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

.input-wrapper input:not(:placeholder-shown),
.input-wrapper input:focus {
  padding-top: 20px;
  padding-bottom: 8px;
}

.input-wrapper label,
.select-wrapper label,
.textarea-wrapper label {
  position: absolute;
  left: 45px;
  top: 15px;
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 4px;
}

.input-wrapper input:not(:placeholder-shown)+label,
.input-wrapper input:focus+label {
  top: 3px;
  font-size: 11px;
  color: var(--brand);
  font-weight: 600;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 14px;
  height: auto;
}

.textarea-wrapper textarea:not(:placeholder-shown)+label,
.textarea-wrapper textarea:focus+label {
  top: 3px;
  font-size: 11px;
  color: var(--brand);
  font-weight: 600;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
  z-index: 1;
}

.service-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.service-type-cards input[type="radio"] {
  display: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  text-align: center;
  min-height: 90px;
  justify-content: center;
  margin-bottom: 10px;
}

.service-card:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-type-cards input[type="radio"]:checked+.service-card {
  border-color: var(--brand);
  background: rgba(200, 16, 46, 0.04);
  color: var(--brand);
}

.service-card i {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.service-title {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}

.service-desc {
  font-size: 12px;
  color: var(--muted);
}

.return-date-group .form-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.step-navigation .btn {
  min-width: 120px;
  height: 45px;
  font-weight: 600;
}

.checkbox-modern {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-modern:hover {
  border-color: var(--brand);
  background: rgba(200, 16, 46, 0.02);
}

.checkbox-modern input[type="checkbox"] {
  display: none;
}

.checkmark-modern {
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-modern input[type="checkbox"]:checked+.checkmark-modern {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.checkbox-modern input[type="checkbox"]:checked+.checkmark-modern i {
  opacity: 1;
  transform: scale(1);
}

.checkmark-modern i {
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  font-size: 10px;
}

.checkbox-text {
  line-height: 1.4;
  font-size: 14px;
}

.review-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.review-card {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 16px;
  background: #f8fafc;
}

.review-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.review-content {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.review-item {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-item:last-child {
  margin-bottom: 0;
}

.form-disclaimer {
  text-align: center;
  margin-top: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.form-disclaimer p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.form-disclaimer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.card-header {
  padding: 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.card-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.card-content {
  padding: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.info-text {
  flex: 1;
}

.info-text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 14px;
}

.info-text span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-option:hover {
  border-color: var(--brand);
  background: rgba(200, 16, 46, 0.02);
  transform: translateY(-1px);
}

.contact-option.whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.02);
}

.contact-option i {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.contact-option.whatsapp i {
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
}

.contact-option div {
  flex: 1;
}

.contact-option strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1px;
  font-size: 13px;
}

.contact-option span {
  color: var(--muted);
  font-size: 12px;
}

.features-card .card-content {
  padding: 12px 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.feature-item span {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}



.testimonials-swiper-container {
  position: relative;
  padding: 0 60px;
  /* Adjust padding for navigation buttons */
  max-width: 100%;
  overflow: hidden;
}

.testimonials-swiper {
  overflow: hidden;
  padding: 10px 0 40px;
  width: 100%;
}

/* Ensure slides stretch same height */
.testimonials-swiper .swiper-slide {
  height: auto;
  width: auto;
  display: flex;
}

/* We use generic .card inside slides */
.testimonials-section .card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: .3s;
}

.testimonials-section .card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonials-section .card p {
  font-style: italic;
  color: var(--text);
}

.testimonials-section .card footer {
  font-size: .85rem;
  color: var(--muted);
}

.testimonial-content {
  flex: 1;
  margin-bottom: 30px;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #FCD34D;
  margin-right: 5px;
  font-size: 1.1rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

/* Remove unused dark avatar styling (not present now) */

.author-info h4 {
  margin: 0 0 5px 0;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Custom Swiper Navigation */
.testimonials-next,
.testimonials-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonials-next:hover,
.testimonials-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.testimonials-next::after,
.testimonials-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.testimonials-next {
  right: 10px;
}

.testimonials-prev {
  left: 10px;
}

/* Custom Swiper Pagination */
.testimonials-pagination {
  bottom: 10px !important;
  text-align: center;
}

.testimonials-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: .3s;
  margin: 0 5px;
}

.testimonials-section .swiper-pagination-bullet-active {
  background: var(--brand);
  transform: scale(1.25);
}



/* App Download Section */
.app-section {
  padding: 80px 0;
  background: var(--accent-light);
  margin: 60px 0;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-info p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.app-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.app-feature i {
  color: var(--info);
  font-size: 1.2rem;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--text);
  color: #fff;
  padding: 18px 25px;
  border-radius: 18px;
  box-shadow: 0 6px 20px -10px rgba(2, 6, 23, .2);
}

.dest-card:hover {
  box-shadow: 0 14px 40px -16px rgba(2, 6, 23, .45);
  transform: translateY(-6px);
}

.app-btn:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.app-btn i {
  font-size: 1.8rem;
}

.app-btn div span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.app-btn div strong {
  font-size: 1.1rem;
}

.app-image {
  text-align: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: var(--gradient-3);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.phone-mockup i {
  font-size: 4rem;
  color: white;
}



/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.whatsapp-button i {
  font-size: 2rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
}



/* Help Page Styles */
.help-hero {
  padding: 72px 0 40px;
  background: linear-gradient(120deg, #0a1b2e, #112f52);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.help-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(200, 16, 46, .18), transparent 60%);
}


.help-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.help-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Help Cards */
.help-cards-section {
  padding: 80px 0;
  background: var(--bg);
}

.help-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.help-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.help-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.help-card:hover .help-card-icon {
  background: var(--brand);
  transform: scale(1.1);
}

.help-card-icon i {
  font-size: 2rem;
  color: var(--brand);
  transition: color 0.3s ease;
}

.help-card:hover .help-card-icon i {
  color: white;
}

.help-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.help-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.help-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.help-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-category h2 i {
  color: var(--brand);
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--accent-light);
  color: var(--brand);
}

.faq-question i {
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg);
}

.faq-answer p,
.faq-answer ul {
  padding: 0 30px 24px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 50px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer a {
  color: var(--brand);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Contact Support Section */
.contact-support-section {
  padding: 80px 0;
  background: var(--accent-light);
}

.support-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.support-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.support-info p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.support-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon i {
  font-size: 1.5rem;
  color: var(--brand);
}

.support-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.support-details p {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.support-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.support-link:hover {
  text-decoration: underline;
}

.support-details small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Emergency Info */
.emergency-info {
  position: sticky;
  top: 20px;
}

.emergency-card {
  background: linear-gradient(135deg, var(--brand) 0%, #b71c37 100%);
  color: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.emergency-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.emergency-card p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.emergency-number {
  margin-bottom: 12px;
}

.emergency-number a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.emergency-number a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.emergency-card small {
  opacity: 0.8;
  font-size: 0.8rem;
}



/* Niagara Falls feature section */
.niagara-section {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.niagara-media {
  min-height: 430px;
}

.niagara-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(1.15);
}

.niagara-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, .55), rgba(2, 6, 23, .35));
}

.niagara-hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 430px;
}

.niagara-hero-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.niagara-hero-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #f1f5f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.niagara-tagline {
  margin: 0 0 2px;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #e2e8f0;
}

.niagara-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.niagara-video-toggle {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: .4s;
}

.niagara-video-toggle:hover {
  background: rgba(255, 255, 255, .24);
  transform: translateY(-3px);
}

.niagara-info {
  padding: 44px 0 54px;
}

.niagara-info-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.niagara-sub {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.niagara-highlights.card,
.niagara-tips.card,
.niagara-facts.card {
  background: #fff;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.niagara-highlights-list,
.niagara-tips-list,
.niagara-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .8rem;
  line-height: 1.4;
}

.niagara-highlights-list li,
.niagara-tips-list li,
.niagara-facts-list li {
  padding: 8px 10px;
  background: var(--accent-light);
  border-radius: 12px;
  font-weight: 500;
  color: var(--text);
}

.niagara-facts-list li {
  background: #f1f5f9;
}

.niagara-note {
  margin: 14px 0 0;
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.niagara-section .btn.btn-lg {
  box-shadow: 0 10px 32px -10px rgba(0, 0, 0, .5);
}

.niagara-section .btn.btn-lg.btn-outline {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

.niagara-section .btn.btn-lg.btn-outline:hover {
  background: #fff;
  color: var(--brand-2);
}



/* End Niagara feature */

/* ===== DESTINATION PAGE MODERN DESIGN ===== */

/* Loading and Error States */
.loading-overlay,
.error-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg) 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-content,
.error-content {
  text-align: center;
  max-width: 400px;
  padding: 40px;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--accent);
  border-top: 4px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.error-icon {
  font-size: 4rem;
  color: var(--warning);
  margin-bottom: 20px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Hero Section - New Design */
.destination-hero-new {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.7) 100%);
}

.hero-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: white;
  text-decoration: none;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: white;
  font-weight: 500;
}

.hero-text-content {
  max-width: 600px;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 30px;
  line-height: 1.5;
}

.hero-action-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-action-buttons .btn {
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-action-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.destination-stats {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.stat-content {
  flex: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* Main Content Layout */
.destination-main-content {
  padding: 60px 0;
  background: #fafbfc;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: start;
}

.content-primary {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header h2 i {
  color: var(--brand);
  font-size: 1.5rem;
}

.section-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

/* Sidebar Styling */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  padding: 20px;
}

.card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-content {
  padding: 25px;
}

/* Booking Card Specific */
.booking-card .card-content {
  text-align: center;
}

.booking-text {
  margin-bottom: 20px;
  color: var(--muted);
}

.btn-block {
  width: 100%;
  margin-bottom: 12px;
}

/* Routes List */
.routes-modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.routes-modern-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.routes-modern-list li:last-child {
  border-bottom: none;
}

.routes-modern-list li::before {
  content: "🚌";
  font-size: 1.2rem;
}

/* CTA Section */
.destination-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
}

.cta-card-modern {
  background: white;
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 2rem;
}

.cta-card-modern h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.cta-card-modern p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-item i {
  color: var(--brand);
  font-size: 1.1rem;
}

/* Skeleton Loading States */
.content-skeleton {
  animation: pulse 2s infinite;
}

.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  border-radius: 4px;
  margin-bottom: 12px;
}

.skeleton-line.short {
  width: 60%;
}

.skeleton-image {
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  border-radius: 12px;
  margin-bottom: 16px;
}

.skeleton-content {
  padding: 16px;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* ===== RESPONSIVE DESIGN - MEDIA QUERIES ===== */

/* Min-width queries first */
@media (min-width: 960px) {
  .brand-logo {
    height: 130px;
  }

  .brand-name {
    font-size: 1rem;
    white-space: nowrap;
    font-weight: 700;
  }

  .brand-name strong {
    font-weight: 700;
  }
}

/* Max-width queries - organized from largest to smallest */

/* Large screens and tablets - 1024px */
@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .booking-sidebar {
    order: -1;
  }

  .sidebar-card:not(:first-child) {
    display: none;
  }

  .top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .main-nav {
    display: flex;
    gap: 1px;
    align-items: center;
  }

  .contact-info {
    gap: 15px;
  }

  .top-links {
    gap: 15px;
  }
}

/* Medium screens - 1000px */
@media (max-width: 1000px) {
  .destinations-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .destinations-head .sh-cta {
    order: 3;
  }

  .destinations-head .sh-desc {
    order: 2;
  }

  .destinations-head:after {
    display: none;
  }

  .amenities-layout {
    grid-template-columns: 1fr;
  }
}

/* Tablets - 992px */
@media (max-width: 992px) {
  .destinations-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .destination-card {
    height: 250px;
  }
}

/* Small tablets - 960px */
@media (max-width: 960px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-sidebar {
    position: static;
    order: -1;
  }

  .hero-main-title {
    font-size: 2.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-card-modern {
    padding: 40px 30px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .help-hero h1 {
    font-size: 2.5rem;
  }

  .help-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }

  .help-card {
    padding: 30px 20px;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-methods {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer p,
  .faq-answer ul {
    padding: 0 20px 20px;
  }

  .main-nav {
    display: none;
    position: absolute;
    right: 16px;
    top: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
    box-shadow: 0 18px 48px -18px rgba(2, 6, 23, .55);
    min-width: 220px;
    z-index: 1000;
    flex-direction: column;
    gap: 8px;
  }

  .main-nav.mobile-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    background-color: var(--accent-light);
  }

  .main-nav .btn.btn-primary {
    margin-top: 8px;
    text-align: center;
    background: var(--brand);
    color: white;
    white-space: nowrap;
  }

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

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

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

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

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

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

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

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

  .cta-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Medium screens - 900px */
@media (max-width: 900px) {
  .footer-layout .f-brand {
    grid-column: span 1;
  }
}

/* Small screens - 800px */
@media (max-width: 800px) {
  .amenity-card.highlight {
    grid-row: auto;
  }
}

/* Small screens - 780px */
@media (max-width: 780px) {
  .niagara-hero {
    min-height: 380px;
  }

  .niagara-hero-inner {
    max-width: 100%;
  }
}

/* Mobile landscape - 768px */
@media (max-width: 768px) {
  .destinations-image-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .destination-card {
    height: 220px;
  }

  .section.alt .section-head h2 {
    font-size: 2rem;
  }

  .destination-content h3 {
    font-size: 1.3rem;
  }

  .destination-overlay {
    padding: 20px;
  }

  .booking-form-wrapper {
    padding: 20px;
  }

  .form-grid-modern {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-type-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .review-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-navigation {
    flex-direction: column;
    gap: 12px;
  }

  .step-navigation .btn {
    width: 100%;
    margin: 0;
  }

  .booking-progress {
    margin-bottom: 20px;
  }

  .step-info {
    display: none;
  }

  .booking-progress::before {
    left: 20%;
    right: 20%;
  }

  .step-header h2 {
    font-size: 20px;
  }

  .step-header p {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .testimonials-swiper-container {
    padding: 0 20px;
  }

  .testimonials-next,
  .testimonials-prev {
    width: 40px;
    height: 40px;
  }

  .testimonials-next::after,
  .testimonials-prev::after {
    font-size: 14px;
  }

  .app-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .app-info h2 {
    font-size: 2rem;
  }

  .app-features {
    justify-content: center;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
  }

  .phone-mockup i {
    font-size: 3rem;
  }

  .top-bar {
    display: none;
  }

  .nav {
    height: 70px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    color: var(--text);
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .nav-toggle:hover {
    background: var(--accent-light);
    color: var(--brand);
  }

  .brand {
    font-size: 1rem;
  }

  .brand-name {
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 700;
  }

  .brand-name strong {
    font-weight: 700;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button i {
    font-size: 1.6rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Small mobile - 680px */
@media (max-width: 680px) {
  .charter-form {
    grid-template-columns: 1fr;
  }

  .charter-form .form-row.span-2 {
    grid-column: auto;
  }
}

/* Mobile portrait - 640px */
@media (max-width: 640px) {
  .application-form {
    padding: 26px 24px 34px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    padding: 26px 22px 32px;
    border-radius: 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-layout .f-brand {
    grid-column: 1 / -1;
  }
}

/* Small mobile - 600px */
@media (max-width: 600px) {
  .destinations-head h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .arrow-link {
    padding: 10px 14px;
  }

  .amenity-tile {
    padding: 16px 16px 60px;
  }

  .amenities-summary {
    padding: 22px 22px 26px;
  }

  .booking-form {
    padding: 26px 22px 34px;
  }
}

/* Mobile - 520px */
@media (max-width: 520px) {
  .destination-hero-new {
    height: 60vh;
    min-height: 400px;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-action-buttons {
    flex-direction: column;
  }

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

  .stat-card {
    padding: 16px;
  }

  .content-card {
    padding: 30px 20px;
  }

  .cta-card-modern {
    padding: 30px 20px;
  }

  .cta-card-modern h2 {
    font-size: 1.8rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 16px;
  }

  .help-hero {
    padding: 60px 0 40px;
  }

  .help-hero h1 {
    font-size: 2rem;
  }

  .help-hero .hero-subtitle {
    font-size: 1rem;
  }

  .help-cards-section {
    padding: 60px 0;
  }

  .help-card {
    padding: 24px 16px;
  }

  .help-card-icon {
    width: 60px;
    height: 60px;
  }

  .help-card-icon i {
    font-size: 1.5rem;
  }

  .support-method {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .support-icon {
    width: 50px;
    height: 50px;
  }

  .emergency-card {
    padding: 20px;
  }

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

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

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

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

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

  .mobile-nav-dropdown {
    right: 8px;
    min-width: calc(100vw - 32px);
    max-width: 280px;
  }

  .site-header .container {
    padding: 0 16px;
  }

  .nav-toggle {
    padding: 6px;
    font-size: 20px;
  }

  .main-nav .btn.btn-primary {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .hero-small h1 {
    font-size: 28px;
  }

  .hero-small {
    min-height: 250px;
    height: 30vh;
  }

  .hero-small .hero-inner {
    padding: 0 16px;
  }

  .hero-small p {
    font-size: 0.9rem;
    margin: 12px 0;
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .container {
    padding: 0 16px !important;
  }

  .section {
    padding: 40px 0;
  }

  .brand-logo {
    height: 70px;
    width: auto;
    display: block;
  }

  .amenities-section {
    margin: 0px 10px;
  }

  .niagara-video-toggle {
    width: 48px;
    height: 48px;
  }

  .niagara-hero-inner h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .niagara-info {
    margin: 0px 10px;
  }
}

/* Small mobile - 480px */
@media (max-width: 480px) {
  .service-type-cards {
    grid-template-columns: 1fr;
  }

  .booking-container {
    gap: 15px;
  }

  .booking-form-wrapper {
    padding: 16px;
  }

  .input-wrapper input,
  .select-wrapper select {
    height: 48px;
    padding: 12px 12px 12px 40px;
  }

  .input-icon {
    left: 12px;
    font-size: 14px;
  }

  .input-wrapper label,
  .select-wrapper label {
    left: 40px;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

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

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .niagara-video {
    animation: none;
  }

  .niagara-video-toggle:hover {
    transform: none;
  }
}