/*
 * NOTE: All CSS variables are dynamically generated from Wagtail admin
 * Theme Settings. Do NOT define :root variables here.
 * To change colors, go to: Settings > Theme Settings in Wagtail admin
 * Only 4 base colors need to be changed:
 * - Primary Color (60% usage)
 * - Secondary Color (30% usage) 
 * - Accent Color (10% usage)
 * - Neutral Color (Background)
 */

/* ===== UTILITY COLOR CLASSES ===== */
.text-gold { color: var(--gold) !important; }
.text-pink { color: var(--pink) !important; }
.text-gray-custom { color: var(--gray) !important; }
.text-white { color: var(--white) !important; }

.bg-primary-custom { background-color: var(--primary) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-white-custom { background: var(--white) !important; }

.border-pink { border: 1px solid var(--pink-alpha-15) !important; }

/* ===== BASE STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
  font-size: 0.95rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== BUTTONS - Shared Base ===== */
.btn-base {
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
}

.btn-base:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--white-alpha-30), transparent);
  transition: left var(--transition-slow);
}

.btn-base:hover::before { left: 100%; }

/* ===== BUTTON - GOLD ===== */
.btn-gold {
  background: var(--gold);
  color: var(--primary) !important;
  border-color: var(--gold);
  padding: 10px 32px;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--primary) !important;
  border-color: var(--gold-dark);
}

.btn-gold.btn-sm {
  padding: 6px 20px;
  font-size: 0.85rem;
}

/* ===== BUTTON - OUTLINE LIGHT ===== */
.btn-outline-light-custom {
  border: 2px solid var(--shadow-white-medium);
  color: var(--white);
  padding: 10px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
}

.btn-outline-light-custom:hover {
  background: var(--white-alpha-08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px var(--shadow-dark);
}

/* ===== BUTTON - OUTLINE GRAY ===== */
.btn-outline-light {
  border: 2px solid var(--gray);
  color: var(--gray);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border-radius: var(--radius-full);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== BUTTON - WHATSAPP ===== */
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--whatsapp-alpha-30);
}

/* ===== BUTTON - SUBMIT ===== */
.btn-submit {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  padding: 12px 40px;
  font-weight: 600;
  border-radius: var(--radius-full);
  width: 100%;
}

.btn-submit:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--shadow-gold-medium);
}

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

/* ===== BUTTON - FILTER ===== */
.btn-filter {
  background: transparent;
  color: var(--gray) !important;
  border: 2px solid var(--gray-light);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.btn-filter:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-gold-light);
}

.btn-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary) !important;
  box-shadow: 0 8px 24px var(--shadow-gold-medium);
}

.btn-filter.active:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--primary) !important;
  box-shadow: 0 8px 28px var(--shadow-gold-medium);
}

/* ===== SCROLL INDICATOR ===== */
.btn-scroll-indicator {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white-alpha-10);
  border: 1px solid var(--shadow-white);
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.btn-scroll-indicator:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 20px 40px var(--shadow-gold-medium);
}

.btn-scroll-indicator.scrolled {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-scroll-indicator.scrolled:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(0, 0, 0, 0.25) !important;  /* Changed from transparent to dark tint */
  backdrop-filter: blur(4px);  /* Added subtle blur for better readability */
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
  padding: 10px 0;
  box-shadow: none;
  border-bottom: none;
}

