/* ==========================================================================
   Happily Innovative Travels - Premium Redesigned Stylesheet
   Created with BEM methodology, responsive grid architecture, & premium gradients.
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* 2. Custom Properties (Design System) */
:root {
  /* Typography */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;

  /* Brand Colors */
  --color-primary: #E63946;
  /* Coral/Salmon Red */
  --color-primary-rgb: 230, 57, 70;
  --color-secondary: #FF7A00;
  /* Accent Orange */
  --color-deep-blue: #0D47A1;
  /* Deep Navy Blue */
  --color-deep-blue-rgb: 13, 71, 161;
  --color-sky-blue: #A2A5F5;
  /* Sky Blue Accent */
  --color-light-bg: #F4F6F9;
  /* Light Warm Slate */
  --color-white: #FFFFFC;
  /* Premium Soft White */
  --color-pure-white: #FFFFFF;
  --color-dark: #0F172A;
  /* Slate 900 for modern rich text */
  --color-gray: #475569;
  /* Slate 600 for body text readability */
  --color-light-gray: #E2E8F0;
  /* Slate 200 for borders & dividers */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-primary-hover: linear-gradient(135deg, #d22f3c 0%, #e66e00 100%);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(13, 71, 161, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -5px rgba(15, 23, 42, 0.08), 0 10px 20px -5px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 30px 60px -15px rgba(13, 71, 161, 0.15);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Base Resets & Layout */
body {
  font-family: var(--font-body);
  background-color: var(--color-light-bg);
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-deep-blue);
  letter-spacing: -0.5px;
}

a {
  color: var(--color-deep-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-sky-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Typography Helpers */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 4. Navigation (Header) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: var(--transition-smooth);
  padding: 10px 0;
  background-color: transparent;
  overflow: visible;
}

.header--scrolled,
.header--sticky {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  overflow: visible;
}

/* ── Header inner container ── */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

/* Logo link wrapper */
.header__logo-link {
  display: flex;
  align-items: center;
}

/* Desktop logo: normal flow, absolute-positioned for the scale effect */
.header__logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(1);
  height: 48px;
  width: auto;
  z-index: 10;
  transform-origin: left center;
  background-color: transparent;
  padding: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  border-top: none;
  box-shadow: none;
  box-sizing: content-box;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
  .header__inner {
    max-width: 100%;
  }

  .header__logo-link {
    position: relative;
    width: 140px;
    height: 48px;
  }

  .header--sticky .header__logo,
  .header--scrolled .header__logo {
    transform: translateY(calc(-50% + 8px)) scale(1.12);
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
}

/* ── Mobile: 3-column layout (toggler | logo | cta) ── */
@media (max-width: 991px) {
  .header__inner {
    max-width: 100%;
  }

  /* Logo centered via absolute positioning */
  .header__logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .header__logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: 46px; /* Slightly larger for better mobile visibility */
    width: auto;
  }

  .header--sticky .header__logo,
  .header--scrolled .header__logo {
    transform: none;
    filter: none;
    height: 46px;
  }
}

.header__nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-white) !important;
  margin-left: 28px;
  padding: 8px 0;
  position: relative;
  opacity: 0.85;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.header--scrolled .header__nav-link,
.header--sticky .header__nav-link {
  color: var(--color-dark) !important;
  opacity: 1;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-fast);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__nav-link:hover {
  opacity: 1;
}

.header--scrolled .header__nav-link:hover,
.header--scrolled .header__nav-link--active,
.header--sticky .header__nav-link:hover,
.header--sticky .header__nav-link--active {
  color: var(--color-primary) !important;
}

.header__cta-btn {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: 50px;
  margin-left: 28px;
  border: none;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
  transition: var(--transition-smooth);
}

.header__cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.header__toggler {
  border: none;
  padding: 6px 8px;
  border-radius: 8px;
  background: transparent !important;
  cursor: pointer;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.header__toggler:hover {
  background: rgba(255,255,255,0.12) !important;
}

/* On mobile, header is always white — use dark icon */
.header__toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.9%29' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 22px;
  height: 22px;
  display: block;
}

/* Desktop: can be white when header is transparent */
@media (min-width: 992px) {
  .header__toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

.header--scrolled .header__toggler-icon,
.header--sticky .header__toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Mobile-only Enquiry CTA button (right side of header) ── */
.header__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gradient-primary);
  color: #ffffff !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  text-decoration: none;
}

.header__mobile-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.38);
  color: #ffffff !important;
}

/* Button & CTA Redesign */
.btn--gradient {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--gradient:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.45);
}

.btn--gradient:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--outline {
  border: 2px solid rgba(230, 57, 70, 0.3);
  color: var(--color-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.btn--outline:hover {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.25);
}

/* Hero CTA Group */
.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.btn--hero {
  font-size: 15px;
  padding: 16px 36px;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.6s ease;
}

.btn--hero:hover::after {
  left: 160%;
}

.btn--hero:hover {
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.55), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.btn--hero-outline {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white) !important;
  transform: translateY(-3px);
}

/* 5. Cinematic Hero Section (Concierge Booking Layout) */
.hero {
  position: relative;
  min-height: 610px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 105px 0 75px;
  overflow: hidden;
}

/* Mobile-only form wrapper: hidden on desktop, shown via 991px media query */
.hero__mobile-form {
  display: none;
}

/* Background image slider rules */
.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.hero__slide--active {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero__slide {
    background-attachment: scroll;
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(8, 18, 35, 0.35) 0%,
      rgba(13, 71, 161, 0.18) 50%,
      rgba(10, 58, 134, 0.08) 100%);
  z-index: 1;
}

.hero__vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5, 10, 30, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Floating decorative orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  filter: blur(100px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  top: -80px;
  right: -50px;
}

.hero__orb--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.08) 0%, transparent 70%);
  bottom: -40px;
  left: -50px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(15px, -15px) scale(1.03);
  }
}

.hero__container {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 20;
  max-width: 720px;
}

.hero__content::before {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: -2000px; /* Extends all the way to the far left of the viewport */
  right: 40px;   /* Fades out before the right edge of the text content */
  z-index: -1;
  background: linear-gradient(to right,
      rgba(7, 15, 28, 0.9) 0%,
      rgba(7, 15, 28, 0.8) 70%,
      rgba(7, 15, 28, 0.45) 88%,
      rgba(7, 15, 28, 0) 100%);
  filter: blur(35px);
  pointer-events: none;
}

.hero__badge {
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge-star {
  color: #C5A880;
  margin-right: 6px;
  font-weight: bold;
}

.hero__title {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.35),
    0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero__title-sub {
  font-family: var(--font-headings);
  font-style: italic;
  color: #D8B67A;
  font-weight: 400;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero__tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 580px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

/* Minimalist Premium Feature Badges using Primary/Secondary Accent Colors */
.hero__cta-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero__cta-features {
    flex-direction: column;
    gap: 12px;
  }
}

.hero__cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero__cta-feature:hover {
  background: rgba(230, 57, 70, 0.08);
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.hero__cta-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.hero__cta-feature-icon svg {
  width: 14px;
  height: 14px;
}

.hero__cta-feature-text {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 13.5px;
  color: #ffffff;
  letter-spacing: -0.1px;
}

/* Trust Pill Row */
.hero__trust-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: #FFF;
  opacity: 0.95;
}

@media (max-width: 575px) {
  .hero__trust-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero__trust-divider {
    display: none;
  }
}

.hero__trust-pill {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust-icon {
  width: 16px;
  height: 16px;
  color: #C5A880;
}

.hero__trust-divider {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

/* Redesigned Luxury Concierge Booking Card on Right Side */
.hero-form-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 26px 28px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.hero-form-card:hover {
  box-shadow: 0 35px 100px rgba(15, 23, 42, 0.15);
}

@media (max-width: 575px) {
  .hero-form-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

.hero-form-card__badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: #C5A880;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-form-card__badge-diamond {
  color: #C5A880;
  font-size: 10px;
}

.hero-form-card__title {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.hero-form-card__desc {
  color: #64748B;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero-form-card__divider {
  height: 1px;
  background: #F1F5F9;
  margin: 4px 0 10px;
}

.hero-form-card__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
  margin-top: 16px;
}

.hero-form-card__footer-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-form-card__footer-icon {
  width: 12px;
  height: 12px;
  color: #10B981;
}

.hero-form-card__footer .divider-dot {
  opacity: 0.5;
}

/* Luxury Input Fields & Select Lists */
.enquiry-card__group {
  margin-bottom: 0px;
  position: relative;
}

.enquiry-card__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.enquiry-card__input-wrapper {
  position: relative;
  width: 100%;
}

.enquiry-card__input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.enquiry-card__input-icon svg {
  width: 15px;
  height: 15px;
}

.enquiry-card__input,
.enquiry-card__select {
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  color: #0F172A;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 0 12px;
  padding-left: 34px;
  outline: none;
  transition: var(--transition-fast);
}

.enquiry-card__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.enquiry-card__input:hover,
.enquiry-card__select:hover {
  border-color: #CBD5E1;
}

.enquiry-card__input::placeholder {
  color: #94A3B8;
}

.enquiry-card__input:focus,
.enquiry-card__select:focus {
  background: #FFFFFF;
  border-color: #0D47A1;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.08);
}

.enquiry-card__select option {
  background-color: #FFFFFF;
  color: #0F172A;
}

.enquiry-card__btn {
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
  height: 48px;
  width: 100%;
  border-radius: 6px;
  border: none;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.2);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.enquiry-card__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.enquiry-card__btn:hover::before {
  left: 160%;
}

.enquiry-card__btn:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
}

.enquiry-card__btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-arrow-svg {
  transition: transform 0.3s ease;
}

.enquiry-card__btn:hover .btn-arrow-svg {
  transform: translateX(4px);
}

/* SVG Shape Divider at Bottom of Hero (Matches screenshot exactly, no rotation needed) */
.hero__divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.hero__divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* 6. Section Layouts */
.section {
  padding: 100px 0;
  position: relative;
}

.section--light {
  background-color: var(--color-light-bg);
}

.section--white {
  background-color: var(--color-pure-white);
}

.section-header {
  margin-bottom: 60px;
}

.section-header__subtitle {
  color: #C5A880;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin-bottom: 12px;
  display: block;
}

.section-header__title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 18px;
}

.section-header__description {
  color: var(--color-gray);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* 7. Why Happily Travels (Credibility) Section */
.credibility-collage {
  position: relative;
  width: 100%;
  height: 480px;
  z-index: 2;
}

.credibility-img-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.credibility-img-wrapper--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 340px;
  border-radius: 24px;
  border: 4px solid #ffffff;
}

.credibility-img-wrapper--secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  border-radius: 20px;
  border: 6px solid #ffffff;
  z-index: 3;
}

