/* ============================================
   PLATINUM SERVICES — Ultra-Premium Light Design System
   Crisp Porcelain & Ivory + Royal Navy Typography & Warm Satin Gold
   Modern Luxury Glassmorphism & Micro-Animations
   ============================================ */

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

/* === CSS Custom Properties (Luxury Light Theme) === */
:root {
  /* Primary Light Background Palette */
  --ps-bg-page: #f8fafc;
  --ps-bg-white: #ffffff;
  --ps-bg-alt: #f1f5f9;
  --ps-bg-card: #ffffff;
  --ps-bg-card-alt: #f8fafc;
  
  /* Text & Typography Colors (High Contrast on Light) */
  --ps-text-heading: #0f172a;
  --ps-text-primary: #1e293b;
  --ps-text-secondary: #475569;
  --ps-text-muted: #64748b;
  --ps-text-gold: #b48116;

  /* Metallic Satin Gold Accents */
  --ps-gold-light: #f5d77f;
  --ps-gold: #c5922e;
  --ps-gold-dark: #976b15;
  --ps-gold-glow: rgba(197, 146, 46, 0.25);
  --ps-gold-gradient: linear-gradient(135deg, #dfb152 0%, #c5922e 50%, #9e6f16 100%);
  --ps-gold-gradient-hover: linear-gradient(135deg, #eed080 0%, #dfb152 50%, #c5922e 100%);

  /* Vibrant Accent Colors */
  --ps-emerald: #059669;
  --ps-emerald-bg: rgba(5, 150, 105, 0.1);
  --ps-whatsapp: #25d366;
  --ps-blue-accent: #0284c7;

  /* Glassmorphism & Borders for Light Mode */
  --ps-glass-bg: rgba(255, 255, 255, 0.92);
  --ps-glass-border: rgba(197, 146, 46, 0.22);
  --ps-glass-border-hover: rgba(197, 146, 46, 0.6);
  --ps-border-subtle: #e2e8f0;
  --ps-glass-blur: blur(16px);

  /* Geometry & Spacing */
  --ps-section-padding: 85px 0;
  --ps-card-radius: 18px;
  --ps-btn-radius: 50px;

  /* Soft Luxury Shadows */
  --ps-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --ps-shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --ps-shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
  --ps-shadow-gold: 0 8px 25px rgba(197, 146, 46, 0.25);
  --ps-shadow-gold-lg: 0 12px 35px rgba(197, 146, 46, 0.4);

  /* Transitions */
  --ps-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ps-transition-fast: all 0.2s ease;
}

/* === Base Reset & Typography === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--ps-bg-page);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(197, 146, 46, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(2, 132, 199, 0.03) 0%, transparent 40%);
  color: var(--ps-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--ps-gold), var(--ps-gold-dark));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ps-gold-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ps-text-heading);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 3.2vw, 1.9rem); }
h4 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }

p, li {
  color: var(--ps-text-secondary);
  font-size: 1rem;
}

a {
  color: var(--ps-gold);
  text-decoration: none;
  transition: var(--ps-transition-fast);
}
a:hover {
  color: var(--ps-gold-dark);
  text-decoration: none;
}

::selection {
  background: var(--ps-gold-light);
  color: #0f172a;
}

/* === Top Announcement Promo Bar === */
.top-promo-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(197, 146, 46, 0.3);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #cbd5e1;
  text-align: center;
  position: relative;
  z-index: 10000;
}
.top-promo-bar strong {
  color: var(--ps-gold-light);
}
.top-promo-bar a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 8px;
}
.top-promo-bar a:hover {
  color: var(--ps-gold-light);
}

/* === Premium Light Navbar === */
#mainNav {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ps-border-subtle);
  padding: 14px 0;
  transition: var(--ps-transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  z-index: 9999;
}

#mainNav.navbar-shrink {
  background: rgba(255, 255, 255, 0.98) !important;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(197, 146, 46, 0.25);
}

#mainNav .navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  color: #0f172a !important;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#mainNav .navbar-brand .brand-star {
  color: var(--ps-gold);
  filter: drop-shadow(0 0 6px var(--ps-gold-glow));
  animation: pulseGold 2.5s infinite;
}

#mainNav .navbar-brand img {
  display: none;
}

#mainNav .nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155 !important;
  padding: 10px 18px !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--ps-transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--ps-gold-gradient);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--ps-gold-dark) !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid var(--ps-gold) !important;
  color: var(--ps-gold-dark) !important;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 8px;
  background: rgba(197, 146, 46, 0.08);
}