.navbar-custom.scrolled {
  background: var(--white-alpha-96) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 30px var(--dark-alpha-06);
  padding: 4px 0;
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.navbar-custom.scrolled .navbar-brand {
  color: var(--dark) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.navbar-custom.scrolled .navbar-brand .text-gold {
  color: var(--gold) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

.navbar-custom.scrolled .navbar-toggler {
  color: var(--dark);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Nav Links - Shared */
.nav-link-base {
  font-weight: 500;
  padding: 6px 14px;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link-base:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-link-base:not(.dropdown-toggle):hover::after {
  width: calc(100% - 28px);
}

.nav-link-base:hover {
  color: var(--gold) !important;
}

.nav-link-custom {
  color: var(--white) !important;
  composes: nav-link-base;
}

.navbar-custom.scrolled .nav-link-custom {
  color: var(--dark) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.navbar-custom.scrolled .nav-link-custom:hover {
  color: var(--gold) !important;
}

/* Dropdown Toggle */
.nav-link-custom.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 24px;
}

.nav-link-custom.dropdown-toggle::after {
  position: static;
  width: auto;
  height: auto;
  font-size: 0.1em;
  background: none;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  content: '';
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 6px;
  transition: transform var(--transition-fast);
  vertical-align: middle;
}

.navbar-custom.scrolled .nav-link-custom.dropdown-toggle::after {
  border-color: var(--gold);
}

.nav-link-custom.dropdown-toggle:hover::after {
  border-color: var(--gold);
}

/* Dropdown Menu */
.dropdown-menu-custom {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  margin-top: 6px;
  background: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  display: block;
}

.nav-item.dropdown:hover > .dropdown-menu-custom {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 0;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-item-custom {
  padding: 6px 22px;
  font-weight: 500;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.dropdown-item-custom i {
  width: 26px;
  display: inline-block;
  margin-right: 4px;
  color: var(--primary);
}

.dropdown-item-custom:hover {
  background: var(--cream);
  padding-left: 28px;
  color: var(--primary);
}

/* Navbar Border Progress */
#navbarBorder {
  position: fixed;
  top: 58px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 9998;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 2px 8px var(--shadow-gold-medium);
}

.hero-custom {
  height: 80vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white); 
}

/* As the effective viewport widens (zoom out / big screens), 
   step the height down so it never just flat-lines at max-height */
@media (min-width: 1400px) {
  .hero-custom {
    min-height: 75vh;
    max-height: 820px;
  }
}

@media (min-width: 1700px) {
  .hero-custom {
    min-height: 70vh;
    max-height: 740px;
  }
}

@media (min-width: 1920px) {
  .hero-custom {
    min-height: 65vh;
    max-height: 660px;
  }
}

@media (min-width: 2200px) {
  .hero-custom {
    min-height: 60vh;
    max-height: 580px;
  }
}

@media (min-width: 2600px) {
  .hero-custom {
    min-height: 55vh;
    max-height: 500px;
  }
}

.hero-custom h1 {
  font-size: 3.2rem;
  color: var(--white);
}

.hero-custom .lead {
  font-size: 1.1rem;
  color: var(--white);
}

.hero-custom > .container {
  position: relative;
  z-index: 1;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;   /* NEW: same cap as the footer */
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;             /* CHANGED: just fills .hero-slideshow now */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}


.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero-slide .hero-content {
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.hero-slide.active .hero-content {
  opacity: 1;
  visibility: visible;
}

/* Hero Navigation */
.hero-nav-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  pointer-events: none;
}

.hero-custom:hover .hero-nav-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white-alpha-15);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-alpha-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 10;
}

.hero-nav:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
  left: 30px;
}

.hero-nav.next {
  right: 30px;
}

/* Hero Dots */
.hero-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex: 1;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-alpha-40);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: var(--gold);
}

.badge-row-inline {
  padding: 16px 0;
  margin-top: -60px; 
}

.badge-row-inline .badge {
  background: var(--primary-alpha-92) !important;
  backdrop-filter: blur(4px);
  border: 1px solid var(--shadow-gold-light);
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px var(--shadow-dark);
  transition: all var(--transition-base);
  color: var(--white);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.badge-row-inline .badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--shadow-gold-light), transparent);
  transition: left var(--transition-slow);
}

.badge-row-inline .badge:hover::before {
  left: 100%;
}

.badge-row-inline .badge:hover {
  transform: translateY(-3px);
  background: var(--gold) !important;
  color: var(--primary) !important;
  border-color: var(--gold);
}

.badge-row-inline .badge i {
  margin-right: 6px;
}

/* ===== CARDS - Shared Base ===== */
.card-base {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  overflow: hidden;
}

.card-base:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-base .card-img-top {
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.card-base:hover .card-img-top {
  transform: scale(1.04);
}

.card-base .card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.card-base h5 {
  font-size: 1.05rem;
  color: var(--dark);
}

.card-base p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Card - Modern */
.card-modern {
  composes: card-base;
}

/* Card - Testimonial */
.testimonial-card {
  composes: card-base;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:nth-child(1) {
  background: linear-gradient(180deg, var(--primary-alpha-03) 0%, var(--white) 50%);
}
.testimonial-card:nth-child(2) {
  background: linear-gradient(180deg, var(--gold-alpha-03) 0%, var(--white) 50%);
}
.testimonial-card:nth-child(3) {
  background: linear-gradient(180deg, var(--primary-alpha-03) 0%, var(--white) 50%);
}
.testimonial-card:nth-child(4) {
  background: linear-gradient(180deg, var(--pink-alpha-03) 0%, var(--white) 50%);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: var(--gold-alpha-08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card .card-body {
  position: relative;
  z-index: 1;
}

.vehicle-card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white-alpha-95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gold-alpha-10);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--shadow-gold-medium);
}

.vehicle-card-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  flex-shrink: 0;
}

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

.vehicle-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  padding: 40px 20px 20px;
  color: var(--white);
  transition: all 0.4s ease;
  height: auto;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vehicle-card:hover .vehicle-card-overlay {
  background: var(--gradient-vehicle-overlay);
  padding: 24px 20px 20px;
  height: 100%;
  justify-content: flex-end;
}