.credibility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.credibility-img-wrapper:hover .credibility-img {
  transform: scale(1.05);
}

@media (max-width: 575px) {
  .credibility-collage {
    height: 360px;
  }

  .credibility-img-wrapper--main {
    height: 260px;
  }

  .credibility-img-wrapper--secondary {
    height: 180px;
  }
}

/* Decorative Gold Navigator Instrument SVG (Top-Left Background) */
.credibility-deco-svg {
  position: absolute;
  top: -45px;
  left: -45px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}


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

.feature-card {
  background-color: var(--color-pure-white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sky-blue);
}

.feature-card__icon-box {
  background: rgba(230, 57, 70, 0.08);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-card__icon-box {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.feature-card__icon-box svg {
  width: 22px;
  height: 22px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-deep-blue);
}

.feature-card__desc {
  font-size: 13px;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.5;
}

/* 8. Compact Klook-inspired Package Cards Slider */
.packages-slider-container {
  position: relative;
  width: 100%;
}

.packages-slider-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  width: 100%;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  padding: 10px 0 25px 0;
  /* padding for card shadows and hover lifting */
}

.packages-slider-viewport::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.packages-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.packages-slider-track .package-card {
  width: 280px;
  /* fixed width for slider cards to match layout scale */
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-bottom: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(230, 57, 70, 0.2);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-primary);
  padding: 0;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.2);
}

.slider-arrow--left {
  left: -22px;
}

.slider-arrow--right {
  right: -22px;
}

@media (max-width: 991px) {
  .slider-arrow {
    display: flex;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.15);
  }
  .slider-arrow svg {
    width: 16px;
    height: 16px;
  }
  .slider-arrow--left {
    left: 8px;
  }
  .slider-arrow--right {
    right: 8px;
  }
}

.package-card {
  background-color: var(--color-pure-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.package-card__img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.package-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.package-card:hover .package-card__img {
  transform: scale(1.08);
}

.package-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.2);
}

.package-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-card__duration svg {
  width: 12px;
  height: 12px;
  color: var(--color-secondary);
}

.package-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 42px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.package-card__title a {
  color: var(--color-deep-blue);
}

.package-card__title a:hover {
  color: var(--color-primary);
}

.package-card__highlights {
  font-size: 12.5px;
  color: var(--color-gray);
  margin-bottom: 15px;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.package-card__footer {
  margin-top: auto;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-card__price-wrapper {
  display: flex;
  flex-direction: column;
}

.package-card__price-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: -1px;
}

.package-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-headings);
}

.package-card__btn {
  background-color: var(--color-light-bg);
  color: var(--color-deep-blue);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  border: none;
  transition: var(--transition-fast);
}

.package-card:hover .package-card__btn {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* Section Header Flex layout (Klook-style) */
.section-header-flex {
  width: 100%;
}

.see-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
  white-space: nowrap;
}

.see-all-link:hover {
  color: var(--color-deep-blue);
  border-color: var(--color-primary);
}

@media (max-width: 767px) {
  .section-header-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  .see-all-link {
    padding-bottom: 2px;
  }
}

/* 9. Premium Hotel Cards (Booking.com style) Slider */
.hotels-slider-container {
  position: relative;
  width: 100%;
}

.hotels-slider-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  width: 100%;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  padding: 10px 0 25px 0;
  /* padding for card shadows and hover lifting */
}

.hotels-slider-viewport::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.hotels-slider-track {
  display: flex;
  gap: 24px;
  width: 100%;
}

.hotels-slider-track .hotel-card {
  width: calc((100% - 72px) / 3.25);
  /* Shows exactly 3 full cards + 4th card partially visible (0.25) */
  height: 565px;
  /* Locked identical height to ensure vertical alignment */
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1199px) {
  .hotels-slider-track .hotel-card {
    height: 585px;
  }
}

