/* Premium UI V2 */

/* Header */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  transition: all var(--transition-fast);
}

.premium-header .logo img {
  height: 40px;
  width: auto;
}

.premium-header .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-header .nav-links a {
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
}

.premium-header .nav-links a:hover,
.premium-header .nav-links a.active {
  color: var(--color-gold);
}

.lang-select {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  color: var(--color-text-main);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  min-height: 40px;
}

.mobile-nav-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 0;
  scrollbar-width: none;
}

.mobile-nav-chips::-webkit-scrollbar {
  display: none;
}

.mobile-nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(12, 13, 17, 0.62);
  color: #f3f3f3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-nav-chip:hover {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.5);
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Hero Section */
.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background:
    radial-gradient(1200px 600px at 75% 20%, rgba(197, 160, 89, 0.12), transparent 60%),
    linear-gradient(135deg, #050505 0%, #0a0b0d 45%, #111317 100%);
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.3) 100%);
  z-index: 1;
}

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

.hero-lead-row > div:nth-child(1) {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-lead-row > div:nth-child(2) {
  animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.page-hero {
  min-height: 400px;
  padding-top: 88px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.8) 0%, rgba(8, 9, 11, 0.95) 100%);
}

.page-hero .hero-title {
  margin-bottom: 14px;
}

.hero-badge {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 14px;
}

.hero-value-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #f2e7c6;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -10px;
  margin-bottom: 14px;
}

.hero-conversion-note {
  margin: 0 0 12px;
  font-size: 13px;
  color: #f0d9a5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-premium.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #072b16 !important;
  border: 1px solid #1fb85a;
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 600;
  white-space: nowrap;
  min-height: 52px;
  padding: 14px 22px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.btn-premium.btn-ghost:hover {
  background: #20bf5a;
  border-color: #1ca54f;
  color: #041b0f !important;
}

.hero-usps {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.hero-usp-item i {
  color: var(--color-gold);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #f3f3f3;
  background: rgba(12, 13, 17, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  padding: 6px 10px;
}

/* Booking Form */
.booking-card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(18, 20, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.5), transparent);
}

.booking-card-header {
  margin-bottom: 24px;
}

.booking-stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.booking-step-pill {
  flex: 1;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(12, 13, 17, 0.56);
  border-radius: 999px;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 600;
  min-height: 34px;
  padding: 7px 10px;
}

.booking-step-pill.is-active {
  color: #101010;
  background: rgba(212, 175, 55, 0.95);
  border-color: rgba(212, 175, 55, 0.95);
}

.booking-form-step {
  display: none;
}

.booking-form-step.is-active {
  display: block;
}

.booking-review-box {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(12, 13, 17, 0.5);
  border-radius: 14px;
  padding: 12px 12px 10px;
}

.lead-fill-widget {
  margin: 10px 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.07);
}

.lead-fill-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: #f0e4c6;
}

.lead-fill-head strong {
  color: var(--color-gold);
  font-size: 12px;
}

.lead-fill-track {
  margin-top: 8px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

#leadFillBar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c5a059 0%, #dfb96e 100%);
  transition: width var(--transition-fast);
}

.lead-fill-hint {
  margin-top: 8px;
  color: #d8d8d8;
  font-size: 11px;
}

.booking-draft-toast {
  display: none;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(72, 199, 142, 0.45);
  background: rgba(72, 199, 142, 0.12);
  color: #dff5ea;
  font-size: 12px;
  line-height: 1.35;
}

.booking-draft-toast.is-visible {
  display: flex;
}

.booking-draft-toast .bi {
  flex-shrink: 0;
  margin-top: 1px;
  color: #7fe0b0;
}

.booking-wa-soft {
  font-size: 12px;
}

.booking-wa-soft-link {
  color: #25d366;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-wa-soft-link:hover {
  color: #4dff9a;
}

.booking-review-box h3 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.booking-review-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.booking-review-box li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.booking-review-box li span {
  font-size: 11px;
  color: #bdbdbd;
}

.booking-review-box li strong {
  font-size: 12px;
  color: #f4f4f4;
  text-align: right;
  max-width: 58%;
  word-break: break-word;
}

.booking-step-actions {
  display: flex;
  gap: 10px;
}

.btn-step-back {
  background: transparent !important;
  color: #e4e4e4 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 130px;
}

