/* ==========================================================================
   Travelux – 100% Visual Match with Reference Screenshot & Elementor Kit
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Sorts+Mill+Goudy:ital@0;1&display=swap');

:root {
  --color-primary: #FFC72C;
  --color-primary-hover: #E5B224;
  --color-dark-bg: #0F172A;
  --color-text-white: #FFFFFF;
  --color-text-dark: #0A0A0A;
  --color-text-muted: rgba(255, 255, 255, 0.85);
  --color-body-text: #E2E8F0;
  
  --font-heading: 'Sorts Mill Goudy', serif;
  --font-body: 'Jost', sans-serif;
  
  /* GOLDEN RATIO TYPOGRAPHY SCALE (phi = 1.618) */
  --font-scale-ratio: 1.618;
  --font-size-xs: 0.75rem;    /* ~12px */
  --font-size-sm: 0.875rem;   /* ~14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.25rem;    /* ~20px */
  --font-size-h5: 1.618rem;   /* ~26px (16 * 1.618) */
  --font-size-h4: 2.05rem;    /* ~33px */
  --font-size-h3: 2.618rem;   /* ~42px (16 * 1.618^2) */
  --font-size-h2: 3.33rem;    /* ~53px */
  --font-size-h1: 4.236rem;   /* ~68px (16 * 1.618^3) */

  --line-height-heading: 1.2;
  --line-height-golden: 1.618; /* Golden Ratio line-height */

  --radius-pill: 999px;
  --radius-card: 28px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-golden);
  background-color: var(--color-dark-bg);
  color: var(--color-body-text);
  -webkit-font-smoothing: antialiased;
  padding: 12px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Outer Container Wrapper */
.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

/* ==========================================================================
   HERO CARD CONTAINER WITH TROPICAL LANDSCAPE BACKGROUND & GRID OVERLAY
   ========================================================================== */
.hero-card-container {
  position: relative;
  min-height: 94vh;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: 
    url("https://view.kitpixel.com/travelux/wp-content/uploads/sites/14/2026/02/amazing-view-of-beach-las-teresitas-with-yellow-sa-2026-01-09-08-15-55-utc.webp"),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Dark Gradient Overlay + Subtle Grid Pattern */
.hero-card-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%),
    ;
  background-size: cover;
  z-index: 1;
}

.hero-card-container > * {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   TOP WHITE HEADER PILL WITH CONCAVE INVERTED CORNER CUTOUT EARS
   ========================================================================== */
.site-header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
}

.header-pill-bar {
  position: relative;
  background-color: #FFFFFF;
  height: 62px;
  border-radius: 0 0 32px 32px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: max-content;
  max-width: calc(100% - 100px);
  pointer-events: auto;
}

/* Inverted Concave Corner Ears SVG - Disabled */
.ear-svg,
.ear-left,
.ear-right,
.elementor-element-0fef54b,
.elementor-element-a903af4 {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.brand-logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link-item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  text-decoration: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.nav-link-item.active {
  color: #FFC72C;
  font-weight: 600;
}

.nav-link-item:hover {
  color: #FFC72C;
}

.dropdown-arrow-icon {
  font-size: 10px;
  color: #0A0A0A;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow-icon {
  transform: rotate(180deg);
  color: #FFC72C;
}

/* Dropdown Popover */
.dropdown-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #F5F5F5;
  border-radius: 16px;
  padding: 12px 0;
  min-width: 190px;
  list-style: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.nav-dropdown:hover .dropdown-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-popover li a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  padding: 8px 24px;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.dropdown-popover li a:hover {
  color: #FFC72C;
  background-color: rgba(255, 199, 44, 0.1);
}

/* CTA Header Button ("Plan a Trip") */
.header-cta-wrapper {
  display: flex;
  align-items: center;
}

.nav-cta-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
  background-color: #FFC72C;
  border: 1px solid #FFC72C;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1.3;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background-color: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

/* Mobile Hamburger Button */
.mobile-hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #0A0A0A;
  cursor: pointer;
  padding: 4px;
}

/* Off-Canvas Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  height: 100vh;
  background-color: #F5F5F5;
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-menu.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-logo-img {
  height: 30px;
  width: auto;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #FFC72C;
  color: #0A0A0A;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #0A0A0A;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-nav-link.active,
.drawer-nav-link:hover {
  color: #FFC72C;
}

.drawer-sub-menu {
  list-style: none;
  padding: 8px 0 8px 16px;
  margin: 0;
  display: none;
}

.drawer-sub-menu.open {
  display: block;
}

.drawer-sub-menu a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: #535862;
  padding: 8px 0;
  text-decoration: none;
}

.drawer-footer {
  padding-top: 16px;
}

.drawer-cta-btn {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #0A0A0A;
  background-color: #FFC72C;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px;
  cursor: pointer;
}


/* ==========================================================================
   HERO CENTER CONTENT STACK MATCHING SCREENSHOT TYPOGRAPHY
   ========================================================================== */
.hero-center-content {
  text-align: center;
  max-width: 820px;
  margin: auto;
  padding: 120px 24px 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge Pill ("CURATED TRAVEL EXPERIENCES") */
.hero-pill-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

/* Main H1 Title ("Curated Journeys for Modern Explorers") */
.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-main-title span {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}

/* Subtitle Paragraph */
.hero-sub-description {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* Dual Action Buttons ("Get Started" & "Destinations") */
.hero-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 13px 32px;
  background-color: #FFC72C;
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid #FFC72C;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 25px rgba(255, 199, 44, 0.35);
}

.btn-hero-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  padding: 13px 32px;
  background-color: #FFFFFF;
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid #FFFFFF;
  transition: all var(--transition-normal);
}

.btn-hero-secondary:hover {
  background-color: #FFC72C;
  border-color: #FFC72C;
  transform: translateY(-2px);
}


/* ==========================================================================
   PARTNER BRAND LOGOS CAROUSEL (BOTTOM OF HERO)
   ========================================================================== */
.hero-partner-carousel {
  width: 100%;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.partner-logo-item {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.partner-logo-item:hover {
  color: #FFFFFF;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ==========================================================================
   SECTION 2: POPULAR DESTINATIONS GRID
   ========================================================================== */
.aurea-section-header-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px auto;
  max-width: 800px;
  width: 100%;
}

.aurea-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid rgba(255, 199, 44, 0.35);
  border-radius: 999px;
  color: #FFC72C;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.aurea-section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3) !important;
  font-weight: 500;
  color: #FFFFFF !important;
  margin-bottom: 12px;
  line-height: var(--line-height-heading);
}

.aurea-section-title span {
  color: #FFC72C;
  font-style: italic;
}

.aurea-section-subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
  line-height: var(--line-height-golden);
}

/* Dark Text Override for Light Background Sections (Packages & About Us) */
.aurea-header-dark-text .aurea-section-title {
  color: #0A0D12 !important;
}

.aurea-header-dark-text .aurea-section-title span {
  color: #FFC72C !important;
  font-style: italic;
}

.aurea-header-dark-text .aurea-section-subtitle {
  color: #535862 !important;
}

.aurea-header-dark-text .aurea-section-badge {
  background: rgba(255, 199, 44, 0.12) !important;
  border-color: rgba(255, 199, 44, 0.35) !important;
  color: #FFC72C !important;
}

/* ==========================================================================
   AUREA LUXURY BOOKING SEARCH BAR (Adventure Awaits Section Compact & Left-Aligned)
   ========================================================================== */
