/* ============================================
   EXPRESS AIR PARKING — Home Page Styles
   ============================================ */

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--primary-500) 100%);
  overflow: hidden;
  padding-top: var(--navbar-height);
}

/* Animated geometric shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  animation: float 20s ease-in-out infinite;
}

.hero__shape:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero__shape:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
  background: rgba(245, 197, 24, 0.04);
}

.hero__shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 25%;
  animation-delay: -10s;
}

.hero__shape:nth-child(4) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 40%;
  animation-delay: -15s;
  background: rgba(245, 197, 24, 0.03);
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: auto auto;
  grid-template-areas:
    "text widget"
    "stats widget";
  gap: var(--space-2xl) var(--space-4xl);
  align-items: center;
  width: 100%;
}

.hero__text {
  grid-area: text;
}

.hero__stats {
  grid-area: stats;
}

.hero__widget {
  grid-area: widget;
}

.hero__text {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(245, 197, 24, 0.15);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 197, 24, 0.25);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.03em;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--accent-gold);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Booking Widget */
.hero__widget {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.widget-step.active {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.widget-step .widget-nav {
  margin-top: auto;
}

.hero__widget-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.hero__widget-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-xl);
}

.hero__widget .form-group {
  margin-bottom: var(--space-md);
}

.hero__widget .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.hero__widget .form-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 16px;
}

.hero__widget .form-select {
  background-color: #1e3f5f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 16px;
}

.hero__widget .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero__widget .form-input:focus,
.hero__widget .form-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
  background: rgba(255, 255, 255, 0.18);
}

.hero__widget .form-select {
  background-color: #1e3f5f;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero__widget .form-select option {
  background: var(--primary-800);
  color: var(--white);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1e3f5f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-select__trigger:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: #234769;
}

.custom-select.open .custom-select__trigger {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
  background: #234769;
}

.custom-select__selected {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.custom-select__icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
}

.custom-select__arrow {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.5);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
  stroke: var(--accent-gold);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #162d47;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select.open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.custom-select__option:last-child {
  border-bottom: none;
}

.custom-select__option:hover {
  background: rgba(245, 197, 24, 0.1);
  color: var(--white);
}

.custom-select__option.selected {
  background: rgba(245, 197, 24, 0.12);
  color: var(--accent-gold);
}

.custom-select__option svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.4);
  transition: stroke var(--transition-fast);
}

.custom-select__option:hover svg {
  stroke: var(--accent-gold);
}

.custom-select__option.selected svg {
  stroke: var(--accent-gold);
}

.hero__widget .btn--gold {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 16px;
  font-size: 1.05rem;
}

/* Widget Multi-Step */
.widget-step {
  display: none;
}

.widget-step.active {
  animation: widgetFadeIn 0.3s ease;
}

@keyframes widgetFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.widget-row {
  display: flex;
  gap: var(--space-sm);
}

.widget-row .form-group {
  flex: 1;
  min-width: 0;
}

.widget-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.widget-nav .btn--gold {
  flex: 1;
  margin-top: 0;
}

.widget-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 12px 8px;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.widget-back:hover {
  color: var(--white);
}

/* Widget Price Display */
.widget-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 4px;
}

.widget-price__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.widget-price__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-gold);
  line-height: 1.2;
}

/* Widget Summary */
.widget-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.widget-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.widget-summary__row span:last-child {
  font-weight: 600;
  color: var(--white);
  text-align: right;
  max-width: 55%;
}

.widget-summary__total {
  border-bottom: none;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.widget-summary__total span:last-child {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Widget Payment */
.widget-payment {
  margin-top: var(--space-md);
}

.widget-payment__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.03em;
}

.widget-payment__options {
  display: flex;
  gap: var(--space-sm);
}

.widget-payment--stacked {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.widget-payment__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.widget-payment__main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-payment__main svg {
  flex-shrink: 0;
}

.widget-payment__title {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.widget-payment__desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.widget-payment__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(245, 197, 24, 0.2);
  color: var(--accent-gold);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.widget-payment__option:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.widget-payment__option.selected {
  border-color: var(--accent-gold);
  background: rgba(245, 197, 24, 0.1);
  color: var(--white);
}

.widget-payment__option.selected svg {
  stroke: var(--accent-gold);
}

.widget-payment__option.selected .widget-payment__title {
  color: var(--white);
}

/* Widget Success */
.widget-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: var(--space-md) 0;
}

.widget-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.widget-success__msg {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.widget-success__email-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
}

.widget-success__email-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.widget-success__email-box span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-100);
}