.vehicle-card:hover .vehicle-card-title {
  position: static;
  margin-bottom: 4px;
}
.vehicle-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.vehicle-card-subtitle {
  font-size: 0.8rem;
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.vehicle-card:hover .vehicle-card-subtitle {
  opacity: 0.8;
  max-height: 30px;
  margin-bottom: 12px;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.vehicle-card:hover .vehicle-specs {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 16px;
}

.vehicle-spec {
  background: var(--white-alpha-15);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vehicle-spec i {
  color: var(--gold);
}

.vehicle-desc {
  font-size: 0.8rem;
  opacity: 0;
  max-height: 0;
  line-height: 1.5;
  margin-bottom: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.vehicle-card:hover .vehicle-desc {
  opacity: 0.9;
  max-height: 80px;
  margin-bottom: 16px;
}

.vehicle-btn {
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition-base);
  opacity: 0;
  transform: translateY(10px);
}

.vehicle-card:hover .vehicle-btn {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-gold-medium);
}
.vehicle-rental-section {
  position: relative;
  overflow: hidden;
  background: var(--white);   /* shows in the gutters, same as footer/hero */
}

.vehicle-rental-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.vehicle-rental-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15,46,37,0.85), rgba(15,46,37,0.92));
}

.vehicle-rental-section .container {
  position: relative;
  z-index: 2;
}

/* ===== ICON STYLES ===== */
.support-icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  margin: 0 auto 16px;
  transition: all var(--transition-slow);
}

.card-modern:hover .support-icon-circle {
  transform: rotate(8deg) scale(1.02);
  background: var(--gold);
  color: var(--primary);
}

.activity-icon-square {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 12px;
  transition: all 0.4s ease;
}

.card-modern:hover .activity-icon-square {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.feature-icon-circle {
  width: 54px;
  height: 54px;
  background: var(--gold-alpha-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  transition: all var(--transition-base);
  margin: 0 auto 12px;
}

.card-modern:hover .feature-icon-circle {
  background: var(--gold);
  color: var(--primary);
}

/* ===== BADGES ===== */
.badge-soft {
  background: var(--gold) !important;
  color: var(--primary) !important;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}

.badge-pink-soft {
  background: var(--pink-alpha-10);
  color: var(--pink);
}

.badge-category {
  background: var(--gold) !important;
  color: var(--primary) !important;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: all var(--transition-base);
  border: 1px solid var(--gold-alpha-10);
}

.badge-category:hover {
  background: var(--gold-light) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-gold-medium);
}

.badge-tag {
  background: var(--gold-alpha-10) !important;
  color: var(--gray) !important;
  border: 1px solid var(--gold-alpha-10);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.badge-tag:hover {
  background: var(--gold) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-gold-light);
}

/* ===== SECTION PADDING ===== */
.section-padding {
  padding: 30px 0;
  scroll-margin-top: 70px; /* Add this - adjusts for fixed header */
}

/* ===== DESTINATION OVERLAY ===== */

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  /* Adds safe padding clearance so arrows sit outside the carousel track */
  padding: 0 55px; 
}

@media (max-width: 767px) {
  .testimonial-carousel-outer {
    padding: 0 35px;
  }
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .testimonial-slide {
    flex: 0 0 33.333%;
  }
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--shadow-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  z-index: 10;
}

.testimonial-nav:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
  left: 0px;
}