.elementor-element-acb4711 {
  position: relative !important;
  min-height: auto !important;
  height: auto !important;
  padding: 42px 24px 48px 24px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor-element-acb4711 .e-con-inner {
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor-element-acb4711 .elementor-heading-title,
.elementor-element-acb4711 h2 {
  font-size: 1.85rem !important;
  font-weight: 700 !important;
  text-align: left !important;
  margin: 0 0 6px 0 !important;
}

.elementor-element-acb4711 .elementor-widget-heading,
.elementor-element-acb4711 .elementor-widget-text-editor,
.elementor-element-acb4711 p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  font-size: 0.92rem !important;
  max-width: 680px !important;
  line-height: 1.5 !important;
}

.elementor-element-fd672d9 {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.aurea-booking-search-card {
  width: 100% !important;
  max-width: 780px !important;
  margin: 20px 0 0 0 !important;
  padding: 18px 22px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
  position: relative !important;
  z-index: 10 !important;
  text-align: left !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.booking-search-header {
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.booking-search-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 3px 10px !important;
  background: rgba(255, 199, 44, 0.18) !important;
  border: 1px solid rgba(255, 199, 44, 0.4) !important;
  border-radius: 999px !important;
  color: #B48000 !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.booking-search-title {
  font-family: var(--font-heading) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0A0D12 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.booking-search-form {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(120px, 140px) !important;
  gap: 12px !important;
  align-items: flex-end !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.booking-field-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  position: relative !important;
}

.booking-input-wrap {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.booking-field-label {
  font-family: var(--font-body) !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.booking-field-label i {
  color: #FFC72C !important;
  font-size: 0.8rem !important;
}

.booking-select-input,
.booking-date-input {
  width: 100% !important;
  height: 42px !important;
  padding: 0 30px 0 12px !important;
  background: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 10px !important;
  color: #0A0D12 !important;
  font-family: var(--font-body) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
}

.booking-date-input {
  padding-right: 12px !important;
  color-scheme: light !important;
}

.booking-select-input option {
  background: #FFFFFF !important;
  color: #0A0D12 !important;
  padding: 8px !important;
}

.select-custom-arrow {
  position: absolute !important;
  right: 10px !important;
  pointer-events: none !important;
  color: #FFC72C !important;
  font-size: 0.72rem !important;
}

.booking-select-input:focus,
.booking-date-input:focus {
  border-color: #FFC72C !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.15) !important;
}

.booking-btn-wrap {
  min-width: 110px !important;
}

.booking-search-submit-btn {
  width: 100% !important;
  height: 42px !important;
  padding: 0 18px !important;
  background: #FFC72C !important;
  color: #0A0D12 !important;
  font-size: 0.84rem !important;
  border-radius: 10px !important;
}
  border: none !important;
  border-radius: 14px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important;
}

.booking-search-submit-btn:hover {
  background: #FFFFFF !important;
  color: #0A0D12 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(255, 199, 44, 0.35) !important;
}

@media (max-width: 1024px) {
  .booking-search-form {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .booking-btn-wrap {
    grid-column: span 2 !important;
  }
}

@media (max-width: 640px) {
  .booking-search-form {
    grid-template-columns: 1fr !important;
  }
  .booking-btn-wrap {
    grid-column: span 1 !important;
  }
}

/* Slider Controls & Precision Arrow Alignments */
.aurea-slider-controls-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-top: 32px !important;
  width: 100% !important;
}

.benefits-nav-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 199, 44, 0.4) !important;
  background: #0A0D12 !important;
  color: #FFC72C !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  flex-shrink: 0 !important;
}

.benefits-nav-btn:hover {
  background: #FFC72C !important;
  color: #0A0D12 !important;
  border-color: #FFC72C !important;
  transform: translateY(-2px) scale(1.06) !important;
}

.benefits-slider-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.benefits-slider-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  cursor: pointer !important;
}

.benefits-slider-pagination .swiper-pagination-bullet-active {
  width: 28px !important;
  border-radius: 999px !important;
  background: #FFC72C !important;
}

.destinations-section {
  padding: 90px 24px;
  background-color: #FAFAFA;
  border-radius: var(--radius-card);
  margin-top: 24px;
  color: var(--color-text-dark);
}

.section-header-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px auto;
}

.section-sub-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  display: block;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-body-text);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.destination-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #E5E7EB;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image-box {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .card-image-box img {
  transform: scale(1.06);
}

.card-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.card-content-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title-location {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.card-text-desc {
  font-size: 0.95rem;
  color: var(--color-body-text);
  margin-bottom: 24px;
  line-height: 1.5;
}

.card-action-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: gap var(--transition-normal);
}

.destination-card:hover .card-action-link {
  gap: 12px;
  color: #E5B224;
}


/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .header-pill-bar {
    min-width: unset;
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 0 20px;
    height: 54px;
    border-radius: 0 0 24px 24px;
  }
  .ear-svg {
    width: 24px;
    height: 24px;
  }
  .ear-left {
    left: -24px;
  }
  .ear-right {
    right: -24px;
  }
  .desktop-nav,
  .header-cta-wrapper {
    display: none;
  }
  .mobile-hamburger-btn {
    display: block;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-container {
    min-height: 85vh;
  }
  .hero-center-content {
    padding: 100px 16px 40px 16px;
  }
  .hero-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
  }
}

/* ==========================================================================
   AUREA LANKA TRAVELS – LUXURY REDESIGNED FOOTER STYLES
   ========================================================================== */

.aurea-main-footer {
  position: relative;
  background: linear-gradient(180deg, #090E17 0%, #06090E 100%);
  color: #E2E8F0;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
}

/* Gold Top Accent Bar */
.aurea-footer-accent-bar {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, #FFC72C 25%, #FFF3B0 50%, #FFC72C 75%, transparent 100%);
}

.aurea-footer-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 36px 32px;
  z-index: 2;
}

/* Main 4-Column Grid */
.aurea-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Column 1: Brand Column */
.aurea-footer-brand-col {
  display: flex;
  flex-direction: column;
}

.aurea-footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.aurea-footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.aurea-footer-logo-link:hover .aurea-footer-logo-img {
  transform: scale(1.03);
}

.aurea-footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Trust Badges */
.aurea-footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.aurea-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.aurea-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid rgba(255, 199, 44, 0.25);
  color: #FFC72C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Column Headers */
.aurea-footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.02em;
}

.aurea-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #FFC72C;
  border-radius: 2px;
}

/* Links Columns */
.aurea-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aurea-footer-link-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.aurea-footer-link-item a::before {
  content: '›';
  font-size: 14px;
  color: #FFC72C;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.aurea-footer-link-item a:hover {
  color: #FFC72C;
  transform: translateX(4px);
}

.aurea-footer-link-item a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Details Column */
.aurea-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aurea-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.5;
}

.aurea-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFC72C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.aurea-contact-item:hover .aurea-contact-icon {
  background: #FFC72C;
  color: #0A0D12;
  border-color: #FFC72C;
  transform: translateY(-2px);
}

.aurea-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.aurea-contact-item a:hover {
  color: #FFC72C;
}

/* Newsletter Column */
.aurea-newsletter-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.55;
}

.aurea-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

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

.aurea-newsletter-input {
  width: 100%;
  padding: 14px 18px;
  padding-right: 120px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.aurea-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.aurea-newsletter-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFC72C;
}