@media (max-width: 991px) {
  .hotels-slider-track {
    gap: 16px;
  }
  .hotels-slider-track .hotel-card {
    width: calc((100% - 16px) / 2);
    /* Exactly 2 cards per view on tablet */
    height: auto;
    min-height: 520px;
  }
  .hotel-card__content {
    padding: 16px 14px;
  }
  .hotel-card__name {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .hotel-card__desc {
    font-size: 12px;
    height: 54px;
    margin-bottom: 12px;
  }
  .hotel-card__amenities {
    display: none !important;
  }
  .hotel-card__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding-top: 14px;
  }
  .hotel-card__link {
    font-size: 10px;
    white-space: nowrap;
  }
  .hotel-card__btn {
    width: auto;
    text-align: center;
    padding: 6px 12px;
    font-size: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .hotels-slider-track {
    gap: 16px;
  }
  .hotels-slider-track .hotel-card {
    width: calc((100% - 16px) / 1.25);
    /* One visible, second partially visible */
    min-height: 480px;
  }
  .hotel-card__content {
    padding: 16px;
  }
  .hotel-card__name {
    font-size: 15px;
  }
  .hotel-card__location {
    font-size: 12px;
  }
  .hotel-card__desc {
    font-size: 12px;
    height: 54px;
  }
  .hotel-card__link {
    font-size: 11px;
  }
  .hotel-card__btn {
    padding: 7px 14px;
    font-size: 10.5px;
  }
}

@media (max-width: 575px) {
  .hotels-slider-track {
    gap: 12px;
  }
  .hotels-slider-track .hotel-card {
    width: calc((100% - 12px) / 1.25);
    /* One visible, second partially visible on small screen */
    min-height: 450px;
  }
  .hotel-card__content {
    padding: 14px 12px;
  }
  .hotel-card__name {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .hotel-card__location {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .hotel-card__desc {
    font-size: 11.5px;
    height: 48px;
    margin-bottom: 10px;
  }
  .hotel-card__footer {
    padding-top: 10px;
    gap: 4px;
  }
  .hotel-card__link {
    font-size: 10px;
  }
  .hotel-card__btn {
    padding: 6px 11px;
    font-size: 10px;
  }
}

.hotel-card {
  background-color: var(--color-pure-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.hotel-card__img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hotel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hotel-card:hover .hotel-card__img {
  transform: scale(1.06);
}

.hotel-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-gold);
  color: var(--color-dark);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.hotel-card__rating {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-card__rating svg {
  color: #FFC107;
  width: 13px;
  height: 13px;
}

.hotel-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-card__brand {
  font-size: 10px;
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hotel-card__location {
  font-size: 12px;
  color: var(--color-gray);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-card__location svg {
  width: 14px;
  height: 14px;
  color: var(--color-secondary);
}

.hotel-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.hotel-card__name a {
  color: var(--color-deep-blue);
}

.hotel-card__name a:hover {
  color: var(--color-primary);
}

.hotel-card__desc {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 18px;
  line-height: 1.5;
  height: 60px;
  overflow: hidden;
}

.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.hotel-card__amenity-tag {
  background-color: var(--color-light-bg);
  border: 1px solid var(--color-light-gray);
  font-size: 10.5px;
  color: var(--color-deep-blue);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}

.hotel-card__footer {
  margin-top: auto;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hotel-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-deep-blue);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hotel-card__link:hover {
  color: var(--color-primary);
}

.hotel-card__link svg {
  transition: var(--transition-fast);
}

.hotel-card__link:hover svg {
  transform: translateX(3px);
}

.hotel-card__btn {
  background-color: var(--color-light-bg);
  color: var(--color-deep-blue);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  border: none;
  transition: var(--transition-fast);
}

.hotel-card__btn:hover {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

.hotel-card:hover .hotel-card__btn {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* 10. Redesigned Visa Cards */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.visa-card {
  background-color: var(--color-pure-white);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.visa-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.visa-card__flag-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visa-card__flag {
  font-size: 2.25rem;
  line-height: 1;
}

.visa-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin: 0;
}

.visa-card__time-badge {
  background-color: rgba(230, 57, 70, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.visa-card__time-badge svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}

.visa-card__fee-box {
  background: var(--color-light-bg);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visa-card__fee-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-gray);
}

.visa-card__fee-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-headings);
}

.visa-card__section-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 6px;
}

.visa-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.visa-card__list-item {
  font-size: 12.5px;
  color: var(--color-gray);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.visa-card__list-item svg {
  color: var(--color-primary);
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.visa-card__list-item strong {
  color: var(--color-dark);
}

.visa-card__cta {
  margin-top: auto;
  width: 100%;
  background: var(--color-light-bg);
  border: 1px solid var(--color-light-gray);
  color: var(--color-deep-blue);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
}

.visa-card:hover .visa-card__cta {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
}

/* 11. Testimonials Cards */
.testimonial-card {
  background: var(--color-pure-white);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote {
  font-size: 14px;
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.65;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card__stars svg {
  color: #FFC107;
  width: 14px;
  height: 14px;
}

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

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-sky-blue);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 2px;
}

.testimonial-card__trip {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
}

/* 12. Sticky WhatsApp CTA */
.whatsapp-cta {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 1000;
  background-color: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.whatsapp-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta svg {
  width: 30px;
  height: 30px;
  fill: var(--color-white);
}

.whatsapp-cta__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* 13. Footer Section */
.footer {
  position: relative;
  background-color: var(--color-deep-blue);
  color: var(--color-white);
  padding: 95px 0 40px;
  font-size: 14px;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top: 3px solid #C5A880; /* Soft premium gold top border */
}

/* Subtle dotted world-map pattern on the right side */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url('../images/map-pattern.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 6px 12px;
  border-radius: 10px;
}

.footer__brand-desc {
  color: #CBD5E1; /* Slate 300 - Light gray body text */
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Premium circular social icons */
.footer__social-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__social-btn {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.footer__social-btn:hover {
  background-color: var(--color-primary);
  box-shadow: inset 0 0 0 1px var(--color-primary), 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px) scale(1.05);
  color: var(--color-white);
}

.footer__social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  position: relative;
  z-index: 2;
}

/* Typography Hierarchy */
.footer__title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-white);
  display: inline-block;
  letter-spacing: -0.2px;
}

/* Underline accent */
.footer__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #D8B67A 100%);
  margin-top: 12px;
  border-radius: 2px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: 14px;
}

/* Elegant Nav link animations */
.footer__nav-link {
  color: #CBD5E1; /* Slate 300 */
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #D8B67A;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer__nav-link:hover {
  color: var(--color-white);
}

.footer__nav-link:hover::after {
  width: 100%;
}

.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Premium contact section details */
.footer__contact-item {
  color: #CBD5E1;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.6;
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #D8B67A;
  transition: all 0.3s ease;
}

.footer__contact-item:hover .footer__contact-icon {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.footer__contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer__contact-text {
  padding-top: 4px;
}

/* Bottom Bar Redesign */
.footer__bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  font-size: 13px;
  color: #94A3B8; /* Slate 400 */
}

.footer__copyright {
  margin: 0;
}

.footer__bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer__bottom-link {
  color: #94A3B8;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer__bottom-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #D8B67A;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer__bottom-link:hover {
  color: var(--color-white);
}

.footer__bottom-link:hover::after {
  width: 100%;
}

/* 14. Responsive Grid & Scroller Adaptations */
@media (max-width: 1400px) {
  .hero__title {
    font-size: 3.5rem;
  }

  .row-5cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .row-5cols>*:last-child {
    display: none;
    /* Hide 5th card on slightly smaller screens */
  }
}

@media (max-width: 1199px) {
  .hero__title {
    font-size: 2.85rem;
  }

  .feature-grid {
    gap: 16px;
  }

  .row-5cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .row-5cols>*:last-child {
    display: block;
    /* Restore 5th card flow */
  }

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

@media (max-width: 991px) {
  .header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
    padding: 12px 0;
  }

  .header__nav-link {
    color: var(--color-dark) !important;
    margin-left: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-light-gray);
  }

  .header__cta-btn {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }

  /* ── Mobile Hero: Cinematic Full-Image, Text Bottom, Form Below ── */
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0; /* No gap — header is fixed+white, overlays top of slider */
    min-height: auto;
    overflow: visible;
    background: transparent;
  }

  /* Slider: full visible banner image on top */
  .hero__slider {
    position: relative;
    width: 100%;
    height: 58vh;
    min-height: 320px;
    max-height: 480px;
    flex-shrink: 0;
    z-index: 0;
  }

  .hero__slide {
    background-attachment: scroll;
    background-position: center 30%;
  }

  /* Deep gradient scrim — heavy at the bottom for readability */
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(8,18,35,0.05) 0%,
      rgba(8,18,35,0.15) 40%,
      rgba(8,18,35,0.75) 70%,
      rgba(8,18,35,1.00) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero__vignette {
    display: none;
  }

  .hero__orb {
    display: none !important;
  }

  .hero__content::before {
    display: none !important;
  }

  /* Hero text: absolutely positioned to sit at the bottom of the slider image */
  .hero__container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
    padding: 0;
    pointer-events: none;
  }

  /* Override bootstrap row — just a full-height flex column */
  .hero__container > .row {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
  }

  /* Left (text) col: pushed to bottom of image via flex */
  .hero__container > .row > div:first-child {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 28px;
    max-width: 100%;
    pointer-events: all;
  }

  /* Right (form) col: hidden inside the absolutely positioned container */
  .hero__container > .row > div:last-child {
    display: none;
  }

  /* Hero headline — big, white, bold */
  .hero__title {
    color: #ffffff !important;
    font-size: clamp(1.8rem, 7.5vw, 2.3rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7) !important;
  }

  .hero__title-sub {
    color: #D8B67A !important;
    font-style: italic;
  }

  /* Tagline: short, readable, slightly transparent white */
  .hero__tagline {
    color: rgba(255,255,255,0.88) !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    max-width: 100% !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5) !important;
  }

  /* Remove all pills and trust row */
  .hero__cta-features,
  .hero__trust-row {
    display: none !important;
  }

  /* Wave divider: shown at the bottom of the mobile hero — matches desktop */
  .hero__divider {
    display: block !important;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 5;
    overflow: hidden;
    line-height: 0;
  }

  .hero__divider svg {
    width: calc(100% + 1.3px);
    height: 40px;
    display: block;
  }

  /* Mobile form wrapper: visible only on mobile (hidden on desktop via below rule) */
  .hero__mobile-form {
    display: block;
    padding: 20px 16px 32px;
    background: #f8fafc;
  }

  .hero__mobile-form .hero-form-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid rgba(15,23,42,0.07) !important;
    box-shadow: 0 8px 30px rgba(13,71,161,0.10), 0 2px 8px rgba(0,0,0,0.05) !important;
    padding: 22px 20px !important;
  }

  .hero__mobile-form .hero-form-card__title {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .hero__mobile-form .hero-form-card__desc {
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* Form col inside hero__container is hidden on mobile */

  .enquiry-card {
    margin-top: 50px;
  }



  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .row-5cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .visa-grid {
    grid-template-columns: 1fr;
  }
  .visa-card {
    padding: 24px;
    border-radius: 20px;
  }
  .visa-card__header {
    margin-bottom: 16px;
  }
  .visa-card__flag {
    font-size: 1.8rem;
  }
  .visa-card__title {
    font-size: 17px;
  }
  .visa-card__time-badge {
    padding: 5px 10px;
    font-size: 10px;
  }
  .visa-card__fee-box {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 12px;
  }
  .visa-card__fee-label {
    font-size: 10px;
  }
  .visa-card__fee-amount {
    font-size: 16px;
  }
  .visa-card__section-title {
    margin-bottom: 8px;
    padding-bottom: 4px;
  }
  .visa-card__list {
    margin-bottom: 16px;
  }
  .visa-card__list-item {
    font-size: 11.5px;
    margin-bottom: 6px;
  }
  .visa-card p {
    font-size: 11.5px !important;
    margin-bottom: 16px !important;
  }
  .visa-card__cta {
    padding: 10px;
    font-size: 11px;
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }

  .section-header__title {
    font-size: 1.85rem;
  }



  /* Mobile Horizontal Scroll to replicate Klook/Booking app experience */
  .row-5cols,
  .visa-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 4px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .row-5cols::-webkit-scrollbar,
  .visa-grid::-webkit-scrollbar {
    display: none;
  }

  .row-5cols>*,
  .visa-grid>* {
    flex: 0 0 calc((100% - 16px) / 1.25) !important;
    scroll-snap-align: start;
  }
}

@media (max-width: 575px) {
  .row-5cols>*,
  .visa-grid>* {
    flex: 0 0 calc((100% - 12px) / 1.25) !important;
  }

  .row-5cols>*:last-child {
    display: block;
  }

  .footer {
    padding: 80px 0 30px;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
    margin-bottom: 30px;
  }

  .footer__social-list {
    justify-content: center;
  }

  .footer__title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer__bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
  }

  .footer__bottom-links {
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* 15. Background Subtle Map Patterns for Visual Consistency */
.section>.container {
  position: relative;
  z-index: 1;
}

.section--pattern-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/map-pattern.png');
  background-repeat: no-repeat;
  background-position: right -50px top -50px;
  background-size: 900px auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.section--pattern-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/map-pattern.png');
  background-repeat: no-repeat;
  background-position: right -30px center;
  background-size: 950px auto;
  opacity: 0.90;
  pointer-events: none;
  z-index: 0;
}

.section--pattern-5::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/map-pattern.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 950px auto;
  opacity: 0.88;
  pointer-events: none;
  z-index: 0;
}

/* 9b. Premium CTA Banner */
:root {
  --navy-deep: #1a2a6c;
  --navy: #1e3a8a;
  --navy-light: #2947a3;
  --gold: #e8b84b;
  --gold-light: #f3cc6e;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.85);
  --divider: rgba(255, 255, 255, 0.25);
}

.cta-banner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-light) 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 42, 108, 0.25);
  margin-top: 50px;
}

/* Gold map background pattern overlay */
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url('../images/map-pattern.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
}

/* ---------- Headline block ---------- */
.headline-block {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.headline-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--gold-light);
}

.headline-text {
  font-family: var(--font-headings);
  font-size: 21px;
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.headline-text .highlight {
  color: var(--gold-light);
  font-weight: 700;
}

/* ---------- Divider ---------- */
.divider {
  width: 1px;
  height: 64px;
  background: var(--divider);
  flex-shrink: 0;
}

/* ---------- Feature list ---------- */
.features {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 1;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold-light);
  fill: none;
}

.feature-text {
  color: var(--white);
}

.feature-title {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-desc {
  font-size: 12px;
  line-height: 1.35;
  color: var(--white-soft);
  font-weight: 400;
}

/* ---------- CTA block ---------- */
.cta-block {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.cta-button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.cta-button svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
}

.cta-tagline {
  font-size: 11.5px;
  color: var(--white-soft);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1399px) {
  .banner-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 26px 24px;
  }

  .divider {
    display: none;
  }

  .cta-block {
    margin-left: 0;
  }

  .features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cta-banner {
    border-radius: 0;
  }

  .banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 28px 20px;
  }

  .headline-block {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .headline-icon svg {
    width: 42px;
    height: 42px;
  }

  .headline-text {
    white-space: normal;
    font-size: 19px;
    text-align: center;
  }

  .features {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .feature {
    width: 100%;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--divider);
    white-space: normal;
  }

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

  .feature-desc {
    white-space: normal;
    max-width: none;
  }

  .feature-desc br {
    display: none;
  }

  .cta-block {
    width: 100%;
    gap: 10px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-button {
    transition: none;
  }
}

/* ==========================================================================
   14. Tour Packages Page Specific Styles
   ========================================================================== */

/* Inner Hero Section */
.inner-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(13, 71, 161, 0.45) 60%, rgba(15, 23, 42, 0.82) 100%);
  z-index: 1;
}

.inner-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 50%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.inner-hero__map-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../images/map-pattern.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: 2;
  pointer-events: none;
}

.inner-hero__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 2;
  pointer-events: none;
}

.inner-hero__container {
  position: relative;
  z-index: 3;
  padding-top: 50px;
}

.inner-hero__title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  color: #ffffff !important;
  text-shadow: none !important;
}

.inner-hero__subtitle {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #ffffff !important;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
  text-shadow: none !important;
}

.inner-hero__breadcrumb {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.inner-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.inner-hero__breadcrumb .breadcrumb-item a:hover {
  color: var(--color-primary);
}

.inner-hero__breadcrumb .breadcrumb-item.active {
  color: var(--color-white);
  font-weight: 700;
}

.inner-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Sticky Filter Bar */
.sticky-filter-bar {
  position: sticky;
  top: 76px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 71, 161, 0.08);
  padding: 16px 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.filter-bar__container {
  width: 100%;
}

.filter-bar__row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.filter-bar__group {
  flex: 1;
  min-width: 110px;
}

.filter-bar__group--search {
  flex: 1.6;
  min-width: 160px;
}

.filter-bar__group--button {
  flex: 0.8;
  min-width: 90px;
}

.filter-bar__input-wrapper {
  position: relative;
  width: 100%;
}

.filter-bar__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #94A3B8;
  pointer-events: none;
}