.testimonial-nav.next {
  right: 0px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--shadow-gold-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ===== HONEYMOON SECTION - EXCEPTION ALLOWED ===== */
.honeymoon-section {
  position: relative;
  overflow: hidden;
}

.honeymoon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 20% 20%, var(--pink-alpha-06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, var(--gold-alpha-05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--pink-alpha-03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.honeymoon-section .container {
  position: relative;
  z-index: 2;
}

/* Floating Hearts */
.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  color: var(--pink-alpha-12);
  font-size: 1.5rem;
  animation: floatHeart 12s infinite ease-in-out;
  opacity: 0;
}

.floating-heart:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  font-size: 2rem;
}
.floating-heart:nth-child(2) {
  left: 15%;
  animation-delay: 1.5s;
  font-size: 1.5rem;
}
.floating-heart:nth-child(3) {
  left: 25%;
  animation-delay: 3s;
  font-size: 2.2rem;
}
.floating-heart:nth-child(4) {
  left: 35%;
  animation-delay: 4.5s;
  font-size: 1.3rem;
}
.floating-heart:nth-child(5) {
  left: 45%;
  animation-delay: 6s;
  font-size: 1.8rem;
}
.floating-heart:nth-child(6) {
  left: 55%;
  animation-delay: 7.5s;
  font-size: 1.6rem;
}
.floating-heart:nth-child(7) {
  left: 65%;
  animation-delay: 9s;
  font-size: 2rem;
}
.floating-heart:nth-child(8) {
  left: 75%;
  animation-delay: 10.5s;
  font-size: 1.4rem;
}
.floating-heart:nth-child(9) {
  left: 85%;
  animation-delay: 12s;
  font-size: 1.9rem;
}
.floating-heart:nth-child(10) {
  left: 95%;
  animation-delay: 1.8s;
  font-size: 1.7rem;
}

@keyframes floatHeart {
  0% {
    bottom: -50px;
    opacity: 0;
    transform: translateX(0) rotate(0deg) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    transform: translateX(30px) rotate(15deg) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(-30px) rotate(-15deg) scale(0.5);
  }
}

.floating-heart-mini {
  display: inline-block;
  transition: transform var(--transition-base);
}

.card-modern.border-pink:hover .floating-heart-mini {
  transform: scale(1.3);
  color: var(--pink);
}

@keyframes pulseHeart {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Honeymoon Corners */
.honeymoon-corner {
  position: absolute;
  font-size: 3rem;
  color: var(--pink-alpha-08);
  pointer-events: none;
  z-index: 1;
}

.honeymoon-corner.top-left {
  top: 20px;
  left: 20px;
  transform: rotate(-15deg);
}
.honeymoon-corner.top-right {
  top: 20px;
  right: 20px;
  transform: rotate(15deg);
}
.honeymoon-corner.bottom-left {
  bottom: 20px;
  left: 20px;
  transform: rotate(15deg);
}
.honeymoon-corner.bottom-right {
  bottom: 20px;
  right: 20px;
  transform: rotate(-15deg);
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--primary-dark);
  color: var(--white-alpha-80);
  font-size: 0.85rem;
  position: relative;
}

.footer-image-wrapper {
  position: relative;
  width: 100vw;
  max-width: 1920px;   /* NEW: stop growing past this */
  left: 50%;
  transform: translateX(-50%);
  height: 420px;
  overflow: hidden;
  z-index: 1;
  background: var(--white);   /* CHANGED: was var(--primary-light) — this is what shows in the gutters */
}

.footer-image {
  width: 100%;          /* CHANGED: was 100vw — now just fills its (capped) parent */
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  position: static;     /* CHANGED: no longer needs its own left/transform */
}

.footer-image-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--primary-dark) 0%, transparent 100%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  padding: 10px 0 10px;
  background: transparent;
}

.footer-widget-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-widget-text {
  color: var(--white-alpha-80);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-alpha-90);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold-alpha-10);
  transition: all var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--gold);
  background: var(--primary-dark);
  border-color: var(--shadow-gold-medium);
}

.footer-contact-item i {
  color: var(--gold);
  width: 18px;
}

.footer-address {
  font-style: normal;
  color: var(--white-alpha-70);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold-alpha-10);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: var(--white-alpha-06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid var(--white-alpha-08);
  font-size: 0.9rem;
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  position: relative;
  z-index: 3;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: var(--white-alpha-85);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--primary-dark);
  backdrop-filter: blur(2px);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 14px;
  background: var(--primary-dark);
}

.footer-heritage-badge {
  background: var(--gold-alpha-08);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  display: inline-block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
  border: 1px solid var(--gold-alpha-10);
}

/* Footer Stats */
.footer-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--white-alpha-06);
  border-bottom: 1px solid var(--white-alpha-06);
  margin-bottom: 1rem;
}

.footer-stat-item {
  text-align: center;
  color: var(--white-alpha-85);
}

.footer-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.footer-stat-label {
  font-size: 0.75rem;
  color: var(--white-alpha-50);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Base */
.footer-base {
  background: var(--primary-dark);
  border-top: 1px solid var(--gold-alpha-10);
  padding: 12px 0;
  margin-top: auto;
}

.footer-base-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-base .footer-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0;
}

.footer-base .footer-stat-item {
  text-align: center;
  color: var(--white-alpha-90);
}

.footer-base .footer-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.footer-base .footer-stat-label {
  font-size: 0.65rem;
  color: var(--white-alpha-60);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-base .footer-copyright {
  font-size: 0.75rem;
  color: var(--white-alpha-60);
  white-space: nowrap;
}

.footer-base .footer-copyright a {
  color: var(--white-alpha-80);
  text-decoration: none;
}

.footer-base .footer-copyright a:hover {
  color: var(--gold);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--dark-alpha-25);
  transition: all var(--transition-base);
  animation: fadeInUp 0.4s ease-out backwards;
}

.floating-btn:nth-child(1) {
  animation-delay: 0.1s;
}
.floating-btn:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-btn.whatsapp {
  background: var(--whatsapp);
}

.floating-btn.whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
}

.floating-btn.back-to-top {
  background: var(--primary);
}

.floating-btn.back-to-top:hover {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.1);
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: 0 30px 60px var(--shadow-dark);
}