.aurea-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  padding: 0 20px;
  background: #FFC72C;
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.aurea-newsletter-btn:hover {
  background: #FFFFFF;
  color: #0A0A0A;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.aurea-newsletter-toast {
  display: none;
  padding: 10px 14px;
  background: rgba(255, 199, 44, 0.15);
  border: 1px solid rgba(255, 199, 44, 0.4);
  border-radius: 12px;
  color: #FFC72C;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Social Media Grid */
.aurea-social-box-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.aurea-social-links-grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aurea-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aurea-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.aurea-social-link:hover {
  background: #FFC72C;
  color: #0A0D12;
  border-color: #FFC72C;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Bottom Bar */
.aurea-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.aurea-footer-copyright span a {
  color: #FFC72C;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.aurea-footer-copyright span a:hover {
  color: #FFFFFF;
}

.aurea-footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.aurea-footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.aurea-footer-legal-links a:hover {
  color: #FFC72C;
}

/* Floating Back to Top Button */
.aurea-back-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 199, 44, 0.15);
  border: 1px solid rgba(255, 199, 44, 0.4);
  color: #FFC72C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aurea-back-to-top-btn:hover {
  background: #FFC72C;
  color: #0A0D12;
  border-color: #FFC72C;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 1024px) {
  .aurea-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .aurea-footer-inner {
    padding: 48px 20px 28px 20px;
  }
  .aurea-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .aurea-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .aurea-footer-legal-links {
    justify-content: center;
  }
  .aurea-newsletter-input {
    padding-right: 18px;
  }
  .aurea-input-group {
    flex-direction: column;
    gap: 10px;
  }
  .aurea-newsletter-btn {
    position: static;
    width: 100%;
    padding: 12px;
  }
}

/* ==========================================================================
   AUREA LANKA TRAVELS – GHOST FLOATING STICKY HEADER (TRANSLUCENT & ALIGNED)
   ========================================================================== */

/* Disabled Ghost Nav - Single Unified Persistent Fixed Capsule Navbar Used */
.aurea-ghost-nav {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (DROP TO BOTTOM & SCROLL TO TOP)
   ========================================================================== */
.aurea-floating-nav-buttons {
  position: fixed !important;
  bottom: 96px !important;
  right: 32px !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
  transition: opacity 0.35s ease, transform 0.35s ease !important;
}

.aurea-floating-nav-buttons.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.aurea-float-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #FFC72C !important;
  border: 1px solid rgba(10, 13, 18, 0.15) !important;
  color: #0A0D12 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 10px 25px rgba(255, 199, 44, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease !important;
  position: relative !important;
}

.aurea-float-btn:hover {
  transform: translateY(-4px) scale(1.08) !important;
  background: #FFFFFF !important;
  box-shadow: 0 15px 35px rgba(255, 199, 44, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

.float-btn-tooltip {
  position: absolute !important;
  right: 60px !important;
  background: rgba(10, 13, 18, 0.9) !important;
  color: #FFFFFF !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  padding: 5px 12px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
  transform: translateX(8px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

.aurea-float-btn:hover .float-btn-tooltip {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.aurea-ghost-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 32px;
}

.aurea-ghost-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
  flex-shrink: 0;
}

.ghost-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.aurea-ghost-logo:hover .ghost-logo-img {
  transform: scale(1.04);
}

.aurea-ghost-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.aurea-ghost-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ghost-nav-link,
.ghost-nav-link:visited {
  font-family: var(--font-body), 'Jost', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
  padding: 4px 0 !important;
  position: relative !important;
  transition: color 0.25s ease !important;
  letter-spacing: 0.01em !important;
}

.ghost-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFC72C;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.ghost-nav-link:hover,
.ghost-nav-link:focus,
.ghost-nav-link.active {
  color: #FFC72C !important;
  font-weight: 600 !important;
}

.ghost-nav-link:hover::after,
.ghost-nav-link:focus::after,
.ghost-nav-link.active::after {
  width: 100%;
}

.aurea-ghost-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.aurea-ghost-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body), 'Jost', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #0A0A0A !important;
  background-color: #FFC72C !important;
  border: 1px solid #FFC72C !important;
  border-radius: var(--radius-pill) !important;
  height: 38px !important;
  padding: 0 22px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.aurea-ghost-cta-btn:hover,
.aurea-ghost-cta-btn:focus,
.aurea-ghost-cta-btn:active {
  background-color: #0A0A0A !important;
  color: #FFFFFF !important;
  border-color: #0A0A0A !important;
  transform: translateY(-2px) !important;
}

.aurea-ghost-hamburger {
  display: none;
  background: none;
  border: none;
  color: #FFC72C;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 992px) {
  .aurea-ghost-menu {
    display: none;
  }
  .aurea-ghost-nav {
    height: 58px;
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
  }
  .aurea-ghost-nav-inner {
    padding: 0 18px !important;
  }
  .aurea-ghost-hamburger {
    display: flex;
    align-items: center;
  }
}
/* ==========================================================================
   STRICT 2-FONT SYSTEM ENFORCEMENT (Preserving FontAwesome & SVG Icons)
   ========================================================================== */
body, p, 
span:not([class*="fa-"]):not([class*="icon-"]):not([class*="ekit-"]), 
a:not([class*="fa-"]):not([class*="icon-"]):not([class*="ekit-"]), 
li, button, input, select, textarea,
.elementor-widget-text-editor, .elementor-button, .ekit-wid-con {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6,
.aurea-section-title,
.dest-card-title,
.dest-card-num,
.benefit-card-title,
.aurea-simple-footer-logo-text,
.elementor-heading-title,
.elementskit-section-title,
.ekit-heading--title {
  font-family: var(--font-heading) !important;
}

/* Explicit FontAwesome & Eicons Font-Family Safeguards */
.fa, .fas, .fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.far, .fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fab, .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

i.fa-solid, i.fa-regular, i.fa-brands, i.fas, i.far, i.fab,
[class*="fa-"]::before, [class*="fa-"]::after,
[class*="icon-"]::before, [class*="icon-"]::after,
.ekit-menu-icon::before, .elementskit-submenu-indicator::before {
  font-family: inherit !important;
}

/* Explicit FontAwesome Unicode Arrow Renderers */
.fa-arrow-right::before { content: "\f061" !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; font-style: normal !important; }
.fa-arrow-left::before { content: "\f060" !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; font-style: normal !important; }
.fa-chevron-right::before { content: "\f054" !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; font-style: normal !important; }
.fa-chevron-left::before { content: "\f053" !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; font-style: normal !important; }
.fa-chevron-down::before { content: "\f078" !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; font-style: normal !important; }

/* ==========================================================================
   AUREA LANKA TRAVELS - SIMPLE MINIMALIST LUXURY FOOTER
   ========================================================================== */
.aurea-simple-footer {
  background: #090E17;
  color: #E2E8F0;
  border-top: 1px solid rgba(255, 199, 44, 0.25);
  padding: 56px 24px 28px 24px;
  position: relative;
  overflow: hidden;
}

.aurea-simple-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.simple-footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
}

.aurea-simple-footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.6;
  margin: 0 auto;
}

.aurea-simple-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 8px 0;
}

.aurea-simple-footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.aurea-simple-footer-nav a:hover {
  color: #FFC72C;
}

.aurea-simple-footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.aurea-simple-footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.aurea-simple-footer-contact a:hover {
  color: #FFC72C;
}

.aurea-simple-footer-contact i {
  color: #FFC72C;
  margin-right: 6px;
}

.aurea-simple-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.aurea-simple-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.aurea-simple-footer-social a:hover {
  background: #FFC72C;
  color: #0A0D12;
  border-color: #FFC72C;
  transform: translateY(-3px);
}