.navbar-toggler .fas {
  color: var(--ps-gold-dark);
}

.navbar-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ps-gold-gradient) !important;
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 9px 22px !important;
  border-radius: var(--ps-btn-radius) !important;
  margin-left: 14px;
  box-shadow: var(--ps-shadow-gold);
  transition: var(--ps-transition) !important;
  text-transform: none !important;
}

.navbar-phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--ps-shadow-gold-lg);
  color: #000000 !important;
}

.navbar-phone-cta::after {
  display: none !important;
}

/* === Hero Section & Carousel === */
.carousel-item {
  height: 88vh;
  min-height: 620px;
  background: no-repeat center center;
  background-size: cover;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.45) 0%,
    rgba(15, 23, 42, 0.65) 50%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 15%;
  text-align: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeIn 1s ease;
}

.hero-pill-badge i {
  color: var(--ps-gold-light);
}

.carousel-caption h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.carousel-caption h1 span.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-caption p {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(241, 245, 249, 0.95);
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff !important;
  background: transparent !important;
  opacity: 0.6;
  margin: 0 6px;
  transition: var(--ps-transition);
}

.carousel-indicators button.active {
  background: #ffffff !important;
  opacity: 1;
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* === Luxury Hero Trip Finder Widget (Light Theme) === */
.hero-trip-finder {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  margin-bottom: 50px;
}

.trip-finder-card {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12), 0 0 20px rgba(197, 146, 46, 0.08);
}

.trip-finder-card .form-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0f172a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trip-finder-card .form-label i {
  color: var(--ps-gold);
}

.trip-finder-card .form-select,
.trip-finder-card .form-control {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--ps-transition);
}

.trip-finder-card .form-select:focus,
.trip-finder-card .form-control:focus {
  background: #ffffff !important;
  border-color: var(--ps-gold) !important;
  box-shadow: 0 0 0 3px rgba(197, 146, 46, 0.2) !important;
}

.btn-finder-search {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--ps-gold-gradient) !important;
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 14px 20px;
  border: none;
  box-shadow: var(--ps-shadow-gold);
  transition: var(--ps-transition);
  cursor: pointer;
}

.btn-finder-search:hover {
  transform: translateY(-2px);
  box-shadow: var(--ps-shadow-gold-lg);
  color: #000000 !important;
}