.modal-header {
  border-bottom: none;
  background: var(--gold);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;   /* CHANGED: was center */
  padding-top: 12vh;         /* NEW: space from the top */
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
  overflow: hidden;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;   /* keeps it from ever covering content again once hidden */
}

.loader-scene {
  position: relative;
  width: 320px;
  height: 200px;
}
/* Stars */
.loader-star {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.loader-star:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 3px;
  height: 3px;
  animation-delay: 0s;
}
.loader-star:nth-child(2) {
  top: 15%;
  right: 8%;
  width: 2px;
  height: 2px;
  animation-delay: 0.5s;
}
.loader-star:nth-child(3) {
  top: 8%;
  left: 20%;
  width: 2.5px;
  height: 2.5px;
  animation-delay: 1s;
}
.loader-star:nth-child(4) {
  top: 25%;
  right: 15%;
  width: 1.5px;
  height: 1.5px;
  animation-delay: 1.5s;
}
.loader-star:nth-child(5) {
  top: 5%;
  left: 60%;
  width: 2px;
  height: 2px;
  animation-delay: 2s;
}
.loader-star:nth-child(6) {
  top: 18%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation-delay: 2.5s;
}
.loader-star:nth-child(7) {
  top: 30%;
  left: 10%;
  width: 2px;
  height: 2px;
  animation-delay: 0.8s;
}
.loader-star:nth-child(8) {
  top: 12%;
  right: 30%;
  width: 2.5px;
  height: 2.5px;
  animation-delay: 1.8s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Moon */
.loader-moon {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 30%, #fff8e7 0%, var(--gold-light) 60%, var(--gold) 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--shadow-gold-medium), 0 0 60px var(--shadow-gold-medium);
  animation: moon-glow 4s ease-in-out infinite;
  z-index: 5;
}

@keyframes moon-glow {
  0%,
  100% {
    box-shadow: 0 0 30px var(--shadow-gold-medium), 0 0 60px var(--shadow-gold-medium);
  }
  50% {
    box-shadow: 0 0 40px var(--shadow-gold-medium), 0 0 80px var(--shadow-gold-medium);
  }
}

/* Mountains */
.loader-mountain-back {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--primary-dark) 0%, var(--primary) 100%);
  clip-path: polygon(0 100%, 15% 30%, 35% 65%, 55% 25%, 75% 55%, 90% 20%, 100% 40%, 100% 100%);
  z-index: 3;
}

.loader-mountain-front {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--primary-dark) 0%, var(--primary-dark) 100%);
  clip-path: polygon(0 100%, 10% 40%, 30% 70%, 50% 30%, 70% 60%, 85% 25%, 100% 35%, 100% 100%);
  z-index: 4;
}

.loader-snow-cap {
  position: absolute;
  bottom: 100px;
  background: var(--white-alpha-90);
  border-radius: 50% 50% 0 0;
  z-index: 4;
}

.loader-snow-cap.cap-1 {
  left: 20%;
  width: 30px;
  height: 20px;
}
.loader-snow-cap.cap-2 {
  left: 55%;
  width: 40px;
  height: 25px;
}
.loader-snow-cap.cap-3 {
  left: 82%;
  width: 25px;
  height: 15px;
}

/* Plane */
.loader-plane {
  position: absolute;
  top: 35%;
  left: -80px;
  z-index: 10;
  transform: translateX(0);
  animation: plane-fly 6s ease-in-out infinite;
}

.loader-plane i {
  font-size: 3rem;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px var(--dark-alpha-50));
  transform: rotate(90deg);
  animation: plane-bob 3s ease-in-out infinite;
  display: block;
}

@keyframes plane-bob {
  0%,
  100% {
    transform: rotate(90deg) translateY(0) rotate(-1deg);
  }
  50% {
    transform: rotate(90deg) translateY(-8px) rotate(1deg);
  }
}

.plane-trail {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-alpha-10), var(--shadow-white));
  border-radius: 2px;
  animation: trail-pulse 1s ease-out infinite;
}

@keyframes trail-pulse {
  0% {
    width: 50px;
    opacity: 0.8;
  }
  100% {
    width: 70px;
    opacity: 0;
  }
}

@keyframes plane-fly {
  0% {
    transform: translateX(-100px) translateY(0) rotate(-2deg);
  }
  10% {
    transform: translateX(-30px) translateY(-10px) rotate(0deg);
  }
  25% {
    transform: translateX(50px) translateY(-15px) rotate(1deg);
  }
  40% {
    transform: translateX(130px) translateY(-10px) rotate(0deg);
  }
  55% {
    transform: translateX(220px) translateY(0px) rotate(-1deg);
  }
  70% {
    transform: translateX(300px) translateY(10px) rotate(0deg);
  }
  85% {
    transform: translateX(380px) translateY(5px) rotate(1deg);
  }
  100% {
    transform: translateX(460px) translateY(0) rotate(0deg);
  }
}