.aurea-simple-footer-bottom {
  width: 100%;
  padding-top: 24px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.aurea-simple-footer-bottom a {
  color: #FFC72C;
  font-weight: 600;
  text-decoration: none;
}

.aurea-simple-footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .aurea-simple-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   AUREA LUXURY SCROLL PROGRESS CAR ANIMATION (Bottom Drive Bar)
   ========================================================================== */
.aurea-scroll-progress-track {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 8px !important;
  background: rgba(10, 13, 18, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(255, 199, 44, 0.5) !important;
  z-index: 9999999 !important;
  pointer-events: none !important;
}

.aurea-scroll-progress-bar {
  height: 100% !important;
  width: 0% !important;
  background: linear-gradient(90deg, #FFC72C 0%, #FFE885 100%) !important;
  box-shadow: 0 0 16px rgba(255, 199, 44, 0.95) !important;
  transition: width 0.05s linear !important;
}

.aurea-scroll-car-indicator {
  position: absolute !important;
  bottom: 3px !important;
  left: 0% !important;
  transform: translateX(-50%) !important;
  transition: left 0.05s linear !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 14px rgba(255, 199, 44, 0.8)) !important;
  z-index: 99999999 !important;
}

.scroll-car-img {
  width: 58px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Driving bounce motion while scrolling */
.scrolling-active .scroll-car-img {
  animation: carDriveBounce 0.2s ease-in-out infinite alternate !important;
}

@keyframes carDriveBounce {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-3px) rotate(1.5deg); }
}

/* ==========================================================================
   REALISTIC ATMOSPHERIC DISSOLVING & RE-CONDENSING MOUNTAIN MIST ANIMATION
   ========================================================================== */
#home {
  position: relative !important;
  overflow: hidden !important;
}

.aurea-hero-mist-wrap {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mist-layer {
  position: absolute !important;
  top: -10% !important;
  left: 0 !important;
  width: 250% !important;
  height: 120% !important;
  background-repeat: repeat-x !important;
  background-position: 0 50% !important;
  background-size: 50% 100% !important;
  pointer-events: none !important;
  will-change: transform, opacity, filter !important;
}

/* Layer 1: Heavy Drifting Cloud Bank (Evaporates & Re-forms) */
.mist-layer-1 {
  background-image: 
    radial-gradient(ellipse 65% 55% at 25% 45%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 45%, transparent 75%),
    radial-gradient(ellipse 55% 45% at 75% 65%, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  animation: organicMistFlow1 24s ease-in-out infinite !important;
  filter: blur(22px) !important;
}

/* Layer 2: Wispy High Altitude Mist (Dissolves completely at random spots) */
.mist-layer-2 {
  background-image: 
    radial-gradient(ellipse 50% 40% at 70% 35%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 199, 44, 0.12) 35%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 75%, rgba(255, 255, 255, 0.4) 0%, transparent 65%);
  animation: organicMistFlow2 32s ease-in-out infinite !important;
  animation-delay: -10s !important;
  filter: blur(28px) !important;
}

/* Layer 3: Low Ground Highland Valley Fog (Breathing & Dissolving) */
.mist-layer-3 {
  background-image: 
    radial-gradient(ellipse 80% 60% at 50% 85%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 85%),
    radial-gradient(ellipse 40% 35% at 85% 55%, rgba(255, 255, 255, 0.45) 0%, transparent 75%);
  animation: organicMistFlow3 28s ease-in-out infinite !important;
  animation-delay: -18s !important;
  filter: blur(32px) !important;
}

/* Organic Flow 1: Drifts right, slowly fades completely out (0 opacity), then condenses back */
@keyframes organicMistFlow1 {
  0% {
    opacity: 0.65;
    transform: translate3d(0%, 0px, 0) scale(1);
    filter: blur(20px);
  }
  25% {
    opacity: 0.25;
    transform: translate3d(-12%, -15px, 0) scale(1.08);
    filter: blur(26px);
  }
  45% {
    opacity: 0; /* Completely dissolved / disappeared */
    transform: translate3d(-24%, 10px, 0) scale(1.15);
    filter: blur(35px);
  }
  65% {
    opacity: 0.15; /* Slowly re-condensing & emerging */
    transform: translate3d(-36%, -8px, 0) scale(1.06);
    filter: blur(24px);
  }
  85% {
    opacity: 0.55;
    transform: translate3d(-48%, 12px, 0) scale(0.98);
    filter: blur(18px);
  }
  100% {
    opacity: 0.65;
    transform: translate3d(-60%, 0px, 0) scale(1);
    filter: blur(20px);
  }
}

/* Organic Flow 2: Opposite wave drift with patchy disappearance */
@keyframes organicMistFlow2 {
  0% {
    opacity: 0.1;
    transform: translate3d(-50%, 15px, 0) scale(1.1);
    filter: blur(30px);
  }
  20% {
    opacity: 0.6;
    transform: translate3d(-38%, -10px, 0) scale(1.02);
    filter: blur(22px);
  }
  50% {
    opacity: 0; /* Fully dissolved in mid-air */
    transform: translate3d(-22%, 20px, 0) scale(0.95);
    filter: blur(40px);
  }
  75% {
    opacity: 0.45; /* Re-emerges smoothly */
    transform: translate3d(-10%, -12px, 0) scale(1.07);
    filter: blur(25px);
  }
  100% {
    opacity: 0.1;
    transform: translate3d(0%, 15px, 0) scale(1.1);
    filter: blur(30px);
  }
}

/* Organic Flow 3: Valley condensation breathing cycle */
@keyframes organicMistFlow3 {
  0% {
    opacity: 0.55;
    transform: translate3d(-20%, 0, 0) scale(1);
  }
  30% {
    opacity: 0.05; /* Almost transparent mist */
    transform: translate3d(-35%, -25px, 0) scale(1.18);
  }
  60% {
    opacity: 0.65; /* Thick cloud condensation */
    transform: translate3d(-50%, 8px, 0) scale(0.96);
  }
  80% {
    opacity: 0.0; /* Completely disappears */
    transform: translate3d(-65%, -15px, 0) scale(1.1);
  }
  100% {
    opacity: 0.55;
    transform: translate3d(-80%, 0, 0) scale(1);
  }
}

/* ==========================================================================
   AUREA COMING SOON MODAL STYLING
   ========================================================================== */
.coming-soon-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 13, 18, 0.85) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  z-index: 999999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 24px !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.coming-soon-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.coming-soon-modal-card {
  background: rgba(15, 23, 42, 0.96) !important;
  border: 1px solid rgba(255, 199, 44, 0.4) !important;
  border-radius: 28px !important;
  padding: 40px 36px !important;
  max-width: 480px !important;
  width: 100% !important;
  position: relative !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 199, 44, 0.25) !important;
  text-align: center !important;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.coming-soon-modal-overlay.active .coming-soon-modal-card {
  transform: scale(1) translateY(0) !important;
}

.coming-soon-close-btn {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  font-size: 22px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
}

.coming-soon-close-btn:hover {
  background: #FFC72C !important;
  color: #0A0D12 !important;
  border-color: #FFC72C !important;
}

.coming-soon-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  background: rgba(255, 199, 44, 0.15) !important;
  border: 1px solid rgba(255, 199, 44, 0.35) !important;
  border-radius: 999px !important;
  color: #FFC72C !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.coming-soon-title {
  font-family: var(--font-heading) !important;
  font-size: 2.2rem !important;
  color: #FFFFFF !important;
  margin: 0 0 14px 0 !important;
  font-weight: 500 !important;
}