/* === Live Trust Stats Counter Bar (Light Theme) === */
.stats-counter-section {
  background: #ffffff;
  border-top: 1px solid var(--ps-border-subtle);
  border-bottom: 1px solid var(--ps-border-subtle);
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-icon {
  font-size: 2rem;
  color: var(--ps-gold);
  margin-bottom: 8px;
  display: inline-block;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.stat-number span.gold {
  color: var(--ps-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ps-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Interactive Filter Tabs === */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab-btn {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  color: var(--ps-text-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--ps-transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--ps-shadow-sm);
}

.filter-tab-btn i {
  color: var(--ps-gold);
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  background: var(--ps-gold-gradient);
  border-color: transparent;
  color: #0f172a;
  box-shadow: var(--ps-shadow-gold);
  transform: translateY(-2px);
}

.filter-tab-btn:hover i,
.filter-tab-btn.active i {
  color: #0f172a;
}

/* === Ultra-Premium Tour Package Cards (Light Theme) === */
.package-card-luxury {
  background: #ffffff !important;
  border: 1px solid var(--ps-border-subtle) !important;
  border-radius: var(--ps-card-radius) !important;
  overflow: hidden;
  transition: var(--ps-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.package-card-luxury:hover {
  transform: translateY(-8px);
  border-color: var(--ps-gold) !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12), 0 0 20px rgba(197, 146, 46, 0.15);
}

.package-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.package-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.package-card-luxury:hover .package-img-wrapper img {
  transform: scale(1.08);
}

.package-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0f172a;
  color: var(--ps-gold-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.package-duration-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

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

.package-rating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.package-rating-bar .stars {
  color: #f59e0b;
  font-size: 0.9rem;
}

.package-location-text {
  font-size: 0.85rem;
  color: var(--ps-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.package-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.package-description {
  color: var(--ps-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature Inclusion Pills */
.package-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid var(--ps-border-subtle);
}

.inc-pill {
  font-size: 0.8rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.inc-pill i {
  color: var(--ps-emerald);
  font-size: 0.85rem;
}

.package-footer-action {
  margin-top: auto;
  border-top: 1px solid var(--ps-border-subtle);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.package-price-box {
  display: flex;
  flex-direction: column;
}

.price-original {
  font-size: 0.8rem;
  color: var(--ps-text-muted);
  text-decoration: line-through;
}

.price-discounted {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.price-per-person {
  font-size: 0.72rem;
  color: var(--ps-text-muted);
}

.package-btn-group {
  display: flex;
  gap: 8px;
}

/* === CTA & Gold Buttons === */
.btn-custom,
.btn-ps-gold {
  background: var(--ps-gold-gradient) !important;
  border: none;
  padding: 12px 30px;
  border-radius: var(--ps-btn-radius);
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--ps-transition);
  box-shadow: var(--ps-shadow-gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-custom::after,
.btn-ps-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 80%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.75s ease;
}

.btn-custom:hover::after,
.btn-ps-gold:hover::after {
  transform: rotate(30deg) translateX(100%);
}

.btn-custom:hover,
.btn-ps-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--ps-shadow-gold-lg);
  color: #000000 !important;
}

.btn-ps-outline {
  background: transparent !important;
  border: 2px solid var(--ps-gold) !important;
  padding: 10px 28px;
  border-radius: var(--ps-btn-radius);
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: var(--ps-transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ps-outline:hover {
  background: var(--ps-gold) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--ps-shadow-gold);
}

.btn-whatsapp-direct {
  background: #25d366 !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: var(--ps-btn-radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--ps-transition);
}

.btn-whatsapp-direct:hover {
  background: #1ebc57 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #ffffff !important;
}

.btn-warning {
  background: var(--ps-gold-gradient) !important;
  border: none !important;
  color: #0f172a !important;
  border-radius: var(--ps-btn-radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  padding: 9px 20px;
  font-size: 0.88rem;
  transition: var(--ps-transition);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: var(--ps-shadow-gold);
  color: #000000 !important;
}

/* === Interactive Trip Cost Estimator / Planner Widget (Light Theme) === */
.trip-estimator-section {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.trip-estimator-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 146, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.estimator-output-card {
  background: #f8fafc;
  border: 1px solid var(--ps-border-subtle);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-shadow: inset 0 2px 6px rgba(15, 23, 42, 0.02);
}

.estimator-price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin: 10px 0;
}

/* === Section Styling === */
.page-section {
  padding: var(--ps-section-padding);
  position: relative;
}

.section-gold-line {
  width: 80px;
  height: 3px;
  background: var(--ps-gold-gradient);
  margin: 16px auto 0;
  border-radius: 3px;
}

.section-subtitle-tag {
  display: inline-block;
  color: var(--ps-gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

/* === Feature & Value Cards (Light Theme) === */
.feature-card-luxury {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: var(--ps-card-radius);
  padding: 32px 24px;
  transition: var(--ps-transition);
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.feature-card-luxury:hover {
  transform: translateY(-8px);
  border-color: var(--ps-gold);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(197, 146, 46, 0.12);
  color: var(--ps-gold);
  margin-bottom: 20px;
  border: 1px solid rgba(197, 146, 46, 0.25);
  transition: var(--ps-transition);
}

.feature-card-luxury:hover .feature-icon-box {
  background: var(--ps-gold-gradient);
  color: #ffffff;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 20px var(--ps-gold-glow);
}

.feature-card-luxury h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

/* === Testimonial Luxury Cards (Light Theme) === */
.testimonial-card-luxury {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: var(--ps-card-radius);
  padding: 32px;
  height: 100%;
  transition: var(--ps-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.testimonial-card-luxury:hover {
  transform: translateY(-8px);
  border-color: var(--ps-gold);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.testimonial-text-content {
  font-style: italic;
  color: var(--ps-text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--ps-border-subtle);
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ps-gold-gradient);
  color: #0f172a;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.author-info small {
  color: var(--ps-text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--ps-emerald);
  margin-left: 6px;
  font-weight: 600;
}

/* === Luxury Gallery Grid === */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ps-card-radius);
  border: 1px solid var(--ps-border-subtle);
  height: 260px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0.9;
  transition: var(--ps-transition);
}

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

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.gallery-sub {
  color: #fde68a;
  font-size: 0.85rem;
}

/* === Day-by-Day Detailed Itinerary Timeline (Light Theme) === */
.itinerary-timeline {
  position: relative;
  padding-left: 30px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--ps-gold-gradient);
}

.itinerary-day-block {
  position: relative;
  margin-bottom: 24px;
}

.itinerary-day-marker {
  position: absolute;
  left: -30px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--ps-gold);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
}

.itinerary-day-card {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: 14px;
  padding: 20px 24px;
  transition: var(--ps-transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.itinerary-day-card:hover {
  border-color: var(--ps-gold);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.itinerary-day-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.itinerary-day-title .day-pill {
  background: var(--ps-gold);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
}

/* Inclusions & Exclusions Checklist (Light Theme) */
.inclusion-exclusion-box {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: var(--ps-card-radius);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

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

.checklist-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #334155;
}

.checklist-list.included li i {
  color: var(--ps-emerald);
  font-size: 1.1rem;
  margin-top: 3px;
}

.checklist-list.excluded li i {
  color: #ef4444;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Sticky Booking Box on Tour Pages (Light Theme) */
.sticky-booking-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: var(--ps-card-radius);
  padding: 30px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.1), 0 0 20px rgba(197, 146, 46, 0.08);
}

/* === Accordion / FAQ (Light Theme) === */
.accordion-item {
  background: #ffffff !important;
  border: 1px solid var(--ps-border-subtle) !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.accordion-button {
  background: #f8fafc !important;
  color: #0f172a !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  padding: 18px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(197, 146, 46, 0.1) !important;
  color: var(--ps-gold-dark) !important;
}

.accordion-body {
  background: #ffffff;
  color: var(--ps-text-secondary);
  border-top: 1px solid var(--ps-border-subtle);
  padding: 20px 24px;
  line-height: 1.7;
}

/* === Contact Form (Light Theme) === */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: var(--ps-card-radius);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--ps-transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background: #ffffff !important;
  border-color: var(--ps-gold) !important;
  box-shadow: 0 0 0 3px rgba(197, 146, 46, 0.2) !important;
}

.contact-form-card .form-control::placeholder {
  color: #94a3b8;
}

/* === Payment Gateway Section (Light Theme) === */
.payment-section {
  background: #ffffff;
  border: 1px solid var(--ps-border-subtle);
  border-radius: var(--ps-card-radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.payment-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #f8fafc;
  border: 1px solid var(--ps-border-subtle);
  border-radius: 12px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--ps-transition);
}

.payment-badge i {
  color: var(--ps-gold);
  font-size: 1.2rem;
}

.payment-badge:hover {
  border-color: var(--ps-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 146, 46, 0.15);
}

/* === Floating Widgets (WhatsApp Concierge & Back to Top) === */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 99999;
  transition: var(--ps-transition);
  cursor: pointer;
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulseRadar 2s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
  color: #ffffff !important;
}

.floating-back-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid var(--ps-gold);
  color: var(--ps-gold) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: var(--ps-transition);
  cursor: pointer;
}

.floating-back-top.show {
  opacity: 1;
  visibility: visible;
}

.floating-back-top:hover {
  background: var(--ps-gold);
  color: #ffffff !important;
  transform: translateY(-4px);
}

/* === Mobile Bottom Quick Action Dock === */
.mobile-action-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--ps-border-subtle);
  padding: 10px 16px;
  z-index: 99990;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
}

.mobile-dock-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.mobile-dock-call {
  background: var(--ps-gold-gradient);
  color: #0f172a !important;
}

.mobile-dock-wa {
  background: #25d366;
  color: #ffffff !important;
}

/* === Footer (Grounding Luxury Navy) === */
.footer {
  background: #0f172a !important;
  border-top: 1px solid rgba(197, 146, 46, 0.2);
  padding: 70px 0 30px;
  color: #cbd5e1;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--ps-gold-gradient);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  transition: var(--ps-transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  margin-right: 10px;
  transition: var(--ps-transition);
}

.footer-social a:hover {
  background: var(--ps-gold);
  color: #0f172a;
  border-color: var(--ps-gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(197, 146, 46, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(197, 146, 46, 0.4)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(197, 146, 46, 0.8)); }
}

@keyframes pulseRadar {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease;
}

/* === Responsive Tweaks === */
@media (max-width: 991px) {
  .hero-trip-finder {
    margin-top: 20px;
  }
  .trip-estimator-section {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --ps-section-padding: 60px 0;
  }

  body {
    padding-bottom: 60px; /* Space for mobile action dock */
  }

  .mobile-action-dock {
    display: flex;
    gap: 10px;
  }

  .floating-whatsapp-btn {
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }

  .floating-back-top {
    bottom: 145px;
    right: 24px;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .footer {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .itinerary-timeline {
    padding-left: 20px;
  }
}

/* === Utilities === */
.text-gold {
  color: var(--ps-gold) !important;
}

.bg-ps-light {
  background: var(--ps-bg-page) !important;
}

.bg-ps-white {
  background: #ffffff !important;
}

.border-gold {
  border-color: var(--ps-gold) !important;
}