.filter-bar__input {
  width: 100%;
  height: 44px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0 16px 0 38px;
  font-size: 13px;
  color: #1E293B;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filter-bar__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

.filter-bar__select {
  width: 100%;
  height: 44px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 13px;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
}

.filter-bar__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

.btn--reset-filters {
  height: 44px;
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .sticky-filter-bar {
    position: relative;
    top: 0;
    padding: 16px 0;
    background: #ffffff;
  }
  .filter-bar__row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .filter-bar__group {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
  .filter-bar__group--search {
    flex: 1 1 100%;
  }
  .filter-bar__group--button {
    flex: 1 1 100%;
  }
}

/* Package Grid Filter Animations */
.package-grid-item {
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: scale(1);
}

.package-grid-item--hidden {
  display: none !important;
}

#no-packages-message {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Package Card Layout Updates */
.package-card__location {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.package-card__rating-box {
  font-size: 12px;
  color: #64748B;
}

.package-card__rating-star {
  color: #F59E0B;
}

.package-card__rating-score {
  font-weight: 700;
  color: #1E293B;
}

.package-card__rating-count {
  color: #94A3B8;
}

.btn--card-action {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--color-primary);
  background: transparent;
  transition: var(--transition-fast);
}

.btn--card-action:hover {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* Tour Theme Categories */
.theme-card {
  background: var(--color-pure-white);
  border-radius: 20px;
  padding: 24px 12px;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.theme-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.08);
}

.theme-card__icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.theme-card:hover .theme-card__icon-wrapper {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

.theme-card__icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.theme-card__title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-deep-blue);
  margin: 0;
}

/* FAQ Accordion Styling */
.faq-accordion__item {
  border: 1px solid var(--color-light-gray);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-accordion__item:last-of-type {
  border-bottom: 1px solid var(--color-light-gray);
  border-radius: 16px;
}

.faq-accordion__item:hover {
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-accordion__button {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-deep-blue);
  padding: 18px 24px;
  background-color: var(--color-pure-white);
  transition: var(--transition-fast);
  border: none;
  box-shadow: none !important;
}

.faq-accordion__button:not(.collapsed) {
  color: var(--color-primary);
  background-color: rgba(230, 57, 70, 0.02);
  border-bottom: 1px solid rgba(230, 57, 70, 0.06);
}

.faq-accordion__button::after {
  background-size: 12px;
  transition: transform 0.25s ease;
}

.faq-accordion__body {
  padding: 24px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-gray);
  background-color: var(--color-pure-white);
}

/* Premium Popup Enquiry Modal styles */
.enquiry-modal__content {
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35) !important;
  background: #ffffff;
}

.enquiry-modal__visual-panel {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.enquiry-modal__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.88) 0%, rgba(15, 23, 42, 0.94) 100%);
  z-index: 1;
}

.enquiry-modal__visual-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
}

.enquiry-modal__visual-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
  display: block;
}

.enquiry-modal__visual-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 23px;
  color: #ffffff !important;
  line-height: 1.35;
  margin-bottom: 12px;
}

.enquiry-modal__visual-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.enquiry-modal__visual-footer {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.enquiry-modal__visual-star {
  color: var(--color-secondary);
  font-size: 12px;
  margin-right: 4px;
}

.enquiry-modal__body-wrapper {
  padding: 40px 35px !important;
}

.modal-close-btn {
  box-shadow: none !important;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.modal-close-btn:hover {
  opacity: 1;
}

/* ==========================================================================
   15. Tour Package Detail Page Specific Styles
   ========================================================================== */

/* Rich Hero Section */
.detail-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
  padding-top: 76px; /* Offset for fixed header */
}

.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(13, 71, 161, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.detail-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.detail-hero__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 60%);
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.detail-hero__container {
  z-index: 3;
}

.detail-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-hero__breadcrumb .breadcrumb-item a:hover {
  color: var(--color-primary);
}

.detail-hero__breadcrumb .breadcrumb-item.active {
  color: var(--color-white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.detail-hero__badge {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

.detail-hero__title {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 38px;
  color: #ffffff !important;
  line-height: 1.2;
  text-shadow: none !important;
  margin: 0;
}

.detail-hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 700px;
}

.detail-hero__meta-item {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.detail-hero__meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.detail-hero__pricing-box {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Mouse Scroll Indicator */
.mouse-scroll {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.mouse-scroll .wheel {
  width: 2px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 20px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* Trust Strip */
.trust-strip__divider {
  width: 1px;
  height: 16px;
  background-color: var(--color-light-gray);
}

.trust-strip__item {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Sticky Quick Navigation */
.quick-nav {
  position: sticky;
  top: 76px;
  z-index: 98;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 71, 161, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.quick-nav__list {
  gap: 10px;
}

.quick-nav__link {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  padding: 16px 18px;
  color: var(--color-gray);
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  display: block;
}

.quick-nav__link:hover,
.quick-nav__link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Luxury Fact Cards */
.fact-card {
  background: var(--color-pure-white);
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.fact-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.05);
}

.fact-card__icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact-card__icon-box svg {
  width: 18px;
  height: 18px;
}

.fact-card__label {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--color-gray);
  letter-spacing: 0.5px;
}

.fact-card__value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-deep-blue);
  margin-top: 1px;
}

/* Snapshot Box & Highlights */
.snapshot-box {
  background-color: var(--color-pure-white);
  border-color: var(--color-light-gray) !important;
  box-shadow: var(--shadow-sm);
}

.bullet-check {
  color: var(--color-primary);
  font-size: 15px;
}

/* Custom Timed Itinerary Timeline */
.custom-timeline {
  position: relative;
  padding-left: 36px;
}

.custom-timeline__line {
  position: absolute;
  left: 14px;
  top: 25px;
  bottom: 25px;
  width: 2px;
  background-color: var(--color-light-gray);
  z-index: 1;
}

.timeline-day {
  position: relative;
}

.timeline-day__node {
  position: absolute;
  left: -28px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #CBD5E1;
  background: #ffffff;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-day.active .timeline-day__node {
  border-color: var(--color-primary);
  background: var(--gradient-primary);
  box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.18);
  transform: scale(1.2);
}

.timeline-day__badge {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15);
}

.timeline-day__header {
  position: relative;
  transition: all 0.3s ease;
}

.timeline-day__header:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.04);
}

.timeline-day.active .timeline-day__header {
  border-color: rgba(230, 57, 70, 0.35) !important;
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.05);
  background-color: #FFFFFC !important;
}

.timeline-day.active .timeline-day__title {
  color: var(--color-primary) !important;
  font-weight: 700;
}

.timeline-day__arrow {
  font-size: 9px;
  color: var(--color-gray);
  transition: transform 0.3s ease;
}

.timeline-day.active .timeline-day__arrow {
  color: var(--color-primary);
}

.timeline-day__content {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 16px 16px;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, border-color 0.4s ease;
}

.timeline-day.active .timeline-day__content {
  border-color: #e2e8f0;
}

/* Accommodation Cards */
.hotel-card {
  border-color: var(--color-light-gray) !important;
  transition: var(--transition-smooth);
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hotel-card__badge-stars {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-view-hotel {
  border-color: rgba(230, 57, 70, 0.25) !important;
  color: var(--color-primary) !important;
}

.btn-view-hotel:hover {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* Image Gallery & Lightbox */
.gallery-featured {
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
}

.gallery-featured img {
  transition: transform 0.4s ease, opacity 0.2s ease;
}

.gallery-featured img:hover {
  transform: scale(1.02);
}

.gallery-thumb {
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.gallery-thumb:hover {
  opacity: 0.9;
}

.gallery-thumb.active {
  border-color: var(--color-primary) !important;
  opacity: 1 !important;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.93);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-modal__img {
  max-width: 85%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.15s ease-in-out;
}

.lightbox-modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 44px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.lightbox-modal__close:hover {
  opacity: 1;
}

.lightbox-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  padding: 20px;
}

.lightbox-modal__arrow:hover {
  opacity: 1;
}

.lightbox-modal__arrow--left {
  left: 20px;
}

.lightbox-modal__arrow--right {
  right: 20px;
}

.lightbox-modal__counter {
  position: absolute;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
}

/* Pricing Card Block */
.pricing-card {
  border-color: var(--color-light-gray) !important;
}

/* Sticky Sidebar offsets solver */
.sticky-sidebar-wrapper {
  position: sticky;
  top: 100px;
  align-self: start;
}

@media (min-width: 992px) {
  .sticky-sidebar-wrapper {
    z-index: 10;
  }
}

/* Reviews block */
.review-card {
  border-color: var(--color-light-gray) !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.review-card:hover {
  border-color: rgba(230, 57, 70, 0.15) !important;
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .quick-nav {
    top: 60px;
  }
  .sticky-sidebar-wrapper {
    position: relative;
    top: 0;
  }
  .detail-hero {
    padding-bottom: 40px;
  }
}

/* ===== INFO CARDS — Important Information Section ===== */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 575px) {
  .info-card-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--color-pure-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 57, 70, 0.15);
}

.info-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.info-card__title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--color-deep-blue);
  margin: 0;
}

.info-card__body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
}

.info-card__body ul {
  padding-left: 16px;
  margin: 6px 0 0;
}

.info-card__body ul li {
  margin-bottom: 4px;
}

/* Premium Redesigned Details Page Styles */
.section-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 26px;
  color: var(--color-deep-blue);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF7A00 100%);
  border-radius: 2px;
}

.highlight-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-color: rgba(226, 232, 240, 0.8) !important;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(13, 71, 161, 0.05) !important;
  border-color: rgba(230, 57, 70, 0.15) !important;
}

.highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-card__icon {
  transform: scale(1.1);
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
}

.pricing-card {
  border-color: rgba(226, 232, 240, 0.8) !important;
  background-color: #ffffff;
}

.pricing-card .btn--gradient {
  box-shadow: 0 6px 15px rgba(230, 57, 70, 0.15);
  transition: all 0.3s ease;
}

.pricing-card .btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
}

.route-trail {
  background-color: #ffffff;
}

.route-trail__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px 24px;
}

.route-trail__node {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-trail__node:hover {
  transform: translateY(-2px);
}

.route-trail__number {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary);
  background-color: rgba(230, 57, 70, 0.08);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.route-trail__node:hover .route-trail__number {
  background-color: var(--color-primary);
  color: #ffffff;
}

.route-trail__name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-deep-blue);
  transition: color 0.3s ease;
}