.coming-soon-text {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6 !important;
  margin: 0 0 28px 0 !important;
}

.coming-soon-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 36px !important;
  background: #FFC72C !important;
  color: #0A0D12 !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.coming-soon-action-btn:hover {
  background: #FFFFFF !important;
  color: #0A0D12 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 199, 44, 0.35) !important;
}

/* ==========================================================================
   AUREA RE-CREATED 2-COLUMN ABOUT US SECTION
   ========================================================================== */
.elementor-element-0c3ed7b {
  padding: 90px 24px !important;
  background: #FFFFFF !important;
}

.aurea-about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
  width: 100% !important;
}

.aurea-about-image-wrap {
  position: relative !important;
  width: 100% !important;
}

.about-image-card {
  position: relative !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  border: none !important;
  height: 560px !important;
  width: 100% !important;
  cursor: pointer !important;
  background: transparent !important;
}

.about-main-img {
  width: 100% !important;
  height: 100% !important;
  max-height: 560px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 28px !important;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-img-default {
  position: relative !important;
  z-index: 1 !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

.about-img-hover {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  opacity: 0 !important;
  transform: scale(1) !important;
}

.about-image-card:hover .about-img-default,
.about-image-card.is-hovered .about-img-default {
  opacity: 0 !important;
  transform: scale(1.05) !important;
}

.about-image-card:hover .about-img-hover,
.about-image-card.is-hovered .about-img-hover {
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

.about-glass-floating-badge {
  position: absolute !important;
  bottom: 24px !important;
  right: 24px !important;
  background: rgba(10, 13, 18, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 199, 44, 0.4) !important;
  border-radius: 20px !important;
  padding: 16px 22px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  color: #FFFFFF !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4) !important;
}

.badge-number {
  font-family: var(--font-heading) !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: #FFC72C !important;
  line-height: 1 !important;
}

.badge-text {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.aurea-about-content-wrap {
  text-align: left !important;
}

.about-title {
  font-family: var(--font-heading) !important;
  font-size: 2.6rem !important;
  font-weight: 500 !important;
  color: #0A0D12 !important;
  margin: 16px 0 20px 0 !important;
  line-height: 1.2 !important;
}

.about-title span {
  color: #FFC72C !important;
}

.about-desc {
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  line-height: 1.6 !important;
  margin: 0 0 12px 0 !important;
}

.about-subdesc {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: #535862 !important;
  line-height: 1.6 !important;
  margin: 0 0 28px 0 !important;
}

.about-features-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 32px !important;
}

.about-feature-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.feature-icon-box {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255, 199, 44, 0.15) !important;
  border: 1px solid rgba(255, 199, 44, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.feature-text h6 {
  font-family: var(--font-body) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: #0A0D12 !important;
  margin: 0 0 2px 0 !important;
}

.feature-text p {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  color: #64748B !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.about-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  background: #FFC72C !important;
  color: #0A0D12 !important;
  border-radius: 14px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 20px rgba(255, 199, 44, 0.25) !important;
}

.about-cta-btn:hover {
  background: #0A0D12 !important;
  color: #FFC72C !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(10, 13, 18, 0.3) !important;
}

@media (max-width: 992px) {
  .aurea-about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ==========================================================================
   PURE NATIVE 4-CARD CAROUSEL SLIDER (ZERO EXTERNAL LIBRARIES)
   ========================================================================== */
#destinations {
  position: relative !important;
  padding: 85px 24px 95px 24px !important;
  background: #0A0D12 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  display: block !important;
}

#destinations .e-con-inner {
  max-width: 1240px !important;
  margin: 0 auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.aurea-native-slider-wrap {
  width: 100% !important;
  position: relative !important;
  margin-top: 36px !important;
  box-sizing: border-box !important;
}

.aurea-dest-viewport {
  width: 100% !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  padding: 12px 0 24px 0 !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.aurea-dest-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform !important;
  width: max-content !important;
  box-sizing: border-box !important;
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.aurea-dest-track:active {
  cursor: grabbing !important;
}

.aurea-dest-slide-item {
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}

/* ==========================================================================
   ANIMATED SAFARI ROAD BANNER & DRIVING JEEP ANIMATION
   ========================================================================== */
.aurea-safari-road-banner {
  position: relative !important;
  width: 100% !important;
  height: 80px !important;
  background: linear-gradient(180deg, #0A0D12 0%, #141A23 100%) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  box-sizing: border-box !important;
  border-top: 1px solid rgba(255, 199, 44, 0.15) !important;
  border-bottom: 1px solid rgba(255, 199, 44, 0.15) !important;
}

.aurea-road-track-line {
  position: absolute !important;
  bottom: 14px !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: repeating-linear-gradient(90deg, #FFC72C, #FFC72C 24px, transparent 24px, transparent 48px) !important;
  animation: roadLineMove 1.5s linear infinite !important;
}

@keyframes roadLineMove {
  0% { background-position: 0 0; }
  100% { background-position: -48px 0; }
}

.aurea-driving-jeep-wrap {
  position: absolute !important;
  bottom: 10px !important;
  left: -140px !important;
  animation: driveJeepAcross 14s linear infinite !important;
  z-index: 10 !important;
  cursor: pointer !important;
}

@keyframes driveJeepAcross {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 200px));
  }
}

.jeep-vehicle-body {
  animation: jeepBounce 0.4s ease-in-out infinite alternate !important;
}

@keyframes jeepBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

.wheel-spoke {
  transform-origin: center !important;
  animation: wheelRotate 0.3s linear infinite !important;
}

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

.headlight-beam-glow {
  animation: beamFlicker 2s ease-in-out infinite alternate !important;
}

@keyframes beamFlicker {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

.jeep-speech-bubble {
  position: absolute !important;
  top: -30px !important;
  left: 20px !important;
  background: #FFC72C !important;
  color: #0A0D12 !important;
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4) !important;
  pointer-events: none !important;
}

.jeep-speech-bubble::after {
  content: "" !important;
  position: absolute !important;
  bottom: -4px !important;
  left: 14px !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 5px solid #FFC72C !important;
}

.aurea-dest-frameless-card {
  position: relative !important;
  width: 100% !important;
  height: 440px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(255, 199, 44, 0.15) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
  cursor: pointer !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.dest-card-top-row {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.dest-category-pill {
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  background: rgba(10, 13, 18, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.dest-number-badge {
  font-family: var(--font-heading) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #FFC72C !important;
  background: rgba(10, 13, 18, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 199, 44, 0.35) !important;
  padding: 4px 12px !important;
  border-radius: 12px !important;
  letter-spacing: 0.02em !important;
}

.dest-gallery-count-pill {
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #FFC72C !important;
  background: rgba(10, 13, 18, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 199, 44, 0.4) !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.aurea-dest-frameless-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: rgba(255, 199, 44, 0.5) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 199, 44, 0.25) !important;
}

.dest-card-bg-wrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
}

.dest-card-bg-wrap img.dest-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.aurea-dest-frameless-card:hover .dest-card-bg-wrap img.dest-card-img {
  transform: scale(1.08) !important;
}

.dest-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 13, 18, 0.95) 100%) !important;
  z-index: 1 !important;
  transition: opacity 0.3s ease !important;
}

.dest-card-bottom-row {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 12px !important;
}

.dest-info-wrap {
  text-align: left !important;
  flex: 1 !important;
}

.dest-title {
  font-family: var(--font-heading) !important;
  font-size: 1.45rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85) !important;
}

.dest-subtext {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.dest-arrow-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(10, 13, 18, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 199, 44, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.aurea-dest-frameless-card:hover .dest-arrow-btn {
  background: #FFC72C !important;
  border-color: #FFC72C !important;
  transform: rotate(-45deg) scale(1.1) !important;
}

.aurea-dest-frameless-card:hover .dest-arrow-btn svg {
  stroke: #0A0D12 !important;
}

.aurea-slider-controls-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-top: 36px !important;
  width: 100% !important;
}

.aurea-nav-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 199, 44, 0.3) !important;
  color: #FFC72C !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.aurea-nav-btn:hover {
  background: #FFC72C !important;
  color: #0A0D12 !important;
  border-color: #FFC72C !important;
}

.aurea-dest-dots {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.aurea-dest-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.aurea-dest-dot.active {
  width: 28px !important;
  border-radius: 12px !important;
  background: #FFC72C !important;
}

/* ==========================================================================
   AUREA TOUR PACKAGE CARDS FRAMELESS STYLING
   ========================================================================== */
.aurea-card-item {
  border: none !important;
  box-shadow: none !important;
}

.aurea-card-item:hover {
  box-shadow: none !important;
}

.card-bg-wrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

.card-bg-wrap img.tour-card-bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(1.08) contrast(1.05) !important;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease !important;
}

.aurea-card-item:hover .card-bg-wrap img.tour-card-bg-img {
  transform: scale(1.08) !important;
  filter: brightness(1.15) contrast(1.08) !important;
}

.card-glass-badge {
  border: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   TRAVELER STORIES / TESTIMONIALS SECTION (PURE WHITE & EQUAL ALIGNMENT)
   ========================================================================== */
#testimonials,
.elementor-element-d904cf1 {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: #0A0D12 !important;
}

#testimonials .aurea-section-title {
  color: #0A0D12 !important;
}

#testimonials .aurea-section-title span {
  color: #FFC72C !important;
}

