/* ============================================================
   KarmaRide KSA — Main Stylesheet
   Colors: Navy #1B2A6B | Gold #C8972B | Green #2D8A4E
   ============================================================ */

:root {
  --primary:    #1B2A6B;
  --primary-dk: #131f52;
  --gold:       #C8972B;
  --gold-lt:    #e8b84b;
  --green:      #2D8A4E;
  --light-bg:   #F8F9FA;
  --dark-text:  #1A1A2E;
  --muted:      #6c757d;
  --border:     rgba(0,0,0,.08);
  --shadow:     0 4px 24px rgba(27,42,107,.10);
  --shadow-lg:  0 8px 40px rgba(27,42,107,.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s ease;
}

/* ── Base ───────────────────────────────────────────────── */
* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: #fff;
  overflow-x: hidden;
}

body.rtl {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; }

/* ── Utility colours ────────────────────────────────────── */
.text-primary-kr  { color: var(--primary) !important; }
.text-gold        { color: var(--gold) !important; }
.text-green-kr    { color: var(--green) !important; }
.bg-primary-kr    { background: var(--primary) !important; }
.bg-gold          { background: var(--gold) !important; }
.border-gold      { border-color: var(--gold) !important; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .5rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(200,151,43,.3);
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,43,.4);
}

.btn-primary-kr {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.8rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-primary-kr:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: .5rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Section headers ────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(200,151,43,.12);
  color: var(--gold);
  border: 1px solid rgba(200,151,43,.25);
  border-radius: 50px;
  padding: .3rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-title span { color: var(--gold); }

.section-sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.divider-gold {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin: .75rem auto 1rem;
}

/* ── Navbar ─────────────────────────────────────────────── */
#mainNav {
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: .6rem 0;
  background: linear-gradient(180deg, rgba(11,21,60,.9) 0%, rgba(11,21,60,.5) 100%);
  backdrop-filter: blur(4px);
}
#mainNav.scrolled {
  background: var(--primary) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  padding: .4rem 0;
}

/* Logo wrap — solid white pill so logo is always clear */
.logo-wrap {
  background: #ffffff;
  border-radius: 10px;
  padding: 5px 7px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* Brand text block */
.brand-block { line-height: 1.2; }
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand-tag {
  font-size: .6rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  padding: .4rem .85rem !important;
  border-radius: 6px;
  transition: all var(--transition);
  font-size: .9rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.12);
}

.lang-toggle {
  border-radius: 50px !important;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ── Hero Section ───────────────────────────────────────── */
.hero-section {
  min-height: 88vh;
  background: linear-gradient(140deg, #0b153c 0%, #1B2A6B 50%, #1a3a5c 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

/* Decorative circles */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200,151,43,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45,138,78,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content-wrap { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,151,43,.15);
  border: 1px solid rgba(200,151,43,.35);
  color: var(--gold-lt);
  border-radius: 50px;
  padding: .45rem 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero-title .text-gold { color: var(--gold-lt); }

.hero-subtitle {
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.25rem 0;
  display: inline-flex;
}
.hero-stat-item {
  padding: 0 2rem;
  text-align: center;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  margin: .25rem 0;
}
.hero-stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
}
.hero-stat-item .stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .3rem;
  display: block;
}

/* Wave between hero and booking */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ── Booking Section (below hero) ────────────────────────── */
.booking-section {
  background: #fff;
  padding: 4rem 0 5rem;
}

.booking-section-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(27,42,107,.12);
  border: 1px solid rgba(27,42,107,.07);
  overflow: hidden;
}

.booking-section-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1e52 100%);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.booking-section-header h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.booking-section-header p { color: rgba(255,255,255,.65); margin: 0; font-size: .88rem; }

/* Grid layout for the booking form */
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.25rem;
  padding: 1.75rem 2rem;
}

.bf-field label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  display: block;
}

.bf-field-wide { grid-column: span 2; }
.bf-submit     { display: flex; align-items: flex-end; }

/* Icon inside inputs */
.input-icon-wrap { position: relative; }
.input-icon-wrap > i {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}
.booking-form-grid .form-control,
.booking-form-grid .form-select,
.booking-form-grid textarea {
  border: 1.5px solid #e5e8f0;
  border-radius: 8px;
  padding: .6rem .85rem;
  font-size: .88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
/* Ensure icon padding is not overridden — !important needed to beat Bootstrap cascade */
.booking-form-grid .input-icon-wrap .form-control,
.booking-form-grid .input-icon-wrap .form-select {
  padding-left: 2.4rem !important;
}
.booking-form-grid .form-control:focus,
.booking-form-grid .form-select:focus,
.booking-form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,43,.15);
  outline: none;
}
.booking-form-grid textarea { resize: none; }