.route-trail__node:hover .route-trail__name {
  color: var(--color-primary);
}

/* Connecting Dot Line indicator */
.route-trail__node::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbd5e1;
  font-size: 14px;
  font-weight: bold;
}

/* Hide arrow for the last node */
.route-trail__node:nth-child(9)::after {
  display: none;
}

@media (max-width: 575px) {
  .route-trail__container {
    gap: 12px 16px;
  }
  .route-trail__node {
    padding: 4px 8px;
  }
  .route-trail__node::after {
    right: -12px;
    font-size: 12px;
  }
  .route-trail__name {
    font-size: 13.5px;
  }
}

/* ==========================================================================
   MEGA MENU — Tour Packages
   Compact two-column layout: left category rail + right destination cards
   ========================================================================== */

/* ── Wrapper — the nav item that owns the mega menu ── */
.mega-nav-item {
  position: static;  /* so menu spans full container width */
}

/* ── Trigger link — add chevron ── */
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}

.mega-trigger .mega-chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mega-nav-item.is-open .mega-trigger .mega-chevron {
  transform: rotate(180deg);
}

/* ── The mega menu panel itself (Luxury Floating Card) ── */
.mega-nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 980px;
  max-width: 92vw;
  z-index: 1200;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.18s;
}

/* ── Visible when JS adds is-open ── */
.mega-nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

/* ── Transparent bridge — fills the gap between nav item and menu panel ── */
.mega-nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  width: calc(100% + 40px);
  height: 18px;
  z-index: 1199;
}

/* ── Inner layout ── */
.mega-menu__inner {
  display: flex;
  align-items: stretch;
  min-height: 290px;
}

/* ── LEFT rail: Category tabs ── */
.mega-menu__sidebar {
  flex-shrink: 0;
  width: 210px;
  background: #F8FAFC;
  border-right: 1px solid #E2E8F0;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__sidebar-label {
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gray);
  padding: 4px 18px 8px;
}

.mega-cat-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
  border-radius: 0 8px 8px 0;
  margin-right: 8px;
}

.mega-cat-tab:hover {
  background: rgba(230, 57, 70, 0.06);
}

.mega-cat-tab.is-active {
  background: rgba(230, 57, 70, 0.08);
  border-left-color: var(--color-primary);
}

.mega-cat-tab__emoji {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mega-cat-tab__emoji svg {
  width: 18px;
  height: 18px;
  stroke: #64748B;
  transition: stroke 0.2s ease;
}

.mega-cat-tab.is-active .mega-cat-tab__emoji svg,
.mega-cat-tab:hover .mega-cat-tab__emoji svg {
  stroke: var(--color-primary);
}

.mega-cat-tab__name {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-dark);
  line-height: 1.2;
}

.mega-cat-tab.is-active .mega-cat-tab__name {
  color: var(--color-primary);
}

.mega-cat-tab__count {
  font-size: 11px;
  color: var(--color-gray);
  margin-top: 1px;
}

/* ── RIGHT panel: Destination cards ── */
.mega-menu__panels {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-dest-panel {
  display: none;
  animation: megaPanelIn 0.2s ease;
}

.mega-dest-panel.is-active {
  display: block;
}

@keyframes megaPanelIn {
  from { opacity: 0; transform: translateX(6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mega-dest-panel__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}

.mega-dest-panel__head h4 {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.mega-dest-panel__head .mega-trip-count {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 500;
}

/* Card grid */
.mega-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mega-dest-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #ffffff;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mega-dest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
}

.mega-dest-card__thumb {
  width: 100%;
  height: 85px;
  object-fit: cover;
  display: block;
}

.mega-dest-card__body {
  padding: 8px 10px 10px;
}

.mega-dest-card__name {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 12px;
  color: #0F172A;
  line-height: 1.3;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mega-dest-card__meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: #64748B;
}

.mega-dest-card__meta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Footer Link ── */
.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #E2E8F0;
}

.mega-menu__view-all {
  font-family: var(--font-headings);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none !important;
  transition: gap 0.2s ease;
}

.mega-menu__view-all:hover {
  gap: 8px;
}

/* ── Backdrop overlay ── */
.mega-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s;
}

/* ── Hide on mobile ── */
@media (max-width: 991px) {
  .mega-menu {
    display: none !important;
  }
  .mega-chevron {
    display: none;
  }
}

/* ==========================================================================
   MOBILE OFFCANVAS — Tour Packages Submenu
   ========================================================================== */

/* ── Toggle button (looks like a nav link, has chevron) ── */
.mobile-menu-offcanvas {
  background-color: var(--color-pure-white) !important;
}

.mobile-nav__link {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark) !important;
  padding: 10px 0;
  display: block;
  text-decoration: none !important;
  border-bottom: 1px solid var(--color-light-gray);
  transition: color 0.2s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--color-primary) !important;
}

.mobile-pkg-accordion {
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 4px;
}

.mobile-pkg-toggle {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-dark) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.mobile-pkg-toggle:hover,
.mobile-pkg-toggle[aria-expanded="true"],
.mobile-pkg-toggle:not(.collapsed) {
  color: var(--color-primary) !important;
}

.mobile-pkg-chevron {
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
  color: var(--color-gray);
}

.mobile-pkg-toggle[aria-expanded="true"] .mobile-pkg-chevron,
.mobile-pkg-toggle:not(.collapsed) .mobile-pkg-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.mobile-pkg-submenu.is-open {
  max-height: 600px;
  opacity: 1;
}

/* ── Submenu inner container ── */
.mobile-pkg-submenu__inner {
  padding: 8px 0 4px 16px;
  border-left: 2px solid rgba(230, 57, 70, 0.2);
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Category group header ── */
.mobile-pkg-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 6px;
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #94a3b8;
}

.mobile-pkg-cat:first-child {
  padding-top: 4px;
}

/* ── Each destination link ── */
.mobile-pkg-link {
  display: block;              /* KEY FIX — one per line */
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark) !important;
  padding: 8px 12px 8px 8px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  position: relative;
  line-height: 1.3;
  margin-bottom: 2px;
}

.mobile-pkg-link::before {
  content: '→';
  font-size: 11px;
  color: var(--color-primary);
  opacity: 0;
  margin-right: 6px;
  transition: opacity 0.18s ease;
}

.mobile-pkg-link:hover {
  background: rgba(230, 57, 70, 0.06);
  color: var(--color-primary) !important;
  padding-left: 12px;
}

.mobile-pkg-link:hover::before {
  opacity: 1;
}

/* ── View All pill button ── */
.mobile-pkg-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 9px 18px;
  background: var(--gradient-primary);
  color: #fff !important;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none !important;
  align-self: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(230,57,70,0.25);
}

.mobile-pkg-view-all:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(230,57,70,0.35);
}

/* ── Separator between nav items ── */
.offcanvas-body .d-flex.flex-column.gap-3 > * {
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 4px;
}

.offcanvas-body .d-flex.flex-column.gap-3 > *:last-child {
  border-bottom: none;
}

/* ==========================================
   6. Instagram Gallery Section
   ========================================== */
.instagram-gallery {
  position: relative;
  background-color: var(--color-bg-light, #fafafc);
  border-top: 1px solid rgba(13, 71, 161, 0.05);
  border-bottom: 1px solid rgba(13, 71, 161, 0.05);
  padding: 55px 0; /* Compact padding */
}

.instagram-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 960px; /* Aligned with grid */
  margin: 0 auto 5px;
}

@media (max-width: 767px) {
  .instagram-header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  font-family: var(--font-primary, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.instagram-follow-btn svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

.instagram-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; /* Compact gap */
  margin-top: 30px;
  max-width: 960px; /* Extremely compact width on desktop */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .instagram-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .instagram-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
}

.instagram-gallery__item {
  position: relative;
  border-radius: 12px; /* Smooth rounded corners */
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: #ffffff;
  border: 1px solid rgba(13, 71, 161, 0.08);
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.instagram-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 35, 0.88) 0%, rgba(8, 18, 35, 0.45) 60%, rgba(8, 18, 35, 0.25) 100%);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.instagram-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13, 71, 161, 0.12);
  border-color: rgba(197, 168, 128, 0.4);
}

.instagram-gallery__item:hover img {
  transform: scale(1.08);
}

.instagram-gallery__item:hover .instagram-gallery__overlay {
  opacity: 1;
}

.instagram-gallery__icon {
  color: #ffffff;
  width: 28px;
  height: 28px;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-gallery__icon svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}

.instagram-gallery__item:hover .instagram-gallery__icon {
  transform: scale(1);
}

.instagram-gallery__handle {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-primary, 'Poppins', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.instagram-gallery__caption {
  color: #ffffff;
  font-family: var(--font-primary, 'Poppins', sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 8px;
  width: 85%;
}

/* ==========================================================================
   15. Hotels Page Specific Styles
   ========================================================================== */

/* ── Hotels Category Section ── */
.hotel-cats {
  padding: 60px 0;
}

.hotel-cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-size: cover;
  background-position: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(13, 71, 161, 0.05);
}

.hotel-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 35, 0.85) 0%, rgba(8, 18, 35, 0.2) 65%, transparent 100%);
  z-index: 1;
}

.hotel-cat-card__content {
  position: relative;
  z-index: 2;
}

.hotel-cat-card__title {
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hotel-cat-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  margin-bottom: 0;
}

.hotel-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13, 71, 161, 0.12);
}

.hotel-cat-card--active {
  border: 2px solid #d4af37 !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-4px);
}

.hotel-cat-card:hover img {
  transform: scale(1.08);
}

/* ── Booking / Enquiry Form (Static, Not Sticky) ── */
.hotels-enquiry-bar {
  position: relative;
  padding: 40px 0;
  background: #f8fafc;
  z-index: 10;
}

@media (max-width: 991px) {
  .hotels-enquiry-bar {
    padding: 30px 16px;
  }
}

.hotels-enquiry-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(13, 71, 161, 0.08);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 24px 28px;
}

.hotels-enquiry-card__title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-deep-blue);
  margin-bottom: 4px;
}