#testimonials .aurea-section-subtitle {
  color: #535862 !important;
}

#testimonials .aurea-section-badge {
  background: rgba(255, 199, 44, 0.15) !important;
  border-color: rgba(255, 199, 44, 0.4) !important;
  color: #B48000 !important;
}

#testimonials .ekit-main-swiper.swiper,
#testimonials .swiper {
  padding: 24px 8px 40px 8px !important;
  overflow: hidden !important;
}

#testimonials .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

#testimonials .swiper-slide {
  height: auto !important;
  display: flex !important;
}

#testimonials .swiper-slide-inner {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
}

#testimonials .elementskit-single-testimonial-slider {
  width: 100% !important;
  height: 100% !important;
  min-height: 290px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 30px 26px !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(10, 13, 18, 0.09) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
  text-align: left !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

#testimonials .elementskit-single-testimonial-slider:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(255, 199, 44, 0.4) !important;
}

#testimonials .elementskit-commentor-header {
  margin-bottom: 14px !important;
  text-align: left !important;
}

#testimonials .elementskit-stars {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#testimonials .elementskit-stars svg {
  width: 16px !important;
  height: 16px !important;
}

#testimonials .elementskit-stars svg.star-filled {
  fill: #FFC72C !important;
}

#testimonials .elementskit-stars svg.star-empty {
  fill: #CBD5E1 !important;
  opacity: 0.65 !important;
}

#testimonials .elementskit-commentor-content {
  flex-grow: 1 !important;
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

#testimonials .elementskit-commentor-content p {
  color: #334155 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  text-align: left !important;
  font-style: italic !important;
}

#testimonials .elementskit-commentor-bio {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  text-align: left !important;
}

#testimonials .elementkit-commentor-details {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-align: left !important;
}

#testimonials .elementskit-commentor-image img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #FFC72C !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

#testimonials .elementskit-profile-info {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

#testimonials .elementskit-author-name {
  color: #0A0D12 !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

#testimonials .elementskit-author-des,
#testimonials .elementskit-author-desg {
  color: #64748B !important;
  font-size: 0.84rem !important;
  margin-top: 2px !important;
}

/* ==========================================================================
   AUREA LANKA TRAVELS - MASTER MOBILE RESPONSIVE UI SYSTEM
   ========================================================================== */

/* Prevent horizontal overflow across all mobile screens */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

/* Fix iOS Safari auto-zoom on input focus */
input, select, textarea {
  font-size: 16px !important;
}

/* Touch target optimizations */
a, button, input[type="button"], input[type="submit"] {
  touch-action: manipulation !important;
}

