:root {
  --primary-yellow: #FFC107; /* Golden Luxury */
  --primary-yellow-glow: rgba(255, 193, 7, 0.4);
  --dark-bg: #0A0A0A;
  --dark-card: #141414;
  --text-white: #FFFFFF;
  --text-gray: #B0B0B0;
  --whatsapp-green: #25D366;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-main: 'Outfit', sans-serif;
  --font-logo: 'Syncopate', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.5px; }

/* Elegant Header */
.header {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.taxi-text { color: var(--primary-yellow); }
.city-text { color: #fff; opacity: 0.9; }

.call-header-btn {
  font-size: 0.85rem;
  padding: 10px 20px;
  letter-spacing: 1px;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  gap: 12px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.btn:active {
  transform: scale(0.96);
  filter: brightness(1.1);
}

.btn-primary {
  background: var(--primary-yellow);
  color: #000;
}

.btn-yellow {
  background: linear-gradient(135deg, var(--primary-yellow), #FFA000);
  color: #000;
}

.btn-green {
  background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
  color: white;
}

.btn-large {
  padding: 18px 30px;
  font-size: 1rem;
}

.cta-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Hero Overhaul */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero-image-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
  transition: transform 10s ease;
}

.hero:hover .hero-image { transform: scale(1.05); }

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 60%;
  background: linear-gradient(to top, var(--dark-bg), transparent);
}

.gradient-text {
  font-size: 3.5rem;
  background: linear-gradient(to right, #fff, var(--primary-yellow));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 30px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.dot {
  width: 10px; height: 10px;
  background: #FF5252;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 10px #FF5252;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Glass Cards & Sections */
.section-padding { padding: 120px 0; }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-yellow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-yellow);
  margin-bottom: 25px;
  text-shadow: 0 0 20px var(--primary-yellow-glow);
}

/* Local Imagery Sections */
.local-section {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.local-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.local-content { z-index: 1; max-width: 500px; }
.local-content h3 { font-size: 2rem; margin-bottom: 10px; }

/* Rates Table */
.rates-wrapper { max-width: 800px; margin: 0 auto; }
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table td, .rates-table th {
  padding: 25px;
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}
.rates-table th { color: var(--primary-yellow); font-size: 1.2rem; }
.rates-table td strong { font-size: 1.3rem; }

/* Enhanced Footer */
.footer-new {
  background: #050505;
  padding: 100px 0 140px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
}

.footer-col h4 {
  color: var(--primary-yellow);
  font-family: var(--font-logo);
  font-size: 0.9rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a:hover { color: var(--primary-yellow); }

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-item i { color: var(--primary-yellow); font-size: 1.2rem; }

.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: #555;
  font-size: 0.85rem;
}

/* Sticky Mobile - Hidden by default */
.sticky-call-mobile {
  position: fixed;
  bottom: -100px; /* Hidden below */
  left: 0; width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(10,10,10,1), rgba(10,10,10,0));
  z-index: 2000;
  transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: block; /* Always block but hidden by position */
}

.sticky-call-mobile.show {
  bottom: 0;
}

@media (max-width: 768px) {
  .header .call-header-btn { display: none; }
  .gradient-text { font-size: 2.5rem; }
  .section-padding { padding: 80px 0; }
  .footer-grid { gap: 40px; }
  
  .cta-group {
    flex-direction: column; /* Stacked but slightly smaller */
  }
  
  /* Mobile optimized dual bar */
  .sticky-call-mobile {
    padding: 15px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
  }
  
  .sticky-container {
    display: flex;
    gap: 12px;
  }
  
  .sticky-container .btn {
    flex: 1;
    border-radius: 12px;
    padding: 18px 5px;
    font-size: 0.9rem;
  }
  
  /* Increased touch targets in footer */
  .footer-links a {
    padding: 10px 0;
  }
}

/* FAQ Accordion-like */
.faq-item-new {
  margin-bottom: 15px;
}
.faq-item-new h4 { margin-bottom: 10px; color: var(--primary-yellow); }

/* Premium Cookie Layout */
.cookie-banner {
  position: fixed;
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 600px;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-top: 2px solid var(--primary-yellow);
  padding: 25px 30px;
  border-radius: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cookie-banner.active {
  top: 30px;
}

.cookie-banner p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner a {
  color: var(--primary-yellow);
  text-decoration: underline;
  font-weight: 500;
}

/* Premium Cookie Button */
#accept-cookies {
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--primary-yellow);
  color: #000;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--primary-yellow-glow);
  transition: all 0.3s ease;
}

#accept-cookies:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    top: -500px;
  }
  
  .cookie-banner.active {
    top: 20px;
  }
  
  #accept-cookies {
    width: 100%;
  }
}

/* --- New Destinations Carousel (Reference Style - Dark Adaptation) --- */
.carousel-section {
  padding: 100px 0;
  background: var(--dark-bg); /* Back to dark */
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: flex;
  gap: 30px;
  /* animation: scrollInfinite 60s linear infinite; -- REMOVED for JS control */
  width: max-content;
  padding: 20px 0;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y; /* Prevent vertical scroll interference */
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* The Dark Glass Card */
.dest-card-new {
  width: 380px;
  background: var(--dark-card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dest-card-new:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-yellow);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

/* Card Image Header */
.dest-img-box {
  position: relative;
  height: 250px;
  width: 100%;
}

.dest-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card-new:hover .dest-img-box img {
    transform: scale(1.1);
}

/* Floating Badges */
.badge-blue, .badge-green {
  position: absolute;
  top: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.badge-blue { left: 15px; background: rgba(59, 130, 246, 0.9); backdrop-filter: blur(5px); }
.badge-green { left: 120px; background: rgba(16, 185, 129, 0.9); backdrop-filter: blur(5px); }

.price-float {
  position: absolute;
  bottom: 75px; /* Positioned above the button */
  right: 15px;
  color: #fff;
  font-size: 1.4rem; /* Slightly smaller to fit better above button */
  font-weight: 900;
  text-shadow: 0 2px 15px rgba(0,0,0,0.8);
  z-index: 2;
  text-align: right;
}

.btn-book-float {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--primary-yellow);
  color: #000;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-book-float:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Card Content Body */
.dest-body {
  padding: 28px;
}

.route-text {
  font-size: 0.85rem;
  color: var(--primary-yellow);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.dest-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
}

/* Grid Meta */
.dest-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #fff;
}

.meta-item i {
  color: var(--primary-yellow);
  font-size: 0.95rem;
}

/* Feature Checklist */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.feature-tag i { color: var(--primary-yellow); opacity: 0.7; }

@media (max-width: 768px) {
  .dest-card-new { width: 300px; }
  .carousel-track { animation-duration: 40s; gap: 20px; }
}