/* Clouds */
.loader-cloud {
  position: absolute;
  background: var(--white-alpha-08);
  border-radius: 50px;
  z-index: 6;
  animation: cloud-drift 20s linear infinite;
}

.loader-cloud::before,
.loader-cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.cloud-1 {
  top: 15%;
  left: -120px;
  width: 80px;
  height: 25px;
  animation-delay: 0s;
}
.cloud-1::before {
  top: -15px;
  left: 15px;
  width: 30px;
  height: 30px;
}
.cloud-1::after {
  top: -8px;
  right: 10px;
  width: 25px;
  height: 25px;
}

.cloud-2 {
  top: 25%;
  right: -100px;
  width: 60px;
  height: 20px;
  animation-delay: -5s;
  animation-duration: 25s;
}
.cloud-2::before {
  top: -12px;
  left: 10px;
  width: 25px;
  height: 25px;
}
.cloud-2::after {
  top: -6px;
  right: 5px;
  width: 20px;
  height: 20px;
}

.cloud-3 {
  top: 8%;
  left: 30%;
  width: 70px;
  height: 22px;
  animation-delay: -10s;
  animation-duration: 18s;
}
.cloud-3::before {
  top: -14px;
  left: 12px;
  width: 28px;
  height: 28px;
}
.cloud-3::after {
  top: -7px;
  right: 8px;
  width: 22px;
  height: 22px;
}

@keyframes cloud-drift {
  from {
    transform: translateX(-150px);
  }
  to {
    transform: translateX(calc(100vw + 150px));
  }
}

.loader-text {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 15;
}

.loader-text-main {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.loader-text-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--white-alpha-50);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loader-progress {
  width: 200px;
  height: 3px;
  background: var(--white-alpha-10);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 3px;
  animation: progress-fill 6s ease-in-out infinite;
}

@keyframes progress-fill {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

.loader-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise 6s ease-out infinite;
}

.loader-particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}
.loader-particle:nth-child(2) {
  left: 40%;
  animation-delay: 1s;
}
.loader-particle:nth-child(3) {
  left: 60%;
  animation-delay: 2s;
}
.loader-particle:nth-child(4) {
  left: 80%;
  animation-delay: 3s;
}
.loader-particle:nth-child(5) {
  left: 30%;
  animation-delay: 4s;
}
.loader-particle:nth-child(6) {
  left: 70%;
  animation-delay: 5s;
}

@keyframes particle-rise {
  0% {
    bottom: 80px;
    opacity: 0;
    transform: scale(0);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 180px;
    opacity: 0;
    transform: scale(0.5);
  }
}

/* ===== BLOG INDEX ===== */
.blog-grid .card {
  composes: card-base;
}

.blog-grid .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-grid .card:hover .card-img-top {
  transform: scale(1.03);
}

.blog-grid .card-body {
  padding: 1.5rem;
}

.blog-grid .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

.blog-grid .card-title:hover {
  color: var(--gold);
}

.blog-grid .card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
  border: 1px solid var(--gold-alpha-20);
  color: var(--gray);
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 8px !important; /* Rounded corners */
  font-weight: 500;
  font-size: 0.85rem;
  transition: all var(--transition-base);
  background: var(--white);
  min-width: 38px;
  text-align: center;
}

.pagination .page-link:hover {
  background: var(--gold-alpha-10);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-gold-light);
}

.pagination .page-item.active .page-link {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  box-shadow: 0 4px 12px var(--shadow-gold-medium);
  font-weight: 600;
}

.pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--gray-light);
  color: var(--gray-light);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-radius: 8px !important;
}

/* Make navigation arrows bolder */
.pagination .page-link i.bi-chevron-double-left,
.pagination .page-link i.bi-chevron-left,
.pagination .page-link i.bi-chevron-right,
.pagination .page-link i.bi-chevron-double-right {
  font-weight: 900 !important;
  font-size: 1rem !important;
  -webkit-text-stroke: 1px currentColor;
}

/* Alternative: Make all icons in pagination bolder */
.pagination .page-link i {
  font-weight: 900 !important;
  -webkit-text-stroke: 0.5px currentColor;
}

.blog-pagination-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* ===== BLOG PAGE ===== */
.blog-hero-section {
  margin-top: 0; /* Remove negative margin */
  border-bottom: 4px solid var(--gold);
  position: relative;
  min-height: 25vh; /* Reduced from 450px inline style */
  display: flex;
  align-items: flex-end;
  padding: 80px 0 20px; /* Reduced top and bottom padding */
}
.blog-hero-section .hero-bg-image,
.blog-hero-section .hero-overlay {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
}

.blog-hero-section .container {
  position: relative;
  z-index: 2;
}