.booking-card-subtitle {
  margin: 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

.booking-guarantee-strip {
  margin: 12px 0 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.booking-guarantee-strip li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  color: #e9e2cf;
  line-height: 1.35;
}

.booking-guarantee-strip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.booking-proof-strip {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.booking-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #eaeaea;
  background: rgba(212, 175, 55, 0.11);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.booking-proof-strip i {
  color: var(--color-gold);
}

.booking-lead-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #ebddb6;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.booking-lead-note i {
  color: var(--color-gold);
}

.booking-mini-trust {
  margin: 10px 0 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 12px;
}

.booking-mini-trust i {
  color: var(--color-gold);
  margin-right: 6px;
}

.booking-tel-fallback {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  color: #d6d6d6;
}

.booking-tel-link {
  margin-left: 6px;
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: none;
}

.booking-tel-link:hover {
  text-decoration: underline;
}

.booking-step1-micro {
  margin: 6px 0 0;
  color: #cfcfcf;
  font-size: 11px;
  line-height: 1.4;
}

.booking-submit-primary {
  min-height: 54px;
}

.booking-action-trust {
  display: grid;
  gap: 6px;
}

.booking-action-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #e8ddc0;
}

.booking-action-trust i {
  color: var(--color-gold);
}

.booking-hesitation-fallback {
  margin: 10px 0 4px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
}

.booking-hesitation-text {
  font-size: 12px;
  color: #f0e2c0;
  line-height: 1.35;
}

.btn-hesitation-call {
  min-height: 46px;
}

.booking-popular-routes {
  margin: 0 0 14px;
}

.booking-popular-label {
  color: #d8d8d8;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-popular-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-route-chip {
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(13, 14, 18, 0.86);
  color: #ececec;
  font-size: 11px;
  line-height: 1.3;
  padding: 8px 10px;
  border-radius: 999px;
  transition: border-color var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.booking-route-chip:hover,
.booking-route-chip:focus-visible {
  border-color: var(--color-gold);
  color: #fff;
  transform: translateY(-1px);
}

.booking-route-chip.is-selected {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
}

.lead-strip {
  padding: 16px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(10, 11, 14, 0.65);
}

.lead-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-strip-copy {
  margin: 0;
  color: #ececec;
  font-size: 14px;
}

.lead-strip-copy i {
  color: var(--color-gold);
  margin-right: 7px;
}

.lead-strip-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #fff;
  background: rgba(15, 16, 20, 0.8);
}

.lead-strip-btn:hover {
  color: #fff;
  border-color: var(--color-gold);
}

.lead-strip-btn.whatsapp {
  background: #25d366;
  color: #052214;
  border-color: #20b65a;
}

.lead-strip-btn.whatsapp:hover {
  color: #04160d;
  background: #20bf5a;
}

.lead-commit-strip {
  padding: 14px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(9, 10, 13, 0.88);
}

.lead-commit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-commit-copy {
  color: #e6e6e6;
  font-size: 14px;
  max-width: 720px;
}

.lead-commit-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lead-commit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(18, 19, 23, 0.9);
  color: #f4f4f4;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.lead-commit-btn:hover {
  color: #fff;
  border-color: var(--color-gold);
}

.lead-commit-btn.whatsapp {
  background: #25d366;
  color: #072b16;
  border-color: #20b65a;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.form-control-premium {
  width: 100%;
  background: rgba(10, 11, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 20px 18px 55px; /* Space for absolute icon */
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  transition: all var(--transition-normal);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.4);
  min-height: 56px;
}

.form-control-premium:focus {
  outline: none;
  background: rgba(15, 17, 21, 0.9);
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2), inset 0 2px 5px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.form-control-premium::placeholder {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.form-group i {
  font-size: 20px;
  z-index: 5;
  margin-left: 20px;
  pointer-events: none;
  color: var(--color-gold);
}

/* Date/Time Picker Fixes for Dark Theme */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) brightness(0.8) sepia(1) hue-rotate(5deg) saturate(3);
  opacity: 0.92;
  transition: all var(--transition-fast);
  width: 20px;
  height: 20px;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

.toggle-premium {
  display: flex;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.toggle-premium label {
  flex: 1;
  margin: 0;
  cursor: pointer;
}

.toggle-premium input {
  display: none;
}

.toggle-premium span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  min-height: 48px;
}

.toggle-premium input:checked + span {
  background: var(--color-gold);
  color: var(--color-text-dark);
}

/* Services */
.service-card {
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold-dim);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--color-gold-dim);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-gold);
  margin-bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--color-gold);
  color: var(--color-text-dark);
  transform: scale(1.1);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

/* Premium Accordion (FAQ) */
.premium-accordion .accordion-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  background: rgba(10, 11, 14, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.premium-accordion .accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.premium-accordion .accordion-button {
  box-shadow: none !important;
  padding: 20px 24px;
  font-size: 1.1rem;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--color-gold) !important;
  background: rgba(212, 175, 55, 0.05) !important;
}

