/* Car Rental Page - Premium White/Light Luxury Theme */

:root {
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  --sapphire-gradient: linear-gradient(135deg, #0A1128 0%, #050A17 100%);
  --light-bg: #f8f9fc;
  --white-card: #ffffff;
  --text-dark: #0A1128;
  --text-muted-dark: #4A5568;
  --glass-border: rgba(10, 17, 40, 0.06);
  --gold-glow: 0 10px 25px rgba(212, 175, 55, 0.25);
  --soft-shadow: 0 15px 35px rgba(10, 17, 40, 0.04), 0 5px 15px rgba(10, 17, 40, 0.02);
  --luxury-shadow: 0 30px 60px rgba(10, 17, 40, 0.08);
}

/* Hero Section */
.car-rental-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #323f5e;
}

.car-rental-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/contact_hero.png'); /* Crisp city backdrop */
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
  transform: scale(1.05);
  animation: panHero 20s linear infinite alternate;
}

@keyframes panHero {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.96));
  z-index: 2;
}

.car-rental-hero .container {
  position: relative;
  z-index: 3;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-tag {
  font-family: 'Outfit', sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.highlight-gold {
  color: var(--gold);
}

.highlight-gold.italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 400;
  max-width: 750px;
  margin: 0 auto;
}

/* Quick Booking Section (Floating Overlap) */
.quick-booking-section {
  position: relative;
  z-index: 10;
  margin-top: -70px; /* Beautiful float effect over next section */
  margin-bottom: 40px;
  padding: 0 20px;
}

.quick-booking-section .container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

/* Booking Widget - Translucent Dark Glass */
.booking-widget {
  background: rgba(10, 17, 40, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: flex-end;
}

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

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
}

.form-group label i {
  margin-right: 5px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control option {
  background: #0A1128;
  color: #ffffff;
}

.btn-book-submit {
  padding: 15px 35px;
  background: var(--gold-gradient);
  border: none;
  color: #ffffff;
  font-weight: 700;
  border-radius: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

/* Benefits Section */
.rental-benefits {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted-dark);
  font-size: 16px;
  font-weight: 400;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.benefit-card {
  background: var(--light-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(10, 17, 40, 0.06);
}

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

.benefit-icon {
  width: 65px;
  height: 65px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 24px;
  color: #AA7C11;
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* Fleet Section */
.rental-fleet {
  padding: 80px 20px;
  background: #f1f5f9; /* Premium, clean light slate-gray */
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.fleet-card {
  background: var(--white-card);
  border: 1px solid rgba(10, 17, 40, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--soft-shadow);
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3); /* Sophisticated gold border glow on hover */
  box-shadow: 0 25px 50px rgba(10, 17, 40, 0.08), 0 0 20px rgba(212, 175, 55, 0.1);
}

.fleet-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.fleet-img-container {
  position: relative;
  width: 100%;
  height: 210px; /* Reduced from 280px for a perfectly balanced 3-column ratio */
  overflow: hidden;
  background: #f0f2f5;
  border-bottom: 1px solid rgba(10, 17, 40, 0.04);
}

.fleet-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.fleet-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: 10px;
  color: var(--text-dark);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.fleet-price-tag .amount {
  font-size: 17px;
  font-weight: 800;
  color: #AA7C11;
}

.fleet-price-tag .unit {
  font-size: 11px;
  color: var(--text-muted-dark);
}

.fleet-content {
  padding: 20px 22px; /* Reduced from 30px to save vertical space */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; /* Balanced size for 3 columns */
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 800;
}

.fleet-type {
  font-size: 11px;
  text-transform: uppercase;
  color: #AA7C11;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 14px; /* Reduced from 20px */
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 0; /* Tightened from 20px */
  border-top: 1px solid rgba(10, 17, 40, 0.05);
  border-bottom: 1px solid rgba(10, 17, 40, 0.05);
  margin-bottom: 18px; /* Tightened from 25px */
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted-dark);
  font-weight: 500;
}

.spec-item i {
  color: #AA7C11;
  font-size: 15px;
}

.fleet-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-fleet-book {
  flex: 1;
  padding: 10px 15px; /* Compact padding */
  background: var(--gold-gradient);
  border: none;
  color: #ffffff;
  font-weight: 700;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-fleet-book:hover {
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-fleet-whatsapp {
  padding: 10px 15px; /* Compact padding */
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366;
  font-weight: 700;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-fleet-whatsapp:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* How It Works */
.how-it-works {
  padding: 100px 20px;
  background: #ffffff;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.step-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* FAQ Section */
.rental-faqs {
  padding: 100px 20px;
  background: #f8f9fc;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--white-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--soft-shadow);
}

.faq-header {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.faq-icon-arrow {
  color: #AA7C11;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-content p {
  padding: 0 30px 25px 30px;
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(10, 17, 40, 0.05);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

/* CTA Section */
.rental-cta {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.rental-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.08);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 1;
}

.rental-cta .container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-muted-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cta-call {
  padding: 16px 40px;
  background: var(--gold-gradient);
  border: none;
  color: #ffffff;
  font-weight: 700;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.btn-cta-call:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-cta-whatsapp {
  padding: 16px 40px;
  background: rgba(10, 17, 40, 0.04);
  border: 1.5px solid rgba(10, 17, 40, 0.15);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-whatsapp:hover {
  background: rgba(10, 17, 40, 0.08);
  border-color: var(--text-dark);
  transform: translateY(-3px);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-book-submit {
    grid-column: span 2;
  }
  .fleet-grid, .benefits-grid, .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .quick-booking-section {
    margin-top: -50px;
  }
  .section-header {
    text-align: left; /* Beautifully left-aligned section header on tablets */
    margin: 0 0 35px 0;
    max-width: 100%;
  }
  .section-title {
    font-size: 2.0rem;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid, .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Left aligned CTA on tablets */
  .rental-cta .container {
    text-align: left;
  }
  .cta-title {
    font-size: 2.1rem;
    text-align: left;
  }
  .cta-desc {
    text-align: left;
  }
  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .btn-book-submit {
    grid-column: span 1;
    height: 42px;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 8px;
    margin-top: 4px;
  }
  .car-rental-hero {
    padding: 95px 10px 150px 10px; /* Reduced bottom padding from 75px to 45px to pull form up */
  }
  .hero-content-inner {
    padding: 0 10px; /* Ensures exact 10px text clearance */
  }
  .gold-tag {
    margin-bottom: 8px; /* Reduced from 15px to tighten space */
    letter-spacing: 2px;
    font-size: 11px;
  }
  .hero-title {
    font-size: 1.65rem;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  .hero-subtitle {
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.8;
    max-width: 100%;
    margin-bottom: 0;
  }
  .quick-booking-section {
    margin-top: -45px; /* Pulled up higher (from -35px to -45px) for a snug fit */
    margin-bottom: 25px;
    padding: 0 10px; /* Exact 10px side clearance */
  }
  .booking-widget {
    padding: 18px 20px;
    border-radius: 16px;
  }
  .form-group {
    gap: 4px;
  }
  .form-group label {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .form-control {
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 8px;
  }
  .section-header {
    text-align: left; /* Beautifully left-aligned section header on mobile */
    margin: 0 0 25px 0;
    max-width: 100%;
  }
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Super Compact Fleet Card Styling for Mobile */
  .fleet-img-container {
    height: 180px; /* Reduced from 210px to save vertical space on mobile */
  }
  .fleet-content {
    padding: 14px 16px; /* Snug, clean container padding */
  }
  .fleet-name {
    font-size: 1.25rem; /* Elegant smaller title */
    margin-bottom: 4px;
  }
  .fleet-type {
    margin-bottom: 10px;
  }
  .fleet-specs {
    padding: 8px 0; /* Extremely tight border gaps */
    margin-bottom: 14px;
    gap: 8px;
  }
  .spec-item {
    font-size: 11px;
    gap: 2px;
  }
  .spec-item i {
    font-size: 13px;
  }
  .btn-fleet-book, .btn-fleet-whatsapp {
    padding: 8px 12px; /* Super compact buttons */
    font-size: 11px;
    border-radius: 8px;
  }
  
  /* Super Compact & Left Aligned CTA Section for Mobile */
  .rental-cta {
    padding: 60px 15px; /* Significantly reduced vertical height */
  }
  .rental-cta .container {
    text-align: left; /* Strict left alignment */
  }
  .cta-title {
    font-size: 1.75rem; /* Compact title size */
    margin-bottom: 12px;
    text-align: left;
  }
  .cta-desc {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 24px;
    text-align: left;
  }
  .cta-actions {
    flex-direction: column;
    align-items: flex-start; /* Stack items neatly to the left */
    gap: 12px;
  }
  .btn-cta-call, .btn-cta-whatsapp {
    padding: 12px 24px;
    font-size: 12px;
    border-radius: 24px;
    width: auto; /* Fit text nicely */
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Luxury Flatpickr Calendar Styling (Gold & Deep Navy Glassmorphism Theme)
   ========================================================================== */
.flatpickr-calendar {
  background: rgba(13, 21, 39, 0.9) !important; /* Premium translucent deep navy */
  backdrop-filter: blur(16px) !important; /* Soft glassmorphic backdrop */
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important; /* Elegant gold border */
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.15) !important; /* Intensive premium soft depth */
  border-radius: 20px !important; /* Ultra-modern rounded square */
  font-family: 'Outfit', sans-serif !important;
  overflow: hidden;
  padding: 12px 10px !important;
  width: 320px !important; /* Spacious desktop width */
}

/* Glassmorphic Arrows */
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: rgba(212, 175, 55, 0.3) !important;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: rgba(13, 21, 39, 0.9) !important;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: rgba(212, 175, 55, 0.3) !important;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: rgba(13, 21, 39, 0.9) !important;
}

/* Header Months Area */
.flatpickr-months {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 8px 0 14px 0 !important;
  margin-bottom: 8px !important;
  display: flex;
  align-items: center;
}

.flatpickr-current-month {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #0d1527 !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 4px 10px !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  border-color: var(--gold);
}

.flatpickr-monthDropdown-month {
  background: #0d1527 !important;
  color: #ffffff !important;
}

/* Custom Interactive Year Selector with White Micro-Arrows */
.numInputWrapper {
  position: relative;
  display: inline-block;
  width: 75px !important;
  margin-left: 2px !important;
}

.numInputWrapper input.cur-year {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  border: none !important;
  padding: 4px 20px 4px 6px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  cursor: pointer;
}

/* Hide native HTML5 spinner arrows for number input */
.numInputWrapper input.cur-year::-webkit-outer-spin-button,
.numInputWrapper input.cur-year::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.numInputWrapper input.cur-year {
  -moz-appearance: textfield !important; /* Firefox support */
}

.numInputWrapper span {
  position: absolute;
  right: 4px;
  width: 14px !important;
  height: 50% !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.75;
  z-index: 10;
}

.numInputWrapper span:hover {
  opacity: 1;
}

.numInputWrapper span.arrowUp {
  top: 0;
  height: 50% !important;
}
.numInputWrapper span.arrowUp::after {
  content: '';
  border-left: 3.5px solid transparent !important;
  border-right: 3.5px solid transparent !important;
  border-bottom: 4px solid #ffffff !important; /* Highly visible bright white */
}

.numInputWrapper span.arrowUp:hover::after {
  border-bottom-color: var(--gold) !important;
}

.numInputWrapper span.arrowDown {
  bottom: 0;
  height: 50% !important;
}
.numInputWrapper span.arrowDown::after {
  content: '';
  border-left: 3.5px solid transparent !important;
  border-right: 3.5px solid transparent !important;
  border-top: 4px solid #ffffff !important; /* Highly visible bright white */
}

.numInputWrapper span.arrowDown:hover::after {
  border-top-color: var(--gold) !important;
}

/* Elegant Circle Navigation Arrows */
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 18px !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: scale(1.1) !important;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  fill: #ffffff !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #0d1527 !important; /* Color inversion on hover */
}

/* High-Contrast Luxury Weekdays */
.flatpickr-weekdays {
  background: transparent !important;
  margin-bottom: 6px !important;
}

span.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.4) !important; /* Understated white weekdays */
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Elegant Day Grid Layout */
.flatpickr-innerContainer {
  padding: 0 4px !important;
}

.flatpickr-day {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  border-radius: 10px !important; /* Soft premium square days */
  margin: 3px !important; /* Roomy, clean grid */
  height: 36px !important;
  width: 36px !important;
  line-height: 34px !important;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1px solid transparent !important;
}

/* Day Cell Hover */
.flatpickr-day:hover, .flatpickr-day:focus {
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: var(--gold) !important;
  transform: translateY(-2px) scale(1.08) !important; /* Interactive pop-up card feel */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Solid Metallic Gold Selected Day */
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%) !important; /* True metallic gold gradient */
  border: none !important;
  color: #0A1128 !important; /* Exceptional dark contrast */
  font-weight: 800 !important;
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.45), 0 0 8px rgba(212, 175, 55, 0.25) !important; /* Glowing aura */
}

.flatpickr-day.selected:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%) !important;
  color: #0A1128 !important;
}

/* Inactive Out-of-Month Days */
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.18) !important; /* Ultra-low contrast for inactive days */
}

.flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.35) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Elite Today Indicator (Boutique Gold Ring + Dot) */
.flatpickr-day.today {
  border: 1px dashed rgba(212, 175, 55, 0.8) !important;
  color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.04) !important;
  position: relative !important;
}

/* Apple-style Golden notification indicator dot below the date number */
.flatpickr-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold) !important;
}

.flatpickr-day.today.selected::after {
  background: #0A1128 !important; /* Inverts color when active */
}

.flatpickr-day.today:hover {
  background: var(--gold) !important;
  color: #0A1128 !important;
  border-style: solid !important;
}