.hotels-enquiry-card__desc {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.hotels-enquiry-card__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.hotels-enquiry-card__input-wrapper {
  position: relative;
}

.hotels-enquiry-card__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.hotels-enquiry-card__input,
.hotels-enquiry-card__select {
  width: 100%;
  height: 42px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  color: #0f172a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding-left: 36px;
  outline: none;
  transition: all 0.25s ease;
}

.hotels-enquiry-card__input:focus,
.hotels-enquiry-card__select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

.hotels-enquiry-card__category-pills {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.hotels-enquiry-card__category-pill {
  flex: 1;
  text-align: center;
  position: relative;
}

.hotels-enquiry-card__category-pill input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.hotels-enquiry-card__category-label {
  display: block;
  padding: 8px 10px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hotels-enquiry-card__category-pill input:checked + .hotels-enquiry-card__category-label {
  border-color: var(--color-primary);
  background: rgba(230, 57, 70, 0.05);
  color: var(--color-primary);
}

/* ── Hotel Listing Cards ── */
.hotel-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(13, 71, 161, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.08);
  border-color: rgba(197, 168, 128, 0.3);
}

.hotel-card__image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.hotel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotel-card:hover .hotel-card__image {
  transform: scale(1.06);
}

.hotel-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hotel-card__rating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  color: var(--color-deep-blue);
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(13, 71, 161, 0.05);
}

.hotel-card__rating-badge svg {
  color: #E2B93B;
  width: 12px;
  height: 12px;
}

.hotel-card__content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hotel-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.hotel-card__name {
  font-family: var(--font-headings);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 0;
  line-height: 1.35;
}

.hotel-card__stars {
  display: flex;
  gap: 2px;
  color: #FFC107;
  flex-shrink: 0;
  margin-top: 3px;
}

.hotel-card__stars svg {
  width: 11px;
  height: 11px;
}

.hotel-card__location {
  font-size: 12.5px;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.hotel-card__location svg {
  width: 13px;
  height: 13px;
  color: var(--color-primary);
}

.hotel-card__description {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: auto;
}

.hotel-card__amenity {
  font-size: 10px;
  font-weight: 600;
  color: #64748B;
  background: #F1F5F9;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(13, 71, 161, 0.03);
}

.hotel-card__divider {
  height: 1px;
  background: #E2E8F0;
  margin-bottom: 16px;
}

.hotel-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.hotel-card__price-box {
  display: flex;
  flex-direction: column;
}

.hotel-card__price-label {
  font-size: 10.5px;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.hotel-card__price-amount {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.hotel-card__price-period {
  font-size: 11.5px;
  font-weight: 500;
  color: #64748B;
}

.hotel-card__price-taxes {
  font-size: 9.5px;
  color: #94A3B8;
  margin-top: 2px;
}

.hotel-card__actions {
  display: flex;
  gap: 8px;
  flex-grow: 1;
  justify-content: flex-end;
}

.hotel-card__btn {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 30px;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hotel-card__btn--details {
  background-color: var(--color-light-bg);
  color: var(--color-deep-blue);
  border: 1px solid rgba(13, 71, 161, 0.08);
}

.hotel-card__btn--details:hover {
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--color-primary);
  border-color: rgba(197, 168, 128, 0.3);
}

.hotel-card__btn--enquire {
  background: var(--gradient-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15);
}

.hotel-card__btn--enquire:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(230, 57, 70, 0.25);
}

/* ==========================================
   VISA SERVICES PAGE STYLES
   ========================================== */

/* 1. Visa Cards Grid & Hover States */
.visa-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.visa-card__image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.visa-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visa-card:hover .visa-card__image {
  transform: scale(1.08);
}

.visa-card__flag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(13, 71, 161, 0.05);
  z-index: 2;
}

.visa-card__flag-emoji {
  font-size: 18px;
}

.visa-card__rating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.visa-card__content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.visa-card__name {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 4px;
}

.visa-card__type {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.visa-card__description {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

.visa-card__meta-info {
  margin-top: auto;
  border-top: 1px solid #E2E8F0;
  padding-top: 16px;
  margin-bottom: 20px;
}

.visa-card__meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 6px;
}

.visa-card__meta-label {
  color: #64748B;
  font-weight: 500;
}

.visa-card__meta-val {
  color: var(--color-deep-blue);
  font-weight: 700;
}

.visa-card__actions {
  display: flex;
  gap: 10px;
}

.visa-card__btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.visa-card__btn--details {
  border: 1px solid #CBD5E1;
  color: var(--color-deep-blue);
  background: #ffffff;
}

.visa-card__btn--details:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: var(--color-deep-blue);
}

.visa-card__btn--enquire {
  background: var(--gradient-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15);
}

.visa-card__btn--enquire:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(230, 57, 70, 0.25);
}


/* 2. Sticky Country Sub-Navigation Bar */
.visa-sub-nav {
  background: #ffffff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  z-index: 99;
  transition: all 0.3s ease;
}

.visa-sub-nav--sticky {
  position: fixed;
  left: 0;
  right: 0;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(13, 71, 161, 0.08);
}

.visa-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.visa-nav::-webkit-scrollbar {
  display: none;
}

.visa-nav__item {
  flex-shrink: 0;
}

.visa-nav__link {
  display: block;
  padding: 18px 24px;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748B;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.visa-nav__link:hover {
  color: var(--color-primary);
}

.visa-nav__link--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}


/* 3. Detailed Country Sections Layout */
.visa-detail-section {
  scroll-margin-top: 140px;
}

.visa-detail-hero {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.visa-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 100%);
  z-index: 1;
}

.visa-detail-hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.visa-detail-hero__flag {
  font-size: 28px;
  margin-bottom: 8px;
  display: inline-block;
}

.visa-detail-hero__title {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.visa-detail-hero__subtitle {
  font-size: 14px;
  color: var(--white-soft);
  font-weight: 500;
}

/* Quick Info Cards Grid */
.visa-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.visa-info-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
  display: flex;
  align-items: center;
  gap: 14px;
}

.visa-info-card__icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(13, 71, 161, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visa-info-card__icon-box svg {
  width: 20px;
  height: 20px;
}

.visa-info-card__details {
  display: flex;
  flex-direction: column;
}

.visa-info-card__label {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.visa-info-card__val {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-blue);
  line-height: 1.25;
}

/* Required Documents Premium Icon Cards */
/* Required Documents Premium Icon Cards */
.visa-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.visa-doc-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  transition: all 0.25s ease-in-out;
}

.visa-doc-card:hover {
  border-color: rgba(13, 71, 161, 0.18);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}

.visa-doc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #EF4444; /* red outline color from reference */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.visa-doc-card:hover .visa-doc-card__icon {
  background: rgba(239, 68, 68, 0.08);
}

.visa-doc-card__icon svg {
  width: 20px;
  height: 20px;
}

.visa-doc-card__content {
  display: flex;
  flex-direction: column;
}

.visa-doc-card__title {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: #0D47A1; /* vibrant deep blue from reference */
  margin-bottom: 6px;
  line-height: 1.25;
}

.visa-doc-card__desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .visa-doc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .visa-doc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Eligibility List checklist */
.visa-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visa-eligibility-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}

.visa-eligibility-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310B981'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Important Notes Info/Alert Boxes */
.visa-notes-box {
  background: rgba(245, 158, 11, 0.03);
  border-left: 4px solid #F59E0B;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}

.visa-notes-box__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #D97706;
  margin-bottom: 6px;
}

.visa-notes-box__title svg {
  width: 16px;
  height: 16px;
}

.visa-notes-box__list {
  padding-left: 20px;
  margin: 0;
}

.visa-notes-box__list li {
  font-size: 12.5px;
  color: #475569;
  margin-bottom: 6px;
  line-height: 1.45;
}

.visa-notes-box__list li:last-child {
  margin-bottom: 0;
}

/* Mini CTA Button to form */
.visa-section-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}

.visa-section-enquire-btn:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(230, 57, 70, 0.25);
}

.visa-section-enquire-btn svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
}


/* 4. Horizontal/Responsive Process Timeline */
.visa-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 20px 0;
}

/* Connector line behind timeline */
.visa-timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: #E2E8F0;
  z-index: 1;
}

.visa-timeline__step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visa-timeline__node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.visa-timeline__step:hover .visa-timeline__node {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.visa-timeline__step-title {
  font-family: var(--font-headings);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 4px;
}

.visa-timeline__step-desc {
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.35;
}


/* 5. Upload File Input styles */
.file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #64748B;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.file-upload-label svg {
  color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.file-upload-label.file-selected {
  border-color: #10B981;
  color: #10B981;
  background: rgba(16, 185, 129, 0.02);
}


/* Responsive Adjustments */
@media (max-width: 1200px) {
  .visa-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visa-doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .visa-timeline::before {
    display: none;
  }
  .visa-timeline {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding-left: 20px;
  }
  .visa-timeline::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 45px;
    width: 2px;
    background: #E2E8F0;
    z-index: 1;
  }
  .visa-timeline__step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 20px;
    padding: 0;
    width: 100%;
  }
  .visa-timeline__node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .visa-sub-nav {
    display: block;
  }
  .visa-nav__link {
    padding: 14px 18px;
    font-size: 12.5px;
  }
}

@media (max-width: 768px) {
  .visa-doc-grid {
    grid-template-columns: 1fr;
  }
  .visa-detail-hero {
    padding: 0 24px;
    height: 180px;
  }
  .visa-detail-hero__title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .visa-info-grid {
    grid-template-columns: 1fr;
  }
  .visa-card__actions {
    flex-direction: column;
  }
  .visa-card__btn {
    width: 100%;
  }
}

/* Redesigned Visa Tab transitions and compact spacings */
.visa-detail-section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  scroll-margin-top: 140px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.visa-detail-section.visa-detail-section--active {
  display: block !important;
  opacity: 1;
}

.visa-section-compact {
  padding: 50px 0 !important;
}

/* Tighter gaps between sections */
.visa-detail-section.mb-5.pb-5.border-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 30px !important;
  border-bottom: none !important;
}

/* Clean transition to CTA banner */
.cta-banner {
  margin-top: 20px !important;
}

/* Redesigned Premium Segmented Capsule Navigation */
.visa-sub-nav {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  padding: 20px 0;
  z-index: 99;
}

.visa-sub-nav--sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 71, 161, 0.08);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.visa-nav {
  background: #F1F5F9;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid #E2E8F0;
}

.visa-nav__link {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  border-bottom: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-nav__link:hover {
  color: var(--color-primary);
  background: rgba(13, 71, 161, 0.03);
}

.visa-nav__link--active {
  background: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

/* 2-Column Enquiry Form Layout */
.visa-enq-container {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #E2E8F0;
}

.visa-enq-media-box {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.visa-enq-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(13, 71, 161, 0.8) 100%);
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visa-enq-media-title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.visa-enq-media-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.visa-enq-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.visa-enq-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visa-enq-stat-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #E2B93B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.visa-enq-stat-text {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Compact Credibility Difference Grid */
.visa-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visa-diff-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.visa-diff-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 71, 161, 0.12);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.visa-diff-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visa-diff-icon svg {
  width: 18px;
  height: 18px;
}

.visa-diff-content {
  display: flex;
  flex-direction: column;
}

.visa-diff-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin: 0 0 2px 0;
}