.premium-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg) brightness(1.2);
}

.premium-accordion .accordion-body {
  padding: 0 24px 24px 24px;
  line-height: 1.6;
}

/* How It Works Journey Line */
@media (min-width: 992px) {
  .how-it-works-row {
    position: relative;
  }
  
  .how-it-works-row::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4) 15%, rgba(212, 175, 55, 0.4) 85%, transparent);
    z-index: 0;
  }
}


/* Render optimization for below-the-fold sections */
main > section:not(.hero-premium) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* Footer */
.premium-footer {
  background: #050608;
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

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

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Error states for form */
.error {
  color: var(--color-danger);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.error:not(:empty) {
  display: block;
}

/* Autocomplete styles fix */
.suggestions-container {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  max-height: 250px;
  overflow-y: auto;
  margin-top: 5px;
  display: none;
}

.suggestions-container:not(:empty) {
  display: block;
}

.suggestion-item {
  color: #fff !important;
  padding: 12px 18px !important;
  border-bottom: 1px solid var(--glass-border) !important;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.suggestion-item:last-child {
  border-bottom: none !important;
}

.suggestion-item:hover, .suggestion-item.is-active {
  background: var(--color-gold-dim) !important;
}

.suggestion-item .suggestion-main {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
}

.suggestion-item:hover .suggestion-main, .suggestion-item.is-active .suggestion-main {
  color: var(--color-gold);
}

.suggestion-item .suggestion-sub {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Country Picker Fix */
.phone-group {
  display: flex;
  gap: 10px;
}
.country-picker-btn {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0 15px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-height: 52px;
}
.country-picker-dropdown {
  display: none;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.country-picker-dropdown.is-open {
  display: block;
}
.country-search-wrap input {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  width: 100%;
}
.country-option:hover, .country-option.selected {
  background: var(--color-gold-dim);
  color: var(--color-gold);
}

/* Success Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
  transform: translateY(0) scale(1);
}

/* UX Enhancements (Global) */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 92px;
  }
}

#resForm,
#offres-aeroport {
  scroll-margin-top: 24px;
}

/* Mobile WhatsApp (header) */
.header-wa-mobile {
  background: #25d366 !important;
  border: 1px solid #1fb85a !important;
  color: #062d16 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.header-wa-mobile:hover {
  background: #20bf5a !important;
  color: #041b0f !important;
}

/* Lead-focused hero hints → airport bundles */
.hero-price-hints-label {
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 1;
  color: #e7edf3 !important;
}

.hero-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #f5f5f5;
  background: rgba(10, 11, 14, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.32);
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  min-height: 44px;
}

.hero-price-chip:hover {
  border-color: var(--color-gold);
  color: #fff;
  transform: translateY(-1px);
}

.hero-price-chip strong {
  color: var(--color-gold);
  font-weight: 800;
}

.hero-kpis {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-kpi {
  background: rgba(12, 13, 17, 0.64);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 10px 10px 9px;
  text-align: center;
}

.hero-kpi strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.1;
}

.hero-kpi span {
  display: block;
  margin-top: 4px;
  color: #d6d6d6;
  font-size: 11px;
  line-height: 1.35;
}

.section-lead-bridge {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-card-elevated {
  position: relative;
  z-index: 2;
}

.hero-lead-row {
  --bs-gutter-y: 1rem;
}

.mobile-sticky-inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-sticky-wa {
  width: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 14px !important;
}

::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #fff;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

body.is-preloading {
  overflow: hidden;
}

/* Higher contrast to satisfy Lighthouse on dark surfaces */
body.landing-page .text-muted,
body.landing-page .booking-review-box li span,
body.landing-page .booking-mini-trust,
body.landing-page .booking-step1-micro,
body.landing-page .conversion-final-sub,
body.landing-page .premium-accordion .accordion-body,
body.landing-page .service-card p,
body.landing-page .popup-message,
body.landing-page .popup-success-foot {
  color: #e4eaef !important;
}

body.landing-page .hero-kpi span,
body.landing-page .booking-card-subtitle,
body.landing-page .booking-popular-label,
body.landing-page .desktop-sticky-call-btn small,
body.landing-page .footer-bottom .text-muted {
  color: #eef2f6 !important;
}

/* Fleet / gallery: stable aspect ratio + avoid upscaling low-res assets */
.fleet-card-media {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 400 / 220;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: rgba(0, 0, 0, 0.35);
}

.fleet-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-photo {
  max-width: 636px;
  margin-inline: auto;
}

.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

a,
button,
input,
select,
textarea {
  transition: box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

a {
  text-underline-offset: 3px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.btn-premium {
  position: relative;
  overflow: hidden;
}

.btn-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.25), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn-premium:hover::after {
  transform: translateX(120%);
}

.mobile-sticky-booking {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 8, 10, 0.94);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.desktop-sticky-call {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9988;
}

.desktop-sticky-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: rgba(7, 8, 10, 0.95);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.desktop-sticky-call-btn i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.18);
  color: var(--color-gold);
}

.desktop-sticky-call-btn small {
  display: block;
  color: #eef2f6;
  font-size: 10px;
  line-height: 1.2;
}

.desktop-sticky-call-btn strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.mobile-sticky-booking.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.mobile-sticky-booking-btn {
  width: auto;
  flex: 1 1 auto;
  justify-content: center;
  min-height: 52px;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 9, 11, 0.96);
  transition: opacity .3s ease, visibility .3s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 55, 0.24);
  border-top-color: var(--color-gold);
  animation: preloaderSpin .8s linear infinite;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.mobile-form-progress {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  z-index: 9989;
}