.blog-hero-section .container.py-5 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.blog-hero-section h1.display-4 {
  font-size: 2rem !important; /* Smaller font size */
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.75rem !important;
}

.blog-hero-section .lead {
  font-size: 1rem !important; /* Smaller intro text */
  margin-bottom: 1rem !important;
}

.blog-hero-section .badge-category {
  font-size: 0.7rem !important;
  padding: 4px 12px !important;
  margin-bottom: 0.5rem;
}

.blog-hero-section .d-flex.align-items-center.small {
  font-size: 0.8rem !important;
  padding-top: 0.75rem !important;
}

.text-shadow {
  text-shadow: var(--text-shadow);
}

.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-body a:not(.btn-gold):not(.badge-category):not(.badge-tag) {
  color: var(--gold);
  text-decoration: none;
  transition: all var(--transition-base);
  border-bottom: 1px solid var(--shadow-gold-light);
}

.blog-body a:not(.btn-gold):not(.badge-category):not(.badge-tag):hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.rich-text-content a {
  color: var(--gold) !important;
  text-decoration: none;
  border-bottom: 1px solid var(--shadow-gold-light);
  transition: all var(--transition-base);
}

.rich-text-content a:hover {
  color: var(--gold-light) !important;
  border-bottom-color: var(--gold);
}

.two-column-wrapper a:not(.btn-gold) {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--shadow-gold-light);
  transition: all var(--transition-base);
}

.two-column-wrapper a:not(.btn-gold):hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.blog-tags {
  border-top-color: var(--gold-alpha-10) !important;
}

/* Responsive adjustments for blog hero */
@media (max-width: 768px) {
  .blog-hero-section {
    min-height: 22vh;
    padding: 60px 0 15px; /* Further reduced for mobile */
  }
}
  
  .blog-hero-section h1.display-4 {
    font-size: 1.5rem !important;
  }
  
  .blog-hero-section .lead {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .blog-hero-section .d-flex.align-items-center.small {
    font-size: 0.75rem !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
  }
}
/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-alpha-08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-alpha-05) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-alpha-08);
}

.contact-form-wrapper .form-control {
  border-radius: 12px;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  transition: all var(--transition-base);
  background: var(--cream);
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-alpha-10);
  background: var(--white);
}

.contact-form-wrapper .form-control.is-invalid {
  border-color: #dc3545;
}

.contact-form-wrapper .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form-wrapper textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.success-message {
  display: none;
  background: var(--gold-alpha-05);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.success-message .icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-details-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-alpha-08);
  height: 100%;
  transition: all 0.4s ease;
}

.contact-details-panel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-details-panel .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-alpha-04);
}

.contact-details-panel .detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-details-panel .detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold-alpha-08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-details-panel .detail-content .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details-panel .detail-content .value {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-details-panel .detail-content .value a {
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-details-panel .detail-content .value a:hover {
  color: var(--gold);
}

.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-alpha-06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid var(--gold-alpha-10);
  font-size: 1rem;
}

.contact-social-links .social-link:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px var(--shadow-gold-light);
}

.map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-alpha-08);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ===== STATIC PAGE ===== */
.static-page-content h2 {
  color: var(--primary);
  margin-top: 1.5rem;
  font-weight: 700;
}

.static-page-content h3 {
  color: var(--primary-light);
  margin-top: 1.3rem;
  font-weight: 600;
}

.static-page-content p {
  line-height: 1.8;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.static-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--primary-alpha-10);
}

.static-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--primary-alpha-08);
}

.static-page-content table th,
.static-page-content table td {
  border: 1px solid var(--gold-alpha-10);
  padding: 12px 15px;
  text-align: left;
}

.static-page-content table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.static-page-content table tr:nth-child(even) {
  background-color: var(--cream);
}

.static-page-content table tr:hover {
  background-color: var(--gold-alpha-10);
}

.static-page-content ul,
.static-page-content ol {
  padding-left: 1.5rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.static-page-content ul li::marker {
  color: var(--gold);
}

.static-page-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.static-page-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.static-page-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 15px 20px;
  margin: 1.5rem 0;
  background-color: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-primary);
}

.static-page-content hr {
  border-color: var(--gold-alpha-10);
  opacity: 0.5;
}

.static-page-content strong {
  color: var(--primary);
}

/* ===== TRAVEL DETAILS ===== */
.travel-hero {
  position: relative;
  min-height: 28vh; 
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary-dark);   /* NEW: gutter color matches the overlay tint, not white */
  padding: 100px 0 30px;
}

.travel-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.travel-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-travel-hero);
}

.travel-hero .container {
  position: relative;
  z-index: 2;
}

.travel-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-travel-hero);
  z-index: 1;
}

.travel-hero .container {
  position: relative;
  z-index: 2;
}

.travel-hero h1.display-3 {
  font-size: 2rem !important; 
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%; 
  max-width: 100%;
}

