/* ==========================================================================
   SewaMobilBajo.com - Premium Dark Luxury Theme Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #081B33;
  --bg-navy: #102A4D;
  --primary: #FFB000;
  --primary-hover: #FF8C32;
  --text-white: #FFFFFF;
  --text-muted: #A5B4FC;
  --glass-bg: rgba(16, 42, 77, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-primary: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-navy);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utility Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--primary) !important;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title-container {
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  border-radius: 2px;
}

.section-title.text-start::after {
  left: 0;
  transform: none;
}

/* Premium Buttons */
.btn-premium-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #000000;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 176, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 50, 0.5);
  color: #000000;
}

.btn-premium-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-weight: 500;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-premium-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-whatsapp-booking {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp-booking:hover {
  background-color: #20ba5a;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Glassmorphism Containers */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  padding: 2.5rem;
}

/* Sticky Transparent Header */
.navbar-premium {
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-premium.scrolled {
  background: rgba(8, 27, 51, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-premium {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  display: flex;
  align-items: center;
}

.navbar-brand-premium span {
  color: var(--primary);
}

.navbar-premium .nav-link-premium {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-premium .nav-link-premium:hover,
.navbar-premium .nav-item.active .nav-link-premium {
  color: var(--primary);
}

.navbar-premium .nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.navbar-premium .nav-link-premium:hover::after {
  width: 60%;
}

.navbar-toggler-premium {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: 0.5rem;
  border-radius: 8px;
}

.navbar-toggler-premium:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 176, 0, 0.25);
}

/* Hero Section styling */
.hero-premium {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
              rgba(8, 27, 51, 0.8) 0%, 
              rgba(8, 27, 51, 0.95) 100%);
  z-index: 1;
}

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

.hero-premium h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-premium .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-features-row {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.hero-feature-tag:hover {
  background: rgba(255, 176, 0, 0.05);
  border-color: rgba(255, 176, 0, 0.3);
  transform: translateY(-2px);
}

.hero-feature-tag i {
  color: var(--primary);
}

/* Booking Form Card */
.booking-card {
  border-radius: 24px;
}

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.booking-field-wrapper {
  margin-bottom: 1.25rem;
  position: relative;
}

.booking-field-wrapper label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.booking-input-container {
  position: relative;
}

.booking-input-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
  pointer-events: none;
}

.booking-input-container select,
.booking-input-container input {
  width: 100%;
  background: rgba(8, 27, 51, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem 0.75rem 45px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.booking-input-container select:focus,
.booking-input-container input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.15);
  background: rgba(8, 27, 51, 0.85);
}

.booking-input-container select option {
  background: var(--bg-navy);
  color: var(--text-white);
}

/* General Section Structure */
.section-padding {
  padding: 6.5rem 0;
}

/* Fleet Cards */
.fleet-card {
  height: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fleet-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 176, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fleet-img-container {
  position: relative;
  overflow: hidden;
  padding-top: 60%; /* Aspect Ratio 5:3 */
  background: #FFFFFF;
}

.fleet-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fleet-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 176, 0, 0.95);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fleet-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #081B33 !important;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #475569 !important;
  font-weight: 500;
}

.fleet-spec-item i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.fleet-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fleet-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.fleet-price-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.fleet-price-value span {
  font-size: 0.75rem;
  color: var(--text-white);
  font-weight: 400;
}

.btn-book-fleet {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Why Choose Us Cards */
.feature-card {
  background: var(--bg-navy);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.06) 0%, rgba(255, 140, 50, 0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 176, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 176, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 176, 0, 0.15);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  transform: scale(1.1);
}

.feature-icon-wrapper i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper i {
  color: #000000;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Destinations Section */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.destination-card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, 
              rgba(8, 27, 51, 0.95) 0%, 
              rgba(8, 27, 51, 0.4) 60%,
              rgba(8, 27, 51, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.destination-card:hover .destination-card-bg {
  transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(360deg, 
              rgba(16, 42, 77, 0.98) 0%, 
              rgba(16, 42, 77, 0.5) 60%,
              rgba(16, 42, 77, 0.2) 100%);
}

.destination-info {
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.destination-card:hover .destination-info {
  transform: translateY(0);
}

.destination-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.destination-tag {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: var(--transition-smooth);
}

.destination-card:hover .destination-tag {
  opacity: 1;
}

/* Tour Packages */
.tour-card {
  background: var(--bg-navy);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 176, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.tour-header {
  position: relative;
  padding-top: 55%;
  background-size: cover;
  background-position: center;
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
}

.tour-body {
  padding: 1.75rem;
}

.tour-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tour-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.tour-duration {
  color: var(--text-white);
  font-weight: 500;
}

.tour-duration i {
  color: var(--primary);
  margin-right: 5px;
}

.tour-action-link {
  color: var(--primary);
  font-weight: 600;
}

.tour-action-link:hover {
  color: var(--primary-hover);
}

/* Testimonials Carousel */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-white);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  border: 2px solid var(--primary);
  background-color: var(--bg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary);
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}

.testimonial-author-origin {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carousel-indicators-custom {
  position: static;
  margin-top: 2.5rem;
  gap: 8px;
}

.carousel-indicators-custom [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  transition: var(--transition-smooth);
}

.carousel-indicators-custom .active {
  background-color: var(--primary);
  transform: scale(1.3);
  width: 25px;
  border-radius: 50px;
}

/* Call To Action Panoramic Section */
.cta-panoramic {
  position: relative;
  background-image: url('../images/cta_bg.png');
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-panoramic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
              rgba(8, 27, 51, 0.7) 0%, 
              rgba(8, 27, 51, 0.85) 100%);
  z-index: 1;
}

.cta-panoramic .container {
  position: relative;
  z-index: 2;
}

.cta-panoramic h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-panoramic p {
  font-size: 1.25rem;
  color: var(--text-white);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Floating WhatsApp Widget */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #20ba5a;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

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

/* Footer Section */
.footer-premium {
  background-color: #040e1b;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.footer-brand span {
  color: var(--primary);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

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

.footer-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

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

.footer-heading {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Pricing Option Cards inside Fleet Cards */
.pricing-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pricing-option-card {
  background-color: #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: center;
  border: 1px solid #CBD5E1;
  transition: var(--transition-smooth);
}

.pricing-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12 rgba(0, 0, 0, 0.08);
}

.pricing-option-card .option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #081B33;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.pricing-option-card .option-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: #102A4D;
}

.btn-book-now-centered {
  background-color: #FFC03D;
  color: #081B33 !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 8px;
  align-self: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(255, 192, 61, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.btn-book-now-centered:hover {
  background-color: #FF8C32;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 50, 0.3);
}

/* Scroll Animations Support */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-in {
  transform: scale(0.98);
}

.reveal-slide-up {
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Extra responsiveness optimizations */
@media (max-width: 991px) {
  .hero-premium {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-premium h1 {
    font-size: 2.75rem;
  }
  .section-padding {
    padding: 4.5rem 0;
  }
}

@media (max-width: 767px) {
  .hero-premium h1 {
    font-size: 2.25rem;
  }
  .cta-panoramic h2 {
    font-size: 2.25rem;
  }
}

/* Responsive adjustments for fleet cards on mobile */
@media (max-width: 576px) {
  .fleet-card {
    margin-bottom: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .fleet-body {
    padding: 1.25rem;
  }
  .fleet-title {
    font-size: 1.2rem;
  }
  .pricing-options-container {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .pricing-option-card {
    padding: 0.6rem 0.85rem;
  }
  .pricing-option-card .option-title {
    font-size: 0.85rem;
  }
  .pricing-option-card .option-price {
    font-size: 0.75rem;
  }
  .btn-book-now-centered {
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
  }
}