.mobile-form-progress-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(8, 9, 11, 0.92);
  color: #efefef;
}

.mobile-form-progress-label {
  font-size: 10px;
  color: #eef2f6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#mobileProgressText {
  font-size: 12px;
  color: #f8e8bd;
}

.conversion-final-strip {
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.92) 0%, rgba(8, 9, 11, 0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.conversion-final-title {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.2;
}

.conversion-final-sub {
  font-size: 15px;
}

/* A/B final polish winner: Version B (high-conversion bold) */
body.ab-polish-b .hero-title {
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
}

body.ab-polish-b .hero-subtitle {
  max-width: 560px;
  color: #f0f0f0;
}

body.ab-polish-b .hero-ctas .btn-premium:first-child {
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.28);
  transform: translateY(0);
}

body.ab-polish-b .hero-ctas .btn-premium:first-child:hover {
  transform: translateY(-2px);
}

body.ab-polish-b .booking-card {
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.45);
}

body.ab-polish-b .mobile-sticky-booking-btn {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.glass-panel,
.service-card,
.premium-footer .footer-widget {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.glass-panel:hover,
.premium-footer .footer-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.premium-header .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.premium-header .nav-links a:hover::after,
.premium-header .nav-links a.active::after {
  transform: scaleX(1);
}

.booking-card h3 {
  line-height: 1.25;
}

.error:not(:empty) {
  background: rgba(255, 74, 74, 0.08);
  border: 1px solid rgba(255, 74, 74, 0.28);
  border-radius: 10px;
  padding: 8px 10px;
}

.suggestion-item {
  min-height: 56px;
  justify-content: center;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  body.landing-page {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .premium-header {
    padding: 10px 0;
  }

  .premium-header .row {
    row-gap: 8px;
  }

  .premium-header .logo img {
    height: 36px !important;
  }

  .premium-header .nav-links a::after {
    display: none;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .section-title h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-usps {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
  }

  .booking-card {
    padding: 26px 20px;
  }

  .booking-step-actions {
    flex-direction: column;
  }

  .btn-step-back {
    min-width: 100%;
  }

  .hero-premium {
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 30px;
  }

  .hero-lead-row > .order-1 {
    margin-bottom: 1rem !important;
  }

  .hero-price-hints {
    margin-top: 1rem !important;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .page-hero {
    min-height: 280px;
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }

  .hero-value-line {
    margin-bottom: 14px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .hero-ctas {
    margin-bottom: 10px;
  }

  .hero-ctas .btn-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas .btn-premium,
  .mobile-sticky-booking-btn,
  .btn-premium.btn-ghost {
    min-height: 50px;
    border-radius: 14px;
  }

  body.ab-polish-b .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  body.ab-polish-b .hero-conversion-note {
    margin-bottom: 8px;
  }

  .trust-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .trust-strip::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .trust-strip span {
    font-size: 11px;
    padding: 5px 9px;
    white-space: nowrap;
  }

  .phone-group {
    flex-wrap: wrap;
    gap: 8px;
  }

  .country-picker-btn {
    width: 100%;
    justify-content: center;
  }

  .phone-group .form-control-premium {
    width: 100%;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .lead-strip {
    padding: 12px 0;
  }

  .lead-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-strip-actions {
    width: 100%;
  }

  .lead-strip-btn {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 44px;
  }

  .section-padding {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .mobile-nav-chips {
    padding-top: 8px;
    gap: 6px;
  }

  .mobile-nav-chip {
    font-size: 11px;
    min-height: 32px;
    padding: 6px 10px;
  }

  body {
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
    line-height: 1.14;
  }

  .hero-badge {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .booking-card {
    padding: 20px 14px;
  }

  .booking-proof-strip {
    gap: 6px;
  }

  .booking-proof-strip span {
    font-size: 10px;
    min-height: 28px;
    padding: 4px 8px;
  }

  .booking-step-pill {
    font-size: 11px;
    min-height: 32px;
    padding: 6px 8px;
  }

  .booking-lead-note {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .hero-premium {
    padding-top: 90px;
  }

  .booking-card-subtitle {
    font-size: 13px;
  }

  .booking-guarantee-strip li {
    font-size: 11px;
  }

  .booking-step1-micro {
    font-size: 10px;
  }

  .booking-hesitation-text {
    font-size: 11px;
  }

  .booking-popular-label {
    font-size: 10px;
  }

  .booking-route-chip {
    font-size: 10px;
    padding: 7px 9px;
  }

  .mobile-form-progress-inner {
    padding: 7px 10px;
  }

  #mobileProgressText {
    font-size: 11px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .country-picker-dropdown {
    width: 100% !important;
    left: 0;
    max-width: 100vw;
  }

  .form-control-premium {
    font-size: 15px;
    padding-left: 44px;
  }

  .form-group i {
    margin-left: 14px;
    font-size: 16px;
  }

  .service-card {
    padding: 28px 18px;
  }

  .trust-strip {
    gap: 6px;
  }

  .trust-strip span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .premium-footer {
    padding: 56px 0 24px;
  }

  .page-hero {
    min-height: 280px;
    padding-top: 98px;
    padding-bottom: 28px;
  }

  .lead-strip-copy {
    font-size: 13px;
  }

  .lead-commit-copy {
    font-size: 13px;
  }

  .lead-commit-btn {
    font-size: 11px;
    min-height: 34px;
    padding: 7px 10px;
  }

  .booking-action-trust span {
    font-size: 10px;
  }

  .lead-fill-head {
    font-size: 10px;
  }

  .lead-fill-hint {
    font-size: 10px;
  }

  .lead-strip-actions {
    flex-direction: column;
  }
}

/* Fixed airport bundle cards (landing) */
.fixed-airport-bundles {
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.98) 0%, rgba(12, 14, 18, 1) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.fixed-bundle-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  overflow: hidden;
}

.fixed-bundle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(212, 175, 55, 0.09), transparent 55%);
  pointer-events: none;
}

.fixed-bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.testimonials-section {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.testimonial-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
}

.testimonial-rating {
  color: #f2c66d;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 0 0 14px;
  color: #f0f0f0;
  line-height: 1.6;
}

.testimonial-card h3 {
  margin: 0;
  color: #d1d1d1;
  font-size: 13px;
  font-weight: 600;
}

.fixed-bundle-card-accent {
  border-color: rgba(212, 175, 55, 0.22);
}

.fixed-bundle-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--color-gold);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.fixed-bundle-price {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.fixed-bundle-price .fixed-bundle-currency {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 4px;
  opacity: 0.85;
}

.fixed-bundle-disclaimer {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

body.popup-open {
  overflow: hidden;
}

.popup-success-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding: 28px 22px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.popup-success-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18), transparent 70%);
  pointer-events: none;
}

.popup-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-left: auto;
  margin-right: auto;
}

.popup-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.45);
  animation: popup-ring-pulse 2.2s ease-in-out infinite;
}

.popup-check-icon {
  position: relative;
  font-size: 2.75rem;
  color: #3ddc84;
  filter: drop-shadow(0 4px 12px rgba(61, 220, 132, 0.35));
}

@keyframes popup-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.popup-titre {
  font-size: clamp(1.35rem, 4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.popup-message {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.popup-steps-heading {
  letter-spacing: 0.12em;
  font-size: 11px !important;
}

.popup-success-steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.popup-success-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.popup-success-step:last-child {
  margin-bottom: 0;
}

.popup-step-dot {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.popup-success-foot {
  line-height: 1.5;
}

.contact-form-panel .form-control-premium {
  min-height: 48px;
}

@media (max-width: 575px) {
  .page-hero {
    min-height: 280px;
    padding-bottom: 28px;
  }

  .fixed-bundle-card {
    padding: 22px 18px;
  }

  .popup-success-card {
    padding: 22px 16px 20px;
  }

  .popup-success-step {
    font-size: 0.85rem;
  }

  .premium-footer .footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .popup-icon-ring {
    animation: none !important;
  }
}