/* Tablet & Mobile Screens (<= 992px) */
@media (max-width: 992px) {
  .aurea-about-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .about-image-card {
    height: 420px !important;
  }

  .elementor-element-fb78b1f {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  body {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Mobile Background Fix: Edge-to-edge frameless hero */
  .elementor-element-e0956a0,
  .hero-card-container,
  .elementor-element-7afbfcb > .elementor-element-e0956a0 {
    background-attachment: scroll !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Hero Section Typography & Spacing */
  .elementor-element-e0956a0 {
    padding: 60px 18px 40px 18px !important;
  }

  h1.ekit-heading--title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .elementor-element-b39332b p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  /* Hero Action Buttons - Full Width Stacking */
  .elementor-element-06bf207 {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .elementor-element-06bf207 .elementor-widget-button {
    width: 100% !important;
  }

  .elementor-element-06bf207 .elementor-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }

  /* Sticky Ghost Header Mobile Scaling */
  .aurea-ghost-nav {
    width: calc(100% - 24px) !important;
    top: 10px !important;
    height: 54px !important;
    padding: 0 16px !important;
  }

  .ghost-logo-img {
    max-height: 30px !important;
  }

  .aurea-ghost-menu {
    display: none !important;
  }

  /* Section Title Scaling */
  .aurea-section-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .aurea-section-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }

  /* Travel Planner Search Bar */
  .aurea-booking-search-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
    margin-top: 24px !important;
  }

  .booking-search-title {
    font-size: 1.35rem !important;
  }

  .booking-search-form {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .booking-select-input,
  .booking-date-input {
    height: 48px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
  }

  .booking-search-submit-btn {
    width: 100% !important;
    height: 50px !important;
    font-size: 0.95rem !important;
  }

  .booking-btn-wrap {
    margin-top: 6px !important;
  }

  .booking-btn-wrap .booking-field-label {
    display: none !important;
  }

  /* Simple Footer Mobile View */
  .aurea-simple-footer {
    padding: 40px 20px 30px 20px !important;
  }

  .aurea-simple-footer-inner {
    gap: 28px !important;
  }

  .aurea-simple-footer-nav {
    flex-wrap: wrap !important;
    gap: 10px 16px !important;
    justify-content: center !important;
  }

  .aurea-simple-footer-contact {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
}

/* Small Smartphone Screens (<= 640px) */
@media (max-width: 640px) {
  /* Packages Section Grid */
  .elementor-element-fb78b1f {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 32px !important;
  }

  .aurea-card-item {
    height: 440px !important;
    border-radius: 22px !important;
  }

  .card-content-overlay {
    padding: 24px 20px !important;
  }

  .card-item-title {
    font-size: 1.4rem !important;
    margin-bottom: 6px !important;
  }

  .card-item-snippet {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    -webkit-line-clamp: 2 !important;
    margin-bottom: 14px !important;
  }

  .btn-card-action {
    padding: 10px 20px !important;
    font-size: 13px !important;
  }

  /* About Us Section */
  .about-image-card {
    height: 340px !important;
  }

  .about-main-img {
    border-radius: 20px !important;
  }

  .about-title {
    font-size: 1.9rem !important;
    margin: 12px 0 16px 0 !important;
  }

  .about-desc {
    font-size: 0.95rem !important;
  }

  .about-subdesc {
    font-size: 0.88rem !important;
    margin-bottom: 20px !important;
  }

  .about-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 24px !important;
  }

  /* Popular Destinations Section */
  #destinations {
    padding: 50px 16px 60px 16px !important;
  }

  .aurea-dest-frameless-card {
    height: 380px !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .dest-title {
    font-size: 1.25rem !important;
  }

  .dest-subtext {
    font-size: 0.82rem !important;
  }

  .dest-arrow-btn {
    width: 38px !important;
    height: 38px !important;
  }

  .aurea-slider-controls-wrap {
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .aurea-nav-btn {
    width: 42px !important;
    height: 42px !important;
  }

  /* Safari Driving Road Banner */
  .aurea-safari-road-banner {
    height: 65px !important;
  }

  .jeep-speech-bubble {
    font-size: 0.65rem !important;
    padding: 2px 8px !important;
    top: -24px !important;
  }

  /* Floating Action Buttons Mobile Positioning */
  .aurea-floating-whatsapp {
    width: 48px !important;
    height: 48px !important;
    font-size: 25px !important;
    bottom: 18px !important;
    right: 16px !important;
  }

  .floating-theme-toggle-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 19px !important;
    bottom: 76px !important;
    right: 16px !important;
  }
}

/* Extra Small Phones (<= 400px) */
@media (max-width: 400px) {
  h1.ekit-heading--title {
    font-size: 1.8rem !important;
  }

  .aurea-card-item {
    height: 400px !important;
  }

  .about-image-card {
    height: 280px !important;
  }

  .aurea-dest-frameless-card {
    height: 340px !important;
  }

  .dest-category-pill,
  .dest-number-badge {
    font-size: 0.72rem !important;
    padding: 3px 8px !important;
  }
}

/* ==========================================================================
   AUREA LANKA TRAVELS - POPULAR DESTINATION PHOTO GALLERY MODAL LIGHTBOX
   ========================================================================== */
.dest-gallery-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: destGalleryFadeIn 0.25s ease forwards;
}

@keyframes destGalleryFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.dest-gallery-modal-card {
  background: #0E141E;
  border: 1px solid rgba(255, 199, 44, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 45px rgba(255, 199, 44, 0.12);
  border-radius: 22px;
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.dest-gallery-header {
  padding: 18px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #070A0F !important;
}

.dest-gallery-title-wrap {
  flex: 1 !important;
}

.dest-gallery-meta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 4px !important;
}

.dest-gallery-tag {
  background: rgba(255, 199, 44, 0.15) !important;
  color: #FFC72C !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 199, 44, 0.35) !important;
  letter-spacing: 0.3px !important;
}

.dest-gallery-region {
  color: #CBD5E1 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.dest-gallery-title,
h3.dest-gallery-title,
.dest-gallery-modal-card h3 {
  font-family: 'Sorts Mill Goudy', serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
  display: block !important;
}

.dest-gallery-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dest-gallery-counter {
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dest-gallery-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.dest-gallery-close-btn:hover {
  background: #FFC72C;
  color: #0A0A0A;
  transform: rotate(90deg);
}

.dest-gallery-stage {
  position: relative;
  width: 100%;
  height: 420px;
  background: #05070B;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dest-gallery-main-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.dest-gallery-main-img.switching {
  opacity: 0.3;
  transform: scale(0.98);
}

.dest-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 24px;
  background: linear-gradient(to top, rgba(5, 8, 12, 0.9) 0%, rgba(5, 8, 12, 0.5) 70%, transparent 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.dest-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10, 14, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.dest-gallery-nav-btn:hover {
  background: #FFC72C;
  border-color: #FFC72C;
  transform: translateY(-50%) scale(1.08);
}

.dest-gallery-nav-btn:hover svg {
  stroke: #0A0A0A;
}

.dest-gallery-nav-btn.prev-btn {
  left: 14px;
}

.dest-gallery-nav-btn.next-btn {
  right: 14px;
}

.dest-gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  background: #090D14;
  overflow-x: auto;
  scrollbar-width: thin;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dest-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.dest-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.dest-thumb-item {
  width: 76px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
  position: relative;
}

.dest-thumb-item:hover {
  opacity: 0.85;
}

.dest-thumb-item.active {
  opacity: 1;
  border-color: #FFC72C;
  box-shadow: 0 0 12px rgba(255, 199, 44, 0.5);
  transform: scale(1.04);
}

.dest-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-gallery-footer {
  padding: 14px 24px;
  background: #0E141E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dest-gallery-desc {
  color: #94A3B8;
  font-size: 13px;
  margin: 0;
  flex: 1;
  line-height: 1.45;
}

.dest-gallery-cta-btn {
  background: #FFC72C;
  color: #0A0A0A !important;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.dest-gallery-cta-btn:hover {
  background: #FFD56B;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 199, 44, 0.35);
}

@media (max-width: 768px) {
  .dest-gallery-stage {
    height: 280px;
  }
  .dest-gallery-modal-card {
    border-radius: 16px;
    max-height: 95vh;
  }
  .dest-gallery-title {
    font-size: 19px;
  }
  .dest-gallery-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .dest-gallery-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   AUREA LANKA TRAVELS - LUXURY CONTACT US & INQUIRY SECTION STYLES
   ========================================================================== */
.aurea-contact-section {
  padding: 90px 24px;
  background: radial-gradient(circle at 50% 0%, #151D2A 0%, #0A0D12 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 199, 44, 0.12);
}

.aurea-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.aurea-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: stretch;
}

/* Left Info Card */
.aurea-contact-info-card {
  background: rgba(18, 24, 36, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 199, 44, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 199, 44, 0.12);
  color: #FFC72C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 44, 0.25);
  margin-bottom: 20px;
  align-self: flex-start;
}

.contact-info-title {
  font-family: 'Sorts Mill Goudy', serif;
  font-size: 28px;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.contact-info-desc {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(10, 13, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.contact-method-item:hover {
  border-color: rgba(255, 199, 44, 0.4);
  background: rgba(255, 199, 44, 0.05);
  transform: translateX(4px);
}

.method-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.email-icon {
  background: rgba(255, 199, 44, 0.15);
  color: #FFC72C;
}

.location-icon {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
}

.method-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.method-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
  font-weight: 600;
}

.method-val {
  font-size: 15px;
  color: #F8FAFC;
  font-weight: 600;
}

.contact-perks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 999px;
}

.perk-pill i {
  color: #FFC72C;
  font-size: 11px;
}

/* Right Form Card */
.aurea-contact-form-card {
  background: rgba(18, 24, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.aurea-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-field-label {
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
}

.form-field-label .required {
  color: #EF4444;
}

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

.form-input-wrap .input-icon {
  position: absolute;
  left: 16px;
  color: #64748B;
  font-size: 14px;
  pointer-events: none;
  transition: color 0.2s;
}

.form-input-wrap.textarea-wrap .input-icon {
  top: 16px;
}

.form-control-lux {
  width: 100%;
  background: #0B1017;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px 13px 44px;
  transition: all 0.2s ease;
  outline: none;
}

select.form-control-lux {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC72C' 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 14px center;
  background-size: 14px;
  cursor: pointer;
}

select.form-control-lux option {
  background: #0B1017;
  color: #FFFFFF;
}

.form-input-wrap textarea.form-control-lux {
  padding: 16px;
  resize: vertical;
  min-height: 240px;
  line-height: 1.6;
}

.form-control-lux:focus {
  border-color: #FFC72C;
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.18);
  background: #0D141F;
}

.form-control-lux:focus + .input-icon,
.form-input-wrap:focus-within .input-icon {
  color: #FFC72C;
}

.form-control-lux::placeholder {
  color: #475569;
}

.contact-submit-btn {
  background: #FFC72C;
  color: #0A0A0A;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 8px;
  box-shadow: 0 4px 18px rgba(255, 199, 44, 0.3);
}

.contact-submit-btn:hover {
  background: #FFD56B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 199, 44, 0.45);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Alert Box */
.contact-alert-box {
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: fadeInDown 0.3s ease;
}

.contact-alert-box.alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86EFAC;
}

.contact-alert-box.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #FCA5A5;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .aurea-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .aurea-contact-form-card {
    padding: 30px 22px;
  }
  .aurea-contact-info-card {
    padding: 30px 22px;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .aurea-contact-section {
    padding: 60px 16px;
  }
}

/* ==========================================================================
   Traveler Review Source / TripAdvisor Proof Badge Styles
   ========================================================================== */
.review-proof-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #00AA6C !important;
  background: rgba(0, 170, 108, 0.12) !important;
  border: 1px solid rgba(0, 170, 108, 0.28) !important;
  border-radius: 20px !important;
  padding: 3px 10px !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  letter-spacing: 0.2px !important;
}

.review-proof-badge:hover {
  background: #00AA6C !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 170, 108, 0.25) !important;
}
}

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

.form-field-label {
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
}

.form-field-label .required {
  color: #EF4444;
}

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

.form-input-wrap .input-icon {
  position: absolute;
  left: 16px;
  color: #64748B;
  font-size: 14px;
  pointer-events: none;
  transition: color 0.2s;
}

.form-input-wrap.textarea-wrap .input-icon {
  top: 16px;
}

.form-control-lux {
  width: 100%;
  background: #0B1017;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px 13px 44px;
  transition: all 0.2s ease;
  outline: none;
}

select.form-control-lux {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC72C' 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 14px center;
  background-size: 14px;
  cursor: pointer;
}

select.form-control-lux option {
  background: #0B1017;
  color: #FFFFFF;
}

.form-input-wrap textarea.form-control-lux {
  padding: 16px;
  resize: vertical;
  min-height: 240px;
  line-height: 1.6;
}

.form-control-lux:focus {
  border-color: #FFC72C;
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.18);
  background: #0D141F;
}

.form-control-lux:focus + .input-icon,
.form-input-wrap:focus-within .input-icon {
  color: #FFC72C;
}

.form-control-lux::placeholder {
  color: #475569;
}

.contact-submit-btn {
  background: #FFC72C;
  color: #0A0A0A;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 8px;
  box-shadow: 0 4px 18px rgba(255, 199, 44, 0.3);
}

.contact-submit-btn:hover {
  background: #FFD56B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 199, 44, 0.45);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Alert Box */
.contact-alert-box {
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: fadeInDown 0.3s ease;
}

.contact-alert-box.alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86EFAC;
}

.contact-alert-box.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #FCA5A5;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .aurea-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .aurea-contact-form-card {
    padding: 30px 22px;
  }
  .aurea-contact-info-card {
    padding: 30px 22px;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .aurea-contact-section {
    padding: 60px 16px;
  }
}

/* ==========================================================================
   Traveler Review Source / TripAdvisor Proof Badge Styles
   ========================================================================== */
.review-proof-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #00AA6C !important;
  background: rgba(0, 170, 108, 0.12) !important;
  border: 1px solid rgba(0, 170, 108, 0.28) !important;
  border-radius: 20px !important;
  padding: 3px 10px !important;
  text-decoration: none !important;
  transition: all 0.22s ease !important;
  letter-spacing: 0.2px !important;
}

.review-proof-badge:hover {
  background: #00AA6C !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 170, 108, 0.25) !important;
}

.has-review-proof-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.has-review-proof-link:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08) !important;
}