.visa-diff-desc {
  font-size: 11px;
  color: #64748B;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .visa-diff-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .visa-enq-media-box {
    min-height: 300px;
  }
}

/* Redesigned Premium Vertical Navigation Tabs */
.visa-vertical-tabs-wrapper {
  margin-top: 30px;
}

.visa-vertical-tabs-col {
  margin-bottom: 24px;
}

.visa-vertical-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 110px; /* Offset below sticky header */
}

.visa-vertical-tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.visa-vertical-tab-btn:hover {
  background: #F1F5F9;
  color: var(--color-primary);
  border-color: rgba(13, 71, 161, 0.15);
  transform: translateX(4px);
}

.visa-vertical-tab-btn--active {
  background: var(--color-primary);
  color: #ffffff !important;
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.15);
}

.visa-vertical-tab-btn--active:hover {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.25) !important;
  transform: translateX(4px);
}

.visa-vertical-tab-flag {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced Detail Hero Banner Contrast & Readability */
.visa-detail-hero {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.visa-detail-hero__overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.3) 100%) !important;
}

.visa-detail-hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
  padding: 40px !important;
}

.visa-detail-hero__title {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.visa-detail-hero__subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive adjustments for vertical tabs */
@media (max-width: 991px) {
  .visa-vertical-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .visa-vertical-tab-btn {
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 13px;
    flex-shrink: 0;
    width: auto;
  }
  .visa-vertical-tab-btn:hover {
    transform: none;
  }
  .visa-vertical-tab-btn--active:hover {
    transform: none !important;
  }
}

/* Premium Form Input Redesign */
.enquiry-card__group {
  margin-bottom: 6px;
}

.enquiry-card__label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.enquiry-card__input-wrapper {
  position: relative;
  width: 100%;
}

.enquiry-card__input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 5;
}

.enquiry-card__input-icon svg {
  width: 16px;
  height: 16px;
}

.enquiry-card__input,
.enquiry-card__select {
  width: 100%;
  height: 50px !important;
  padding: 0 16px 0 40px !important;
  font-size: 13.5px;
  color: var(--color-deep-blue);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.enquiry-card__textarea {
  width: 100%;
  height: auto !important;
  padding: 14px 16px !important;
  font-size: 13.5px;
  color: var(--color-deep-blue);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.enquiry-card__textarea {
  padding-left: 16px; /* No icon offset needed for message textarea */
}

.enquiry-card__input:hover,
.enquiry-card__select:hover,
.enquiry-card__textarea:hover {
  border-color: rgba(13, 71, 161, 0.25);
  background: #F1F5F9;
}

.enquiry-card__input:focus,
.enquiry-card__select:focus,
.enquiry-card__textarea:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.08);
}

/* File Upload Redesign */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 8px;
  font-size: 13px;
  color: #64748B;
  transition: all 0.25s ease;
  pointer-events: none;
  width: 100%;
}

.file-upload-wrapper:hover .file-upload-label {
  border-color: var(--color-primary);
  background: #F1F5F9;
  color: var(--color-primary);
}

.file-upload-label svg {
  width: 16px;
  height: 16px;
  color: #94A3B8;
  transition: color 0.25s ease;
}

.file-upload-wrapper:hover .file-upload-label svg {
  color: var(--color-primary);
}

.file-upload-label.file-selected {
  border-style: solid;
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.05);
  color: #10B981;
  font-weight: 600;
}

/* Left side media overlay visibility overrides */
.visa-enq-media-overlay {
  color: #ffffff !important;
}

.visa-enq-media-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.visa-enq-media-desc {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}

.visa-enq-stat-text {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.visa-enq-stat-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #FFD700 !important;
  font-weight: bold;
}

/* Responsive padding for card-style visa detail panels */
@media (max-width: 991px) {
  .visa-detail-section {
    padding: 20px !important;
    border-radius: 12px;
  }
}

/* ==========================================================
   ABOUT US PAGE STYLING
   ========================================================== */

/* Our Story section style overrides */
.about-story__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.about-story__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-story__content {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .about-story__image {
    height: 320px;
  }
  .about-story__content {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* Why Travellers Choose Us Horizontal Blocks */
.about-choose-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 15px;
}

.about-choose-block__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.04);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(13, 71, 161, 0.08);
  transition: all 0.25s ease;
}

.about-choose-block:hover .about-choose-block__icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(13, 71, 161, 0.15);
}

.about-choose-block__title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 10px;
}

.about-choose-block__desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .about-choose-block {
    padding: 0;
    margin-bottom: 30px;
  }
}

/* Our Journey Horizontal Timeline */
.about-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 60px 0 20px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #E2E8F0;
  z-index: 1;
}

.about-timeline__step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 12px;
}

.about-timeline__node {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about-timeline__step:hover .about-timeline__node {
  background: var(--color-primary);
  transform: scale(1.2);
  box-shadow: 0 0 0 8px rgba(13, 71, 161, 0.12);
}

.about-timeline__year {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 800;
  color: #FF7A00;
  margin-bottom: 6px;
}

.about-timeline__title {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 8px;
}

.about-timeline__desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
  max-width: 170px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .about-timeline {
    flex-direction: column;
    gap: 32px;
    padding-left: 20px;
    margin: 40px 0;
  }
  .about-timeline::before {
    top: 0;
    bottom: 0;
    left: 31px;
    width: 2px;
    height: auto;
  }
  .about-timeline__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
  }
  .about-timeline__node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .about-timeline__desc {
    max-width: 100%;
    margin: 0;
  }
}

/* Our Travel Philosophy Split Section */
.about-philosophy {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
}

.about-philosophy-image {
  background-size: cover;
  background-position: center;
  min-height: 520px;
}

.about-philosophy-content {
  background: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-philosophy-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

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

.about-philosophy-item__bullet {
  font-size: 18px;
  color: #FF7A00;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-philosophy-item__title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 4px;
}

.about-philosophy-item__desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .about-philosophy-image {
    min-height: 300px;
  }
  .about-philosophy-content {
    padding: 40px 24px;
  }
}

/* By The Numbers Statistics Row */
.about-numbers-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-number-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
}

.about-number-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #E2E8F0;
}

.about-number-item__count {
  font-family: var(--font-headings);
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF7A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.about-number-item__label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 991px) {
  .about-number-item:not(:last-child)::after {
    display: none;
  }
  .about-number-item {
    min-width: 45%;
    margin-bottom: 10px;
  }
}

/* Footer credits styling */
.footer__credit-link:hover {
  color: #FF7A00 !important;
}

/* ==========================================================
   CONTACT US PAGE STYLING
   ========================================================== */

/* Contact Information Left Column */
.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.04);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(13, 71, 161, 0.08);
  transition: all 0.25s ease;
}

.contact-info__item:hover .contact-info__icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(13, 71, 161, 0.12);
}

.contact-info__body {
  flex: 1;
}

.contact-info__title {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 4px;
}

.contact-info__text {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

.contact-info__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  transition: all 0.25s ease;
}

.contact-info__wa-btn:hover {
  background: #1ebd58;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.contact-info__wa-btn svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.contact-info__social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  border-top: 1px solid #E2E8F0;
  padding-top: 30px;
}

.contact-info__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: all 0.25s ease;
}

.contact-info__social-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.contact-info__social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Enlarged Enquiry Form Right Column */
.contact-form__card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
}

.contact-form__title {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .contact-form__card {
    padding: 24px;
  }
}

/* Why Contact Us Horizontal pillars */
.contact-why__block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 10px;
}

.contact-why__icon {
  font-size: 24px;
  color: #FF7A00;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-why__title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 6px;
}

.contact-why__desc {
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .contact-why__block {
    margin-bottom: 30px;
    padding: 0;
  }
}

/* Map location wrapper */
.contact-map__wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid #E2E8F0;
  margin-bottom: 30px;
}

.contact-map__iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-map__info-bar {
  background: #F8FAFC;
  padding: 30px 40px;
  border-top: 1px solid #E2E8F0;
}

.contact-map__info-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-map__info-item {
  flex: 1;
  min-width: 200px;
}

.contact-map__info-label {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-map__info-value {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.45;
}

/* Travel Assistance Split Banner */
.contact-assistance {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid #E2E8F0;
}

.contact-assistance__image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.contact-assistance__content {
  background: #F8FAFC;
  padding: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-assistance__title {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin-bottom: 16px;
}

.contact-assistance__desc {
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-assistance__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .contact-assistance__image {
    min-height: 260px;
  }
  .contact-assistance__content {
    padding: 40px 24px;
  }
}

/* ==========================================================
   HOTEL DETAIL PAGE STYLING
   ========================================================== */

/* Split layout columns custom adjustments */
.hotel-detail-grid {
  margin-top: 50px;
}

/* Sticky Booking Card (Desktop) */
.hotel-booking-card__sticky {
  position: sticky;
  top: 120px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
}

.hotel-booking-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 20px;
}

.hotel-booking-card__price {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-deep-blue);
  font-family: var(--font-headings);
}

.hotel-booking-card__period {
  font-size: 14px;
  color: #64748B;
  font-weight: 400;
}

.hotel-booking-card__rating {
  font-size: 13.5px;
  font-weight: 700;
  color: #E63946;
  background: rgba(230, 57, 70, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
}

.hotel-booking-card__field {
  margin-bottom: 16px;
}

.hotel-booking-card__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.hotel-booking-card__select, .hotel-booking-card__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  font-size: 14px;
  color: #475569;
  outline: none;
  background: #ffffff;
  transition: border-color 0.25s ease;
}

.hotel-booking-card__select:focus, .hotel-booking-card__input:focus {
  border-color: var(--color-primary);
}

.hotel-booking-card__btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-headings);
}

.hotel-booking-card__btn--book {
  background: linear-gradient(135deg, #E63946 0%, #FF7A00 100%);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(230, 57, 70, 0.2);
  margin-bottom: 12px;
}

.hotel-booking-card__btn--book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  color: #ffffff;
}

.hotel-booking-card__btn--expert {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  color: #0D47A1;
}

.hotel-booking-card__btn--expert:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
}