/* Legacy booking card (used on other pages via modal) */
.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.booking-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
}
.booking-card .form-control,
.booking-card .form-select {
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  padding: .65rem .9rem;
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,43,.15);
}
.booking-card label { font-size: .82rem; font-weight: 600; color: var(--primary); margin-bottom: .3rem; }

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
  background: var(--primary);
  padding: 4rem 0;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--gold));
}
.stat-box { text-align: center; padding: 1rem; }
.stat-box .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
}
.stat-box .stat-lbl {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Cards (Cars / Packages) ─────────────────────────────── */
.kr-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.kr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.kr-card .card-img-top {
  height: 200px;
  object-fit: cover;
}
.kr-card .card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
}
.kr-card .card-body { padding: 1.25rem; }
.kr-card .card-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.kr-card .card-text { font-size: .88rem; color: var(--muted); }

.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(27,42,107,.08);
  color: var(--primary);
  border-radius: 50px;
  padding: .2rem .7rem;
  font-size: .78rem;
  font-weight: 600;
}

.feature-tag {
  display: inline-block;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--dark-text);
  border-radius: 50px;
  padding: .2rem .65rem;
  font-size: .75rem;
  margin: .15rem;
}

/* Package card extras */
.package-card { position: relative; }
.package-card.is-featured { border: 2px solid var(--gold); }
.featured-badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  padding: .25rem .9rem;
  border-radius: 0 0 8px 8px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.package-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.package-price sup { font-size: .9rem; font-weight: 600; }
.package-price .period { font-size: .8rem; color: var(--muted); font-weight: 400; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--green); flex-shrink: 0; }

/* ── Why Us ─────────────────────────────────────────────── */
.why-us-section { background: var(--light-bg); }

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: var(--gold-lt);
}

.why-card h5 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── Routes Table ───────────────────────────────────────── */
.routes-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.routes-table-wrap table { margin: 0; }
.routes-table-wrap thead { background: var(--primary); color: #fff; }
.routes-table-wrap tbody tr:hover { background: rgba(200,151,43,.06); }
.price-cell {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.route-arrow { color: var(--gold); font-size: 1.1rem; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--primary); }

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.testimonial-card blockquote {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-card blockquote::before { content: '\201C'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -.4em; }
.testimonial-card blockquote::after  { content: '\201D'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -.4em; }
.testi-name { font-weight: 700; color: #fff; }
.testi-stars { color: var(--gold-lt); font-size: .9rem; }

/* Carousel arrows */
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #a87820 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="0" cy="0" r="80" fill="rgba(255,255,255,.05)"/><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,.04)"/></svg>') center/cover;
}
.cta-section h2 { color: #fff; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-section p  { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.btn-cta-white {
  background: #fff;
  color: var(--gold);
  border: none;
  border-radius: 50px;
  padding: .75rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-cta-white:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Pricing Calculator ──────────────────────────────────── */
.calc-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
#priceResult {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: none;
}
#priceResult .big-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-lt);
}

/* ── About page ─────────────────────────────────────────── */
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img { width: 100%; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
}

.mission-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--gold);
}
.mission-card h5 { color: var(--primary); font-weight: 700; }

/* ── Contact page ────────────────────────────────────────── */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 { color: #fff; font-weight: 800; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(200,151,43,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-lt);
  font-size: 1.2rem;
}
.contact-info-item p { margin: 0; color: rgba(255,255,255,.8); font-size: .9rem; }
.contact-info-item strong { color: #fff; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* ── Page Hero Banner ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding: 7rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, #fff, transparent);
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1rem; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.5); font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold-lt); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Footer ─────────────────────────────────────────────── */
.footer-main {
  background: #0d1224;
  color: #c4cad8;
}
.footer-main .text-muted { color: #a0a8bc !important; }

/* Footer logo — same solid white pill as navbar */
.footer-logo-wrap {
  background: #ffffff;
  border-radius: 10px;
  padding: 5px 7px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.footer-logo-wrap img { border-radius: 6px; display: block; }

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.footer-tagline {
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .05em;
}
.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #c4cad8; font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  font-size: .88rem;
  color: #c4cad8;
}
.footer-contact i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }
.footer-contact a { color: #c4cad8; }
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c4cad8;
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── Back to top ─────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(200,151,43,.4);
  transition: all var(--transition);
}
#backToTop:hover { background: var(--primary); transform: translateY(-3px); }
#backToTop.show { display: flex; }

/* ── Booking success modal ───────────────────────────────── */
.booking-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(45,138,78,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: var(--green);
}

/* ── Spinner overlay ─────────────────────────────────────── */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: .7;
}
.btn-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: .5rem;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 7rem 0 5rem; }
  .hero-stats { justify-content: center; }
  .booking-form-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-field-wide { grid-column: span 2; }
}

@media (max-width: 767.98px) {
  .booking-form-grid { grid-template-columns: 1fr; }
  .bf-field-wide { grid-column: span 1; }
  .booking-section-header { flex-direction: column; }
  .booking-form-grid { padding: 1.25rem; }
  .booking-section-header { padding: 1.25rem; }
  .hero-stat-item { padding: 0 1.25rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.9rem; }
  .stats-section { padding: 2.5rem 0; }
  .stat-box .stat-num { font-size: 2rem; }
  .hero-stats { width: 100%; }
  .hero-stat-item { padding: .5rem 1rem; }
  .hero-stat-divider { height: 1px; width: 100%; }
}