@media (max-width: 768px) {
  .travel-hero h1.display-3 {
    font-size: 1.5rem !important; 
  }
}
.gallery-img {
  cursor: pointer;
  transition: transform var(--transition-base);
}

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

.itinerary-day {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.itinerary-day::before {
  content: attr(data-day);
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.price-tag {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* ===== VEHICLE DETAILS ===== */
.vehicle-hero {
  position: relative;
  min-height: 25vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 100px 0 30px;
}

.vehicle-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.vehicle-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-vehicle-hero);
}

.vehicle-hero .container {
  position: relative;
  z-index: 2;
}
.vehicle-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-vehicle-hero);
  z-index: 1;
}

.vehicle-hero .container {
  position: relative;
  z-index: 2;
}

.vehicle-hero h1.display-4 {
  font-size: 2rem !important; /* Smaller font size */
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%; /* Full width of the col-12 */
  max-width: 100%;
}

.vehicle-hero .lead {
  font-size: 1rem !important; /* Smaller subtitle */
}

.vehicle-hero .badge-soft {
  font-size: 0.75rem !important;
  padding: 4px 12px !important;
}

.vehicle-hero .d-flex.gap-2 {
  gap: 0.75rem !important;
}

@media (max-width: 768px) {
  .vehicle-hero h1.display-4 {
    font-size: 1.5rem !important; /* Smaller on mobile */
  }
  
  .vehicle-hero {
    min-height: 25vh;
    padding: 80px 0 20px;
  }
  
  .vehicle-hero .lead {
    font-size: 0.9rem !important;
  }
}
@media (max-width: 576px) {
  .vehicle-hero .d-flex.gap-2 {
    flex-direction: column;
    gap: 0.5rem !important;
  }
}
.spec-icon {
  width: 40px; 
  height: 40px;
  border-radius: 10px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-alpha-08);
  color: var(--primary);
  font-size: 1rem; 
  margin: 0 auto; 
}

.vehicle-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.vehicle-link-card {
  transition: all var(--transition-base);
  border: 1px solid transparent;
  border-radius: 12px;
}

.vehicle-link-card:hover {
  border-color: var(--shadow-gold-medium);
  background-color: var(--gold-alpha-05);
  transform: translateX(5px);
}

/* ===== IMAGE/VIDEO CONSTRAINTS ===== */
.blog-page .blog-image-block img,
.blog-page .blog-video-block .video-thumbnail,
.blog-page .blog-video-block iframe {
  max-width: 50%;
  height: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .blog-page .blog-image-block img,
  .blog-page .blog-video-block .video-thumbnail,
  .blog-page .blog-video-block iframe {
    max-width: 100%;
  }
}

/* ===== CONTENT BLOCK ALIGNMENT ===== */
.content-block.aligned-content-block {
  margin-bottom: 2rem;
}

.content-block.aligned-content-block.full-width {
  max-width: 100%;
}

.content-block.aligned-content-block.left-align {
  max-width: 720px;
  float: left;
  padding-right: 2rem;
}

.content-block.aligned-content-block.right-align {
  max-width: 720px;
  float: right;
  padding-left: 2rem;
}

.content-block.aligned-content-block.center-align {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .content-block.aligned-content-block.left-align,
  .content-block.aligned-content-block.right-align,
  .content-block.aligned-content-block.center-align {
    float: none;
    max-width: 100%;
    margin: 0 auto;
  }
}

.content-block.aligned-content-block img {
  max-width: 100%;
  height: auto;
}

.content-block.aligned-content-block .blog-video-block {
  max-width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-custom h1 {
    font-size: 2.5rem;
  }
   .preloader {
    padding-top: 8vh;
  }
   .hero-custom {
    aspect-ratio: 4 / 5;  
    min-height: 420px;
  }

  .hero-nav {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  
  /* .hero-slideshow,
  .hero-slide {
    height: 70vh; 
  } */

  .hero-nav.prev {
    left: 10px;
  }
  .hero-nav.next {
    right: 10px;
  }

  .hero-nav-container {
    padding: 0 10px;
  }

  .footer-image-wrapper {
    height: 280px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-base-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-base .footer-stats {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .footer-base .footer-copyright {
    order: 1;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .blog-hero-section {
    margin-top: 0;
  }

  .blog-hero-section .container {
    min-height: 300px !important;
  }

  .blog-hero-section h1 {
    font-size: 2rem !important;
  }

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

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-details-panel {
    padding: 24px;
  }

  .map-section iframe {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .blog-hero-section .container {
    min-height: 250px !important;
  }

  .blog-hero-section h1 {
    font-size: 1.6rem !important;
  }

  .blog-hero-section .lead {
    font-size: 0.95rem !important;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

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

@media (max-width: 991px) {
  .sticky-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