/* Hotel Gallery Section */
.hotel-gallery__main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hotel-gallery__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.hotel-gallery__img:hover {
  transform: scale(1.01);
}

.hotel-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.hotel-gallery__thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hotel-gallery__thumb:hover, .hotel-gallery__thumb--active {
  border-color: var(--color-primary);
  opacity: 0.9;
}

/* Lightbox styles */
.hotel-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hotel-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.hotel-lightbox__content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.hotel-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: block;
}

.hotel-lightbox__close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
}

.hotel-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hotel-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hotel-lightbox__nav--prev {
  left: -70px;
}

.hotel-lightbox__nav--next {
  right: -70px;
}

@media (max-width: 991px) {
  .hotel-gallery__img {
    height: 320px;
  }
  .hotel-lightbox__nav--prev { left: 10px; }
  .hotel-lightbox__nav--next { right: 10px; }
}

/* About quick details sidebar table */
.hotel-quick-info {
  background: #F8FAFC;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.hotel-quick-info__title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin-bottom: 20px;
}

.hotel-quick-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-quick-info__item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  font-size: 13.5px;
}

.hotel-quick-info__item:last-child {
  border-bottom: none;
}

.hotel-quick-info__label {
  font-weight: 700;
  color: #64748B;
}

.hotel-quick-info__value {
  color: var(--color-deep-blue);
  font-weight: 600;
  text-align: right;
}

/* Highlights cards */
.hotel-highlight-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  text-align: center;
  height: 100%;
}

.hotel-highlight-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.08);
}

.hotel-highlight-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(13, 71, 161, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
}

.hotel-highlight-card__title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin: 0;
}

/* Room categories cards */
.hotel-room-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  margin-bottom: 24px;
}

.hotel-room-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hotel-room-card__body {
  padding: 30px;
}

.hotel-room-card__title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin-bottom: 12px;
}

.hotel-room-card__meta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #64748B;
}

.hotel-room-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hotel-room-card__amenity {
  font-size: 12px;
  color: #475569;
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 4px;
}

.hotel-room-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 20px;
}

.hotel-room-card__price-box {
  display: flex;
  flex-direction: column;
}

.hotel-room-card__price-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 0.5px;
}

.hotel-room-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-deep-blue);
  font-family: var(--font-headings);
}

/* Dining cards */
.hotel-dining-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  height: 100%;
}

.hotel-dining-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel-dining-card__body {
  padding: 24px;
}

.hotel-dining-card__title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin-bottom: 6px;
}

.hotel-dining-card__cuisine {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hotel-dining-card__hours {
  font-size: 12.5px;
  color: #64748B;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-dining-card__desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Attractions cards */
.hotel-attraction-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  height: 100%;
}

.hotel-attraction-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.hotel-attraction-card__body {
  padding: 16px;
}

.hotel-attraction-card__title {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-deep-blue);
  margin-bottom: 8px;
}

.hotel-attraction-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #64748B;
  margin-bottom: 8px;
}

/* Premium Hotel Amenities Grid */
.hotel-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.hotel-amenity-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
}

.hotel-amenity-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.05);
}

.hotel-amenity-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 71, 161, 0.04);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

.hotel-amenity-card__icon svg {
  width: 20px;
  height: 20px;
}

.hotel-amenity-card:hover .hotel-amenity-card__icon {
  background: var(--color-primary);
  color: #ffffff;
}

.hotel-amenity-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-deep-blue);
  font-family: var(--font-headings);
  margin: 0;
}

/* Hotel Highlights SVG and Hover Fixes */
.hotel-highlight-card__icon svg {
  width: 22px;
  height: 22px;
}

.hotel-highlight-card:hover .hotel-highlight-card__icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

/* Booking Card Pulse state */
@keyframes cardPulse {
  0% { box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04); border-color: #E2E8F0; }
  50% { box-shadow: 0 0 25px rgba(13, 71, 161, 0.25); border-color: var(--color-primary); }
  100% { box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04); border-color: #E2E8F0; }
}

.hotel-booking-card__sticky.booking-card-pulse {
  animation: cardPulse 1.2s ease-in-out;
}

/* ==========================================================================
   REDESIGNED LUXURY CONTACT PAGE STYLES
   ========================================================================== */
.contact-section-redesign {
  background: #FAF9F6; /* Alabaster White luxury background */
  padding: 100px 0;
}

/* Contact Info Cards Stack */
.contact-luxury-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-luxury-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(13, 71, 161, 0.06);
  border-color: rgba(13, 71, 161, 0.15);
}

.contact-luxury-card__icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.06) 0%, rgba(212, 175, 55, 0.08) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-luxury-card:hover .contact-luxury-card__icon-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF7A00 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.contact-luxury-card__content {
  flex: 1;
}

.contact-luxury-card__title {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 6px;
}

.contact-luxury-card__value {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-deep-blue);
  line-height: 1.45;
  margin: 0;
}

.contact-luxury-card__value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-luxury-card__value a:hover {
  color: var(--color-primary);
}

/* Premium Consultation Form */
.contact-form__card--luxury {
  background: #ffffff;
  padding: 45px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.contact-form__card--luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #FF7A00 50%, var(--gold-light) 100%);
}

.contact-form__card--luxury .contact-form__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.contact-form__subtitle {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 30px;
}

/* Focus and input styling overrides */
.contact-form__card--luxury .enquiry-card__input:focus,
.contact-form__card--luxury .enquiry-card__select:focus {
  border-color: #D4AF37 !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
  background-color: #ffffff !important;
}

/* Visit Our Lounge Invitation Card */
.contact-lounge-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-lounge-card__image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-lounge-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.contact-lounge-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-deep-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-lounge-card__content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-lounge-card__title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-deep-blue);
  margin-bottom: 12px;
}

.contact-lounge-card__desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-lounge-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.contact-lounge-card__perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--color-deep-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-lounge-card__perk-icon {
  color: #FF7A00;
  font-size: 16px;
  font-weight: bold;
}

.contact-lounge-card__btn {
  background: transparent;
  color: var(--color-deep-blue);
  border: 2px solid var(--color-deep-blue);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--font-headings);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
}

.contact-lounge-card__btn:hover {
  background: var(--color-deep-blue);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.15);
}

.contact-map__wrapper--luxury {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #ffffff;
  height: 100%;
}

.contact-map__wrapper--luxury iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

@media (max-width: 991px) {
  .contact-section-redesign {
    padding: 60px 0;
  }
  .contact-form__card--luxury {
    padding: 30px 20px;
  }
  .contact-lounge-card {
    margin-top: 30px;
  }
  .contact-map__wrapper--luxury {
    margin-top: 30px;
  }
  .contact-map__wrapper--luxury iframe {
    min-height: 350px;
  }
}

/* ==========================================================================
   INTERACTIVE MULTI-STEP ITINERARY PLANNER MODAL
   ========================================================================== */
.planner-modal__card {
  border-radius: 28px !important;
  overflow: hidden;
  border: 1px solid rgba(162, 165, 245, 0.3) !important;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2) !important;
  background: #FFFFFC !important;
  position: relative;
}

.planner-modal__accent-bar {
  height: 6px;
  background: linear-gradient(90deg, #0D47A1 0%, #E63946 50%, #FF7A00 100%);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.planner-modal__header {
  padding: 30px 40px 15px !important;
}

.planner-modal__title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-deep-blue);
  margin-bottom: 6px;
}

.planner-modal__subtitle {
  font-size: 13.5px;
  color: #64748B;
}

.planner-modal__close-btn {
  background-color: #F1F5F9 !important;
  padding: 10px !important;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.planner-modal__close-btn:hover {
  opacity: 1;
  background-color: #E2E8F0 !important;
}

.planner-modal__body {
  padding: 20px 40px 30px !important;
}

/* Progress bar styling */
.planner-progress {
  background: #F1F5F9;
  height: 6px;
  border-radius: 10px;
  position: relative;
  overflow: visible;
  margin-bottom: 24px;
}

.planner-progress__bar {
  background: linear-gradient(90deg, #0D47A1 0%, #E63946 100%);
  height: 100%;
  border-radius: 10px;
  transition: width 0.4s ease;
  width: 25%;
}

.planner-progress__step-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  color: #64748B;
}

/* Multi-step containers */
.planner-step {
  display: none;
}

.planner-step--active {
  display: block;
  animation: fadeInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.planner-step__question {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-dark);
}

/* Options Grid */
.planner-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.planner-options-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 575px) {
  .planner-options-grid--three {
    grid-template-columns: 1fr;
  }
}

.planner-opt-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.planner-opt-card__icon {
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.planner-opt-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: #64748B;
  transition: stroke 0.25s ease;
}

.planner-opt-card:hover .planner-opt-card__icon svg,
.planner-opt-card.is-selected .planner-opt-card__icon svg {
  stroke: var(--color-primary);
}

.planner-opt-card__label {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.planner-opt-card:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
  transform: translateY(-3px);
}

.planner-opt-card.is-selected {
  background: rgba(13, 71, 161, 0.05);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.08);
}

.planner-opt-card.is-selected .planner-opt-card__label {
  color: var(--color-primary);
}

/* Form Inputs inside Planner */
.planner-form__label {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

.planner-form__input {
  border-radius: 12px !important;
  padding: 12px 16px !important;
  border: 1px solid #CBD5E1 !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  transition: all 0.2s ease !important;
}

.planner-form__input:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15) !important;
  outline: none !important;
}

/* Modal Footer Buttons */
.planner-modal__footer {
  padding: 15px 40px 30px !important;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.planner-modal__btn-back {
  background: #F1F5F9 !important;
  color: #475569 !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-family: var(--font-headings) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border: 1px solid #E2E8F0 !important;
  transition: all 0.2s ease !important;
}

.planner-modal__btn-back:hover {
  background: #E2E8F0 !important;
  color: var(--color-dark) !important;
}

.planner-modal__btn-next {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%) !important;
  color: #FFFFFC !important;
  border-radius: 50px !important;
  padding: 10px 28px !important;
  font-family: var(--font-headings) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.15) !important;
  transition: all 0.3s ease !important;
}

.planner-modal__btn-next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.25) !important;
}

/* Testimonial Swiper Slider Styling */
.testimonials-swiper {
  padding: 10px 5px 45px 5px !important;
  overflow: hidden;
}

.testimonials-pagination {
  bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 5px !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a237e, #0d47a1) !important;
  opacity: 1;
}

.planner-modal__btn-next:disabled {
  background: #E2E8F0 !important;
  color: #94A3B8 !important;
  cursor: not-allowed;
  box-shadow: none !important;
}