.feature-card .icon-3d {
  margin-bottom: var(--space-lg);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin: 0;
}

/* =====================
   SERVICES PREVIEW
   ===================== */
.services-preview {
  padding: var(--space-4xl) 0;
  background: var(--primary-50);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-200);
}

.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-preview-card__header {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.service-preview-card__header .icon-3d__shape {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-preview-card__header .icon-3d__shape svg {
  width: 42px;
  height: 42px;
}

.service-preview-card__body {
  padding: var(--space-xl);
}

.service-preview-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--neutral-800);
  margin-bottom: var(--space-sm);
}

.service-preview-card__text {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-preview-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.service-preview-card__link:hover {
  color: var(--accent-gold-hover);
  gap: 10px;
}

.service-preview-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* =====================
   TRUST / COUNTERS
   ===================== */
.trust {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
}

.trust-item__icon {
  margin-bottom: var(--space-lg);
}

.trust-item__value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.trust-item__value span {
  color: var(--accent-gold);
}

.trust-item__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--neutral-700);
  margin-bottom: 4px;
}

.trust-item__desc {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin: 0;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.06);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
  .hero__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "widget"
      "stats";
    gap: var(--space-2xl);
    text-align: left;
  }

  .hero__subtitle {
    display: none;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__widget {
    max-width: 480px;
    margin: 0 auto;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-preview__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: calc(var(--navbar-height) + var(--space-2xl)) 0 0;
    align-items: flex-start;
  }

  .hero__content {
    gap: var(--space-xl);
  }

  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__text {
    padding: 0 var(--space-lg);
  }

  .hero__widget {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
  }

  .hero__stats {
    display: none;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .trust {
    padding-top: var(--space-xl);
  }

  /* Flatpickr mobile — width includes time panel */
  .flatpickr-calendar.has-time-panel {
    padding-right: 62px !important;
  }

  .flatpickr-calendar.has-time-panel .flatpickr-next-month {
    right: 66px !important;
  }

  .flatpickr-calendar {
    width: 342px !important;
  }

  .fp-time-panel {
    width: 62px;
  }

  .fp-time-slot {
    padding: 7px 5px;
    font-size: 0.78rem;
  }

  .fp-time-panel__header {
    padding: 9px 5px;
    font-size: 0.68rem;
  }

  .fp-time-arrow {
    padding: 6px 0;
  }

  .flatpickr-day {
    max-width: 34px !important;
    height: 34px !important;
    line-height: 30px !important;
    font-size: 0.85rem !important;
  }

  span.flatpickr-weekday {
    font-size: 0.72rem !important;
  }
}

/* Very small screens under 360px */
@media (max-width: 360px) {
  .flatpickr-calendar {
    width: 292px !important;
  }

  .flatpickr-calendar.has-time-panel {
    padding-right: 52px !important;
  }

  .flatpickr-calendar.has-time-panel .flatpickr-next-month {
    right: 56px !important;
  }

  .fp-time-panel {
    width: 52px;
  }

  .fp-time-slot {
    padding: 6px 3px;
    font-size: 0.7rem;
  }

  .flatpickr-day {
    max-width: 28px !important;
    height: 28px !important;
    line-height: 24px !important;
    font-size: 0.75rem !important;
  }
}

/* =====================
   FLATPICKR DARK THEME
   ===================== */
.flatpickr-calendar {
  background: #132a42 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  z-index: 999 !important;
  font-family: var(--font-body) !important;
  width: 300px !important;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
  display: none !important;
}

.flatpickr-months {
  background: #0d1f33 !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 8px 0 !important;
}

.flatpickr-months .flatpickr-month {
  color: #ffffff !important;
  fill: #ffffff !important;
  height: 40px !important;
}

.flatpickr-current-month {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
  padding-top: 0 !important;
  padding-left: 10px !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
  background: #132a42 !important;
  color: #ffffff !important;
}

.flatpickr-current-month input.cur-year {
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: rgba(255, 255, 255, 0.6) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 6px 8px !important;
  top: 10px !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 20px !important;
  height: 20px !important;
}

.flatpickr-months .flatpickr-prev-month {
  left: 2px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  fill: #F5C518 !important;
  color: #F5C518 !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: currentColor !important;
}

span.flatpickr-weekday {
  color: #F5C518 !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  background: transparent !important;
}

.flatpickr-weekdays {
  background: transparent !important;
}

.flatpickr-day {
  color: rgba(255, 255, 255, 0.8) !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  border: 2px solid transparent !important;
  max-width: 36px !important;
  height: 36px !important;
  line-height: 32px !important;
}

.flatpickr-day:hover {
  background: rgba(245, 197, 24, 0.15) !important;
  border-color: rgba(245, 197, 24, 0.3) !important;
  color: #ffffff !important;
}

.flatpickr-day.today {
  border-color: rgba(245, 197, 24, 0.5) !important;
  color: #F5C518 !important;
  background: transparent !important;
}

.flatpickr-day.today:hover {
  background: rgba(245, 197, 24, 0.15) !important;
  color: #F5C518 !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: #F5C518 !important;
  border-color: #F5C518 !important;
  color: #0D2B4A !important;
  font-weight: 700 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.15) !important;
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  background: rgba(245, 197, 24, 0.08) !important;
  border-color: transparent !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

.flatpickr-innerContainer {
  padding: 8px 12px 12px !important;
  background: transparent !important;
  border-bottom: none !important;
}

.flatpickr-rContainer {
  width: 100% !important;
}

.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-days {
  width: 100% !important;
  border: none !important;
}

.hero__widget .flatpickr-date {
  cursor: pointer;
}

.hero__widget .flatpickr-date::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.numInputWrapper:hover {
  background: transparent !important;
}

.numInputWrapper span {
  display: none !important;
}

.numInputWrapper span:hover {
  background: rgba(245, 197, 24, 0.15) !important;
}

.numInputWrapper span svg path {
  fill: rgba(255, 255, 255, 0.5) !important;
}

/* =====================
   CUSTOM TIME PANEL (beside calendar)
   ===================== */
.flatpickr-calendar.has-time-panel {
  padding-right: 72px !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.flatpickr-calendar.has-time-panel .flatpickr-months {
  border-radius: 16px 0 0 0 !important;
}

.flatpickr-calendar.has-time-panel .flatpickr-next-month {
  right: 76px !important;
}

/* Arrival day marker in departure calendar */
.flatpickr-day.arrival-day {
  background: rgba(245, 197, 24, 0.18) !important;
  border-color: rgba(245, 197, 24, 0.5) !important;
  color: #F5C518 !important;
  font-weight: 700 !important;
  position: relative;
}

.flatpickr-day.arrival-day::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F5C518;
}

.flatpickr-day.arrival-day:hover {
  background: rgba(245, 197, 24, 0.25) !important;
}

.fp-time-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 72px;
  height: 100%;
  background: #132a42;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fp-time-panel__header {
  padding: 10px 6px;
  text-align: center;
  color: #F5C518;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #0d1f33;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* Up / Down scroll arrows */
.fp-time-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  background: #0d1f33;
  transition: all 0.15s ease;
  flex-shrink: 0;
  user-select: none;
}

.fp-time-arrow--up {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 16px 0 0;
}

.fp-time-arrow--down {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 16px 0;
}

.fp-time-arrow:hover {
  background: rgba(245, 197, 24, 0.1);
  color: #F5C518;
}

.fp-time-arrow:active {
  background: rgba(245, 197, 24, 0.18);
}

.fp-time-arrow svg {
  stroke: currentColor;
}

.fp-time-panel__list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fp-time-panel__list::-webkit-scrollbar {
  display: none;
}

.fp-time-slot {
  padding: 8px 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  user-select: none;
}

.fp-time-slot:last-child {
  border-bottom: none;
}

.fp-time-slot:hover {
  background: rgba(245, 197, 24, 0.1);
  color: #ffffff;
}

.fp-time-slot.active {
  background: #F5C518;
  color: #0D2B4A;
  font-weight: 700;
}

/* Hide flatpickr's built-in time if accidentally enabled */
.flatpickr-calendar.has-time-panel .flatpickr-time {
  display: none !important;
}