/* ==========================================================================
   Header Navbar Reset & Precision Styling
   ========================================================================== */
ul.elementskit-navbar-nav,
ul#menu-menu {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.elementskit-navbar-nav li,
ul#menu-menu li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.elementskit-navbar-nav li::before,
ul.elementskit-navbar-nav li::marker,
ul#menu-menu li::before,
ul#menu-menu li::marker {
  content: none !important;
  display: none !important;
}

/* ==========================================================================
   HERO SECTION PERFECT LEFT-ALIGNED LAYOUT RECREATION
   ========================================================================== */
#home,
.elementor-element-7afbfcb {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: left !important;
  position: relative !important;
}

.elementor-element-e0956a0 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: clamp(24px, 6vw, 100px) !important;
  padding-right: clamp(24px, 4vw, 40px) !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.elementor-element-d471259 {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 780px !important;
  margin: 0 !important;
  text-align: left !important;
}

/* 1. Top Sub-heading Badge (Left Aligned) */
.elementor-element-330e38d {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 0 18px 0 !important;
  text-align: left !important;
}

.elementor-element-330e38d .elementor-heading-title {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  font-family: var(--font-body), 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #FFC72C !important;
  background: rgba(255, 199, 44, 0.14) !important;
  border: 1px solid rgba(255, 199, 44, 0.35) !important;
  padding: 6px 18px !important;
  border-radius: 999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  box-shadow: 0 4px 12px rgba(255, 199, 44, 0.15) !important;
  margin: 0 !important;
  text-align: left !important;
}

/* 2. Main H1 Title: "Authentic Journeys across Sri Lanka" (Left Aligned) */
.elementor-element-4952fb3,
.elementor-element-4952fb3 .ekit-wid-con,
.elementor-element-4952fb3 .ekit-heading,
.elementor-element-4952fb3 .elementskit-section-title-wraper {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin: 0 !important;
}

h1.ekit-heading--title,
.elementor-element-4952fb3 h1 {
  font-family: var(--font-heading), 'Sorts Mill Goudy', serif !important;
  font-size: 3.5rem !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  text-align: left !important;
  margin: 0 0 20px 0 !important;
  max-width: 760px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

h1.ekit-heading--title span,
.elementor-element-4952fb3 h1 span {
  color: #FFC72C !important;
  font-style: italic !important;
}

/* 3. Sub-description Paragraph (Left Aligned) */
.elementor-element-b39332b {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin: 0 !important;
}

.elementor-element-b39332b p {
  font-family: var(--font-body), 'Jost', sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-align: left !important;
  max-width: 620px !important;
  margin: 0 0 34px 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* 4. CTA Buttons Container (Left Aligned) */
.elementor-element-06bf207 {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 440px !important;
  margin: 0 !important;
}

.elementor-element-06bf207 .elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body), 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  border-radius: 999px !important;
  transition: all 0.3s ease !important;
}

/* Mobile Responsiveness for Left Aligned Hero */
@media (max-width: 768px) {
  .elementor-element-e0956a0 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  h1.ekit-heading--title,
  .elementor-element-4952fb3 h1 {
    font-size: 2.25rem !important;
    line-height: 1.22 !important;
    margin-bottom: 14px !important;
  }
  .elementor-element-b39332b p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  .elementor-element-06bf207 {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 280px !important;
  }
  .elementor-element-06bf207 .elementor-widget-button,
  .elementor-element-06bf207 .elementor-button {
    width: 100% !important;
  }
}
