:root {
  --ink: #1A1A2E;
  --ink-soft: #1E293B;
  --gold: #FFB800;
  --gold-lt: #FFCF4B;
  --gold-pale: #FFF8E1;
  --navy: #1E293B;
  --navy-mid: #253347;
  --navy-lt: #334155;
  --surface: #FFFFFF;
  --mist: #F5F7FA;
  --border: #E5E7EB;
  --text-muted: #6B7280;
  --green: #22C55E;
  --red: #EF4444;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 100px;
  --shadow-soft: 0 8px 32px rgba(30, 41, 59, .10);
  --shadow-card: 0 20px 50px rgba(30, 41, 59, .12);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.display-font {
  font-family: 'Cormorant Garamond', serif;
}

.tag-font {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

/* ─── LAYOUT ─── */
.wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ════════════════════════════════════
       NAVBAR
    ════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background .3s, box-shadow .3s;
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .3px;
  color: rgb(0 0 0 / 85%);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: .2s;
}

.navbar.scrolled .nav-link {
  color: var(--ink-soft);
}

.navbar.nav-link {
  color: var(--ink-soft);
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(255, 184, 0, .10);
}

.nav-btn {
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255, 184, 0, .35);
  transition: .25s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-lt);
  box-shadow: 0 8px 24px rgba(255, 184, 0, .4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}

.navbar.scrolled .hamburger {
  color: var(--ink);
}

.navbar.hamburger {
  color: var(--ink);
}

.nav-item {
  position: relative;
}

.arrow {
  font-size: 20px;
  display: inline-block;
  transition: transform .25s;
  opacity: .7;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(255, 184, 0, .15);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, top .2s;
  z-index: 999;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}


.navbar.dropdown {
  background: rgba(15, 15, 15, .97);
  border-color: rgba(255, 184, 0, .2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: .83rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}


.navbar.dropdown a {
  color: rgba(255, 255, 255, .75);
}

.dropdown a:hover {
  color: var(--gold);
  background: rgba(255, 184, 0, .07);
}

.dropdown a i {
  font-size: 15px;
  color: var(--gold);
  opacity: .8;
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 184, 0, .12);
  margin: 6px 0;
}

.dropdown-label {
  font-size: .68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #aaa;
  padding: 8px 18px 4px;
}



.navbar.dropdown-label {
  color: rgba(255, 255, 255, .3);
}

/* ════════════════════════════════════
       HERO SWIPER
    ════════════════════════════════════ */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 46, .88) 0%, rgba(26, 26, 46, .55) 50%, rgba(26, 26, 46, .25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 184, 0, .18);
  border: 1px solid rgba(255, 184, 0, .35);
  color: var(--gold-lt);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-lt);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--gold-lt);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255, 184, 0, .4);
  transition: .25s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-lt);
  box-shadow: 0 10px 30px rgba(255, 184, 0, .5);
  color: #fff;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid white;
  cursor: pointer;
  text-decoration: none;
  transition: .25s;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  transition: .25s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero nav arrows */
.hero-nav {
  position: absolute;
  bottom: 48px;
  right: 5vw;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s;
}

.bi-building {
  color: var(--gold) !important;

}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Hero pagination */
.hero-pag {
  position: absolute;
  bottom: 56px;
  left: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-pag .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: white;
  transition: .3s;
  opacity: 1;
}

.hero-pag .swiper-pagination-bullet-active {
  width: 32px;
  background: var(--gold);
}

/* ════════════════════════════════════
       SECTION HEADERS
    ════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.section-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* Slider nav shared */
.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  box-shadow: var(--shadow-soft);
}

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

/* ══════════════ WHY CHOOSE - REVV STYLE ══════════════ */
.why-section {
  padding: 40px 0;
}

.why-swiper {
  overflow: hidden;
}

.why-card-revv {
  background: #fff;
  border-radius: 14px;
  padding: 24px 26px;
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(26, 26, 46, .08);
  transition: .3s ease;
}

.why-card-revv:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(26, 26, 46, .12);
}

.why-icon-revv {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.why-card-revv h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.why-card-revv p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

@media(max-width:768px) {
  .why-card-revv {
    padding: 22px;
  }

  .why-card-revv h3 {
    font-size: 20px;
  }

  .why-card-revv p {
    font-size: 15px;
  }
}

/* ════════════════════════════════════
       FLEET SECTION
    ════════════════════════════════════ */
.fleet-section {
  padding: 30px 0;
  background: var(--navy);
}

.fleet-section .section-title {
  color: #fff;
}

.fleet-section .section-subtitle {
  color: rgba(255, 255, 255, .7);
}

.fleet-section .slider-btn {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
}

.fleet-section .slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.car-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: .3s;
  backdrop-filter: blur(4px);
}

.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, .4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.car-img-wrap {
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  padding: 32px 24px 16px;
  text-align: center;
  position: relative;
}

.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.car-img {
  width: 100%;
  max-width: 350px;
  height: 250px;
  object-fit: contain;
  transition: .4s;
}

.car-body {
  padding: 22px;
}

.car-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.car-make {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.car-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.car-year {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

.car-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin: 14px 0;
}

.car-spec {
  color: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  gap: 6px;
}

.car-spec i {
  color: var(--gold);
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.car-price sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 400;
}

.car-book {
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .2s;
}

.car-book:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--gold-lt);
  box-shadow: 0 6px 20px rgba(255, 184, 0, .4);
}

/* ════════════════════════════════════
       STATS BAND
    ════════════════════════════════════ */
.stats-band {
  background: var(--gold);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .4);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: .5px;
}

/* ════════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════════ */
.testi-section {
  padding: 96px 0;
  background: var(--mist);
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: .3s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.testi-stars {
  color: var(--gold);
  font-size: .9rem;
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testi-quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -.4em;
  margin-right: 4px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}

.testi-name {
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}

.testi-role {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════
       BLOG
    ════════════════════════════════════ */
.blog-section {
  padding: 96px 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: .3s;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.blog-img-wrap {
  overflow: hidden;
  height: 200px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-body {
  padding: 24px;
}

.blog-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-desc {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.blog-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .2s;
}

.blog-link:hover {
  gap: 10px;
}

/* ════════════════════════════════════
       HOW IT WORKS
    ════════════════════════════════════ */
.how-section {
  padding: 30px 0;
  background: var(--navy);
}

.how-section .section-title {
  color: #fff;
}

.how-section .section-subtitle {
  color: rgba(255, 255, 255, .6);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 184, 0, .4) 0, rgba(255, 184, 0, .4) 8px, transparent 8px, transparent 16px);
}

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

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255, 184, 0, .4);
  position: relative;
  z-index: 2;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.step-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

/* ════════════════════════════════════
       CTA BANNER
    ════════════════════════════════════ */
.cta-section {
  padding: 96px 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
  border-radius: var(--radius-xl);
  padding: 30px 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 184, 0, .12);
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 184, 0, .08);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin-bottom: 40px;
}

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

/* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
.footer {
  background: #0D0F1A;
  padding: 72px 0 32px;
}


/* Desktop: 5 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Tablet: 3 columns */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
}

.footer-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .2s;
}

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

.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: .2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: .9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

/* ════════════════════════════════════
       MODAL
    ════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 20, .7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 440px;
  padding: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
  transform: translateY(20px) scale(.97);
  transition: .3s;
}

.modal-overlay.open .modal-card {
  transform: none;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}

.modal-close {
  background: var(--mist);
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: .2s;
}

.modal-close:hover {
  background: #fee2e2;
  color: var(--red);
}

.modal-sub {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-label-sm {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.modal-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
  transition: .2s;
}

.modal-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .12);
}

.modal-input-wrap i {
  color: var(--gold);
}

.modal-input-wrap input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
}

.otp-input {
  letter-spacing: 6px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 700;
}

.btn-modal-primary {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: .25s;
  box-shadow: 0 4px 16px rgba(255, 184, 0, .35);
}

.btn-modal-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 20px rgba(255, 184, 0, .45);
}

.modal-footer-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.modal-footer-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
@media (max-width: 1024px) {
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid,
  .stats-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

  .why-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-grid::before {
    display: none;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-nav {
    right: 24px;
    bottom: 32px;
  }

  .hero-pag {
    left: 24px;
    bottom: 40px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }
}

/* Swiper overrides */
.swiper {
  overflow: visible;
}

.fleet-swiper,
.testi-swiper,
.blog-swiper {
  overflow: hidden;
}

/* Scroll reveal */
.reveal {

  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s, transform .6s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ══════════════════════════════════
       PREMIUM FAQ SECTION
    ══════════════════════════════════ */
.kayra-faq-section {
  padding: 20px 0;
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.kayra-faq-heading {
  max-width: 760px;
  margin: auto;
  margin-bottom: 60px;
}

.kayra-faq-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 184, 0, .12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.kayra-faq-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}

.kayra-faq-subtitle {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
}

.kayra-faq-wrapper {
  max-width: 920px;
  margin: auto;
}

.kayra-faq-item {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.3s ease;
}

.kayra-faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.kayra-faq-item.active {
  border-color: rgba(255, 184, 0, .3);
  box-shadow: 0 18px 45px rgba(255, 184, 0, .10);
}

.kayra-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.kayra-faq-question span {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.kayra-faq-question i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 184, 0, .10);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s ease;
}

.kayra-faq-item.active .kayra-faq-question i {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}

.kayra-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.kayra-faq-answer p {
  padding: 0 32px 28px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
}

.kayra-faq-item.active .kayra-faq-answer {
  max-height: 300px;
}

@media(max-width:768px) {
  .kayra-faq-section {
    padding: 70px 0;
  }

  .kayra-faq-title {
    font-size: 25px;
  }

  .kayra-faq-question {
    padding: 22px;
    gap: 15px;
  }

  .kayra-faq-question span {
    font-size: 17px;
  }

  .kayra-faq-answer p {
    padding: 0 22px 24px;
  }
}

/* ── OFFERS SECTION ── */
.offers-section {
  padding: 30px 0;
}

.offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.offers-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
}

.offers-nav {
  display: flex;
  gap: 8px;
}

.offers-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  box-shadow: var(--shadow-soft);
}

.offers-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.offers-swiper {
  overflow: hidden;
}

.why-swiper {
  overflow: hidden;
}

/* ── OFFER CARD ── */
.offer-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(26, 26, 46, .07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 26, 46, .13);
}

.offer-top {
  padding: 24px 24px 12px;
}

.offer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.offer-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.offer-discount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 12px;
}

.offer-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.offer-bottom {
  position: relative;
  height: 90px;
  margin-top: 8px;
}

.offer-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer-wave-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.offer-code {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 10px;
  letter-spacing: 1px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
  cursor: pointer;
  transition: .2s;
  border: none;
  z-index: 2;
}

.offer-code:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.offer-tc {
  position: absolute;
  bottom: 22px;
  right: 18px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  letter-spacing: .5px;
  z-index: 2;
  transition: color .2s;
}

.offer-tc:hover {
  color: #fff;
  text-decoration: underline;
}

.offer-code.copied {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 768px) {
  .offers-section {
    padding: 48px 0;
  }
}

/* ============================================
   KAYRA CABS - COMPLETE RESPONSIVE CSS
   Mobile First Approach | All Devices
   ============================================ */

/* ──────────────────────────────────────────
   BASE SETTINGS
   ────────────────────────────────────────── */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
  width: 100%;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* ──────────────────────────────────────────
   CONTAINER RESPONSIVE
   ────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .wrap {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    padding: 0 32px;
  }
}

/* ──────────────────────────────────────────
   TYPOGRAPHY RESPONSIVE
   ────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.car-price {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.step-number {
  width: clamp(50px, 12vw, 72px);
  height: clamp(50px, 12vw, 72px);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.stat-number {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

/* ──────────────────────────────────────────
   NAVBAR RESPONSIVE
   ────────────────────────────────────────── */
.navbar-inner {
  padding: 0 16px;
  height: 60px;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 0 24px;
    height: 72px;
  }
}

@media (min-width: 1200px) {
  .navbar-inner {
    padding: 0 32px;
  }
}

.logo {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

.nav-links {
  display: none;
}

.hamburger {
  display: block;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

.nav-link {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: 6px 10px;
}

@media (min-width: 1200px) {
  .nav-link {
    padding: 8px 14px;
  }
}

.nav-btn {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  padding: 8px 20px;
}

@media (min-width: 768px) {
  .nav-btn {
    padding: 10px 26px;
  }
}

/* ──────────────────────────────────────────
   DROPDOWN RESPONSIVE
   ────────────────────────────────────────── */
.dropdown {
  min-width: 180px;
  left: 0;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .dropdown {
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
  }
}

.dropdown a {
  font-size: clamp(0.75rem, 1.8vw, 0.83rem);
  padding: 8px 14px;
}

@media (min-width: 768px) {
  .dropdown a {
    padding: 10px 18px;
  }
}

/* ──────────────────────────────────────────
   HERO SECTION RESPONSIVE
   ────────────────────────────────────────── */
.hero-swiper {
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
}

.hero-content {
  padding: 0 20px;
  max-width: 90%;
}

@media (min-width: 640px) {
  .hero-content {
    max-width: 80%;
    padding: 0 30px;
  }
}

@media (min-width: 768px) {
  .hero-content {
    max-width: 600px;
    padding: 0 40px;
  }
}

.hero-desc {
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  max-width: 90%;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .hero-desc {
    max-width: 520px;
    margin-bottom: 40px;
  }
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gold,
.btn-ghost-white {
  padding: 10px 20px;
  font-size: 0.8rem;
}

@media (min-width: 480px) {

  .btn-gold,
  .btn-ghost-white {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {

  .btn-gold,
  .btn-ghost-white {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}

/* Hero Navigation */
.hero-nav {
  bottom: 30px;
  right: 20px;
  gap: 8px;
}

@media (min-width: 768px) {
  .hero-nav {
    bottom: 48px;
    right: 5vw;
    gap: 12px;
  }
}

.hero-arrow {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero-arrow {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}

.hero-pag {
  bottom: 38px;
  left: 20px;
}

@media (min-width: 768px) {
  .hero-pag {
    bottom: 56px;
    left: 5vw;
  }
}

/* ──────────────────────────────────────────
   SEARCH BAR RESPONSIVE
   ────────────────────────────────────────── */
.search-bar-wrap {
  margin-top: -60px;
  padding: 0 16px;
  position: relative;
  z-index: 20;
}

@media (min-width: 768px) {
  .search-bar-wrap {
    margin-top: -100px;
  }
}

@media (min-width: 1024px) {
  .search-bar-wrap {
    margin-top: -140px;
    padding: 0 32px;
  }
}

.search-card {
  padding: 16px;
  border-radius: 20px;
}

@media (min-width: 640px) {
  .search-card {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .search-card {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (min-width: 1024px) {
  .search-card {
    padding: 28px 32px;
    border-radius: var(--radius-xl);
  }
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .search-grid {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.2fr auto;
    gap: 16px;
  }
}

.search-input-wrap {
  padding: 8px 12px;
}

@media (min-width: 768px) {
  .search-input-wrap {
    padding: 10px 14px;
  }
}

.search-input-wrap input {
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .search-input-wrap input {
    font-size: 0.9rem;
  }
}

.search-btn {
  height: 44px;
  padding: 0 20px;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .search-btn {
    width: auto;
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .search-btn {
    height: 50px;
    padding: 0 32px;
  }
}

.search-note {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 0.7rem;
}

@media (min-width: 640px) {
  .search-note {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .search-note {
    font-size: 0.8rem;
    gap: 24px;
    justify-content: flex-start;
  }
}

/* ──────────────────────────────────────────
   OFFERS HEADER RESPONSIVE
   ────────────────────────────────────────── */
.offers-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .offers-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .offers-header {
    margin-bottom: 32px;
  }
}

.offers-title {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
}

/* ──────────────────────────────────────────
   WHY CHOOSE CARDS RESPONSIVE
   ────────────────────────────────────────── */
.why-card-revv {
  flex-direction: column;
  text-align: center;
  padding: 16px;
  gap: 12px;
}

@media (min-width: 480px) {
  .why-card-revv {
    padding: 20px;
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .why-card-revv {
    flex-direction: row;
    text-align: left;
    padding: 24px 26px;
    gap: 22px;
  }
}

.why-icon-revv {
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 22px;
}

@media (min-width: 480px) {
  .why-icon-revv {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .why-icon-revv {
    width: 62px;
    height: 62px;
    min-width: 62px;
    font-size: 26px;
  }
}

.why-card-revv h3 {
  font-size: 16px;
}

@media (min-width: 480px) {
  .why-card-revv h3 {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .why-card-revv h3 {
    font-size: 18px;
  }
}

.why-card-revv p {
  font-size: 13px;
}

@media (min-width: 480px) {
  .why-card-revv p {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .why-card-revv p {
    font-size: 15px;
  }
}

/* ──────────────────────────────────────────
   FLEET SECTION RESPONSIVE
   ────────────────────────────────────────── */
.fleet-section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .fleet-section {
    padding: 60px 0;
  }
}

.car-img-wrap {
  padding: 20px 16px 12px;
}

@media (min-width: 640px) {
  .car-img-wrap {
    padding: 24px 20px 14px;
  }
}

@media (min-width: 768px) {
  .car-img-wrap {
    padding: 32px 24px 16px;
  }
}

.car-img {
  max-width: 300px;
  height: 250px;
}

@media (min-width: 640px) {
  .car-img {
    max-width: 275px;
    height: 275px;
  }
}

@media (min-width: 768px) {
  .car-img {
    max-width: 350px;
    height: 250px;
  }
}

.car-body {
  padding: 16px;
}

@media (min-width: 640px) {
  .car-body {
    padding: 18px;
  }
}

@media (min-width: 768px) {
  .car-body {
    padding: 22px;
  }
}

.car-name {
  font-size: 1.3rem;
}

@media (min-width: 640px) {
  .car-name {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .car-name {
    font-size: 1.6rem;
  }
}

.car-specs {
  gap: 12px;
  padding: 12px 0;
  margin: 10px 0;
}

@media (min-width: 640px) {
  .car-specs {
    gap: 14px;
    padding: 14px 0;
  }
}

@media (min-width: 768px) {
  .car-specs {
    gap: 16px;
    padding: 16px 0;
    margin: 14px 0;
  }
}

.car-spec {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .car-spec {
    font-size: 0.8rem;
  }
}

.car-book {
  padding: 8px 16px;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .car-book {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) {
  .car-book {
    padding: 10px 22px;
    font-size: 0.85rem;
  }
}

/* ──────────────────────────────────────────
   STATS BAND RESPONSIVE
   ────────────────────────────────────────── */
.stats-band {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .stats-band {
    padding: 56px 0;
  }
}

.stats-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  padding: 16px 12px;
}

@media (min-width: 640px) {
  .stat-item {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .stat-item {
    padding: 0 24px;
  }
}

.stat-item:not(:last-child)::after {
  display: none;
}

@media (min-width: 640px) {
  .stat-item:not(:last-child)::after {
    display: block;
  }
}

.stat-label {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.85rem;
  }
}

/* ──────────────────────────────────────────
   TESTIMONIALS RESPONSIVE
   ────────────────────────────────────────── */
.testi-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .testi-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .testi-section {
    padding: 96px 0;
  }
}

.testi-card {
  padding: 24px;
}

@media (min-width: 640px) {
  .testi-card {
    padding: 28px;
  }
}

@media (min-width: 768px) {
  .testi-card {
    padding: 36px;
  }
}

.testi-quote {
  font-size: 1rem;
}

@media (min-width: 640px) {
  .testi-quote {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  .testi-quote {
    font-size: 1.2rem;
  }
}

/* ──────────────────────────────────────────
   BLOG SECTION RESPONSIVE
   ────────────────────────────────────────── */
.blog-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .blog-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .blog-section {
    padding: 96px 0;
  }
}

.blog-img-wrap {
  height: 160px;
}

@media (min-width: 640px) {
  .blog-img-wrap {
    height: 180px;
  }
}

@media (min-width: 768px) {
  .blog-img-wrap {
    height: 200px;
  }
}

.blog-body {
  padding: 16px;
}

@media (min-width: 640px) {
  .blog-body {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .blog-body {
    padding: 24px;
  }
}

.blog-title {
  font-size: 1.1rem;
}

@media (min-width: 640px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

/* ──────────────────────────────────────────
   HOW IT WORKS RESPONSIVE
   ────────────────────────────────────────── */
.how-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .how-section {
    padding: 80px 0;
  }
}

.steps-grid {
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .steps-grid {
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
}

.steps-grid::before {
  display: none;
}

@media (min-width: 768px) {
  .steps-grid::before {
    display: block;
  }
}

.step-title {
  font-size: 1.2rem;
}

@media (min-width: 640px) {
  .step-title {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .step-title {
    font-size: 1.4rem;
  }
}

/* ──────────────────────────────────────────
   CTA SECTION RESPONSIVE
   ────────────────────────────────────────── */
.cta-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 96px 0;
  }
}

.cta-inner {
  padding: 40px 20px;
  border-radius: 24px;
}

@media (min-width: 640px) {
  .cta-inner {
    padding: 50px 30px;
    border-radius: 30px;
  }
}

@media (min-width: 768px) {
  .cta-inner {
    padding: 60px 40px;
    border-radius: var(--radius-xl);
  }
}

.cta-sub {
  font-size: 0.9rem;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .cta-sub {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

/* ──────────────────────────────────────────
   FAQ SECTION RESPONSIVE
   ────────────────────────────────────────── */
.kayra-faq-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .kayra-faq-section {
    padding: 80px 0;
  }
}

.kayra-faq-question {
  padding: 20px;
}

@media (min-width: 640px) {
  .kayra-faq-question {
    padding: 24px 28px;
  }
}

@media (min-width: 768px) {
  .kayra-faq-question {
    padding: 28px 32px;
  }
}

.kayra-faq-question span {
  font-size: 16px;
}

@media (min-width: 640px) {
  .kayra-faq-question span {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .kayra-faq-question span {
    font-size: 19px;
  }
}

.kayra-faq-question i {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

@media (min-width: 640px) {
  .kayra-faq-question i {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .kayra-faq-question i {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

.kayra-faq-answer p {
  padding: 0 20px 20px;
  font-size: 14px;
}

@media (min-width: 640px) {
  .kayra-faq-answer p {
    padding: 0 28px 24px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .kayra-faq-answer p {
    padding: 0 32px 28px;
    font-size: 15px;
  }
}

/* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
.footer {
  background: #0D0F1A;
  padding: 72px 0 32px;
}

/* Desktop: 5 columns - Single Row */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  width: 100%;
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* First column spans full width on tablet as well */
  .footer-grid> :first-child {
    grid-column: span 2;
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* Mobile (up to 767px) - First column full, rest 2x2 */
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* First column spans full width */
  .footer-grid> :first-child {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 10px;
  }

  /* Remaining columns automatically arrange in 2x2 grid */
  .footer-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-col-title {
    text-align: left;
  }

  /* Keep contact items left-aligned on mobile */
  .footer-contact-item {
    justify-content: flex-start;
  }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {
  .footer-grid {
    gap: 25px;
  }

  .footer-col-title {
    font-size: 0.7rem;
    margin-bottom: 15px;
  }

  .footer-links a,
  .footer-contact-item span {
    font-size: 0.75rem;
  }
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0D0F1A;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  min-width: 20px;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Mobile bottom footer */
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
  }
}

/* ──────────────────────────────────────────
   MODAL RESPONSIVE
   ────────────────────────────────────────── */
.modal-card {
  width: 90%;
  max-width: 400px;
  padding: 24px;
  margin: 16px;
}

@media (min-width: 480px) {
  .modal-card {
    padding: 30px;
  }
}

@media (min-width: 640px) {
  .modal-card {
    padding: 40px;
    max-width: 440px;
  }
}

.modal-title {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .modal-title {
    font-size: 1.8rem;
  }
}

.modal-input-wrap {
  padding: 10px 14px;
}

@media (min-width: 640px) {
  .modal-input-wrap {
    padding: 12px 16px;
  }
}

/* ──────────────────────────────────────────
   BUTTONS & INTERACTIVE ELEMENTS
   ────────────────────────────────────────── */
.slider-btn,
.offers-arrow {
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
}

@media (min-width: 640px) {

  .slider-btn,
  .offers-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {

  .slider-btn,
  .offers-arrow {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}

/* ──────────────────────────────────────────
   SECTION PADDING ADJUSTMENTS
   ────────────────────────────────────────── */
.why-section,
.offers-section {
  padding: 40px 0;
}

@media (min-width: 768px) {

  .why-section,
  .offers-section {
    padding: 60px 0;
  }
}

/* ──────────────────────────────────────────
   OFFER CARDS RESPONSIVE
   ────────────────────────────────────────── */
.offer-top {
  padding: 16px;
}

@media (min-width: 640px) {
  .offer-top {
    padding: 20px 24px 12px;
  }
}

.offer-name {
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .offer-name {
    font-size: 1rem;
  }
}

.offer-discount {
  font-size: 1.3rem;
}

@media (min-width: 640px) {
  .offer-discount {
    font-size: 1.6rem;
  }
}

.offer-desc {
  font-size: 0.7rem;
}

@media (min-width: 640px) {
  .offer-desc {
    font-size: 0.82rem;
  }
}

.offer-code {
  font-size: 0.7rem;
  padding: 6px 12px;
  bottom: 12px;
  left: 12px;
}

@media (min-width: 640px) {
  .offer-code {
    font-size: 0.85rem;
    padding: 8px 18px;
    bottom: 18px;
    left: 18px;
  }
}

.offer-tc {
  font-size: 0.65rem;
  bottom: 16px;
  right: 12px;
}

@media (min-width: 640px) {
  .offer-tc {
    font-size: 0.75rem;
    bottom: 22px;
    right: 18px;
  }
}

/* ──────────────────────────────────────────
   SWIPER CUSTOMIZATION
   ────────────────────────────────────────── */
.swiper {
  overflow: visible;
}

.fleet-swiper,
.testi-swiper,
.blog-swiper,
.offers-swiper,
.why-swiper {
  overflow: hidden;
}

/* ──────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ──────────────────────────────────────────
   UTILITY CLASSES
   ────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}

/* ============================================
   CAR LISTING PAGE - PURE CSS STICKY HEADER
   Page: car-listing
   ============================================ */

.listing-page {
  background: #f5f7fa;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
}

.search-info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item i {
  font-size: 24px;
  color: #ffb800;
}

.info-text span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.info-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.info-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

.modify-btn {
  background: linear-gradient(135deg, #ffb800, #ffcf4b);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.modify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.35);
}

.km-plan-card {
  padding: 10px 15px;
}

.km-plan-card span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.km-options {
  display: flex;
  gap: 8px;
}

.km-option {
  background: transparent;
  border: none;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.km-option.active {
  background: #ffb800;
  color: white;
}

/* Listing Wrapper */
.listing-wrapper {
  max-width: 1480px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

/* Filters Panel */
.filters-panel {
  background: white;
  border-radius: 20px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.filters-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}

.clear-btn {
  background: none;
  border: none;
  color: #ffb800;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.filter-section {
  margin-bottom: 28px;
}

.filter-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #ffb800;
}

.price-range-slider {
  margin-top: 10px;
}

.price-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: #e5e7eb;
  border-radius: 4px;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #ffb800;
  border-radius: 50%;
  cursor: pointer;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}

.apply-filters-btn {
  width: 100%;
  background: #ffb800;
  border: none;
  padding: 12px;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.2s;
}

.apply-filters-btn:hover {
  background: #ffcf4b;
}

/* Cars Listing */
.cars-listing {
  min-width: 0;
}

.breadcrumb-trail {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}

.breadcrumb-trail a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb-trail a:hover {
  color: #ffb800;
}

.breadcrumb-trail i {
  font-size: 10px;
  margin: 0 6px;
}

.breadcrumb-trail span {
  color: #ffb800;
  font-weight: 600;
}

/* Horizontal Car Cards */
.cars-grid-horizontal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.car-card-horizontal {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
}

.car-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #ffb800;
}

.car-image-wrapper {
  width: 260px;
  background: linear-gradient(135deg, #f5f7fa, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.car-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.car-card-horizontal:hover .car-image-wrapper img {
  transform: scale(1.05);
}

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffb800;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.car-badge.green {
  background: #22c55e;
}

.car-badge.gold {
  background: #ffb800;
}

.car-badge.luxury {
  background: #8b5cf6;
}

.car-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.car-title-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.car-title-section h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
}

.rating {
  font-size: 14px;
  font-weight: 700;
  color: #ffb800;
}

.rating span {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
}

.car-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.car-specs-list span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.car-specs-list i {
  color: #ffb800;
  font-size: 14px;
}

.car-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.car-highlights span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
}

.car-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price .currency {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.price .amount {
  font-size: 28px;
  font-weight: 800;
  color: #ffb800;
}

.price .period {
  font-size: 12px;
  color: #6b7280;
}

.book-btn {
  background: #ffb800;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.book-btn:hover {
  background: #ffcf4b;
  transform: translateY(-2px);
}

/* Pagination */
.pagination-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.page-link:hover {
  border-color: #ffb800;
  background: #fff8e1;
}

.page-link.active {
  background: #ffb800;
  border-color: #ffb800;
  color: white;
}

.page-link.next {
  gap: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .listing-wrapper {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: static;
  }

  .car-card-horizontal {
    flex-direction: column;
  }

  .car-image-wrapper {
    width: 100%;
    padding: 30px;
  }

  .search-header-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    margin: 20px auto 0;
    position: relative;
    top: 0;
  }

  .search-info-box {
    flex-wrap: wrap;
  }

  .info-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .car-title-section {
    flex-direction: column;
  }

  .car-price-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .km-options {
    flex-wrap: wrap;
  }
}

/* ══════════════ CAR DETAILS PAGE CSS - KAYRA THEME ══════════════ */

.car-details-page {
  min-height: 100vh;
  padding: 60px 0;
  font-family: 'DM Sans', sans-serif;
  background: #F5F7FA;
}

.car-details-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 405px;
  gap: 32px;
}

.car-details-left {
  min-width: 0;
}

/* Summary Card - Left & Right inside */
.car-details-summary-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.car-details-car-box {
  padding: 28px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-right: 1px solid #E5E7EB;
}

.car-details-car-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 24px;
}

/* Gallery */
.car-details-gallery {
  width: 100%;
  max-width: 400px;
  height: 220px;
  margin: 0 auto;
  background: #F5F7FA;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}

.car-details-gallery-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.car-details-gallery-track::-webkit-scrollbar {
  display: none;
}

.car-details-gallery-slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.car-details-gallery-slide img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.car-details-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.car-details-gallery:hover .car-details-gallery-arrow {
  opacity: 1;
}

.car-details-gallery-arrow:hover {
  background: #FFB800;
}

.car-details-gallery-prev {
  left: 12px;
}

.car-details-gallery-next {
  right: 12px;
}

/* Specs */
.car-details-specs {
  margin-top: 24px;
  display: flex;
  justify-content: space-around;
  gap: 16px;
}

.car-details-specs div {
  text-align: center;
  padding: 12px;
  background: #F5F7FA;
  border-radius: 12px;
  flex: 1;
}

.car-details-specs i {
  display: block;
  color: #FFB800;
  font-size: 22px;
  margin-bottom: 6px;
}

.car-details-specs span {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A2E;
}

/* Booking Box */
.car-details-booking-box {
  padding: 24px 28px 32px;
}

.car-details-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.car-details-section-title span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFB800, transparent);
}

.car-details-section-title h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6B7280;
  margin: 0;
  white-space: nowrap;
}

.car-details-date-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 20px;
}

.car-details-to {
  width: 32px;
  height: 32px;
  background: #FFB800;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.car-details-to::before,
.car-details-to::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #E5E7EB;
}

.car-details-to::before {
  right: 100%;
}

.car-details-to::after {
  left: 100%;
}

.car-details-duration {
  text-align: center;
  padding: 12px;
  background: #F5F7FA;
  border-radius: 40px;
  margin-bottom: 24px;
}

.car-details-duration i {
  color: #FFB800;
  margin-right: 8px;
}

.car-details-address,
.car-details-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

.car-details-address button,
.car-details-plan button {
  background: none;
  border: none;
  color: #FFB800;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}

/* Points Card */
.car-details-points-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.car-details-points-list {
  margin-top: 24px;
}

.car-details-point-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}

.car-details-point-label {
  font-weight: 700;
  color: #1A1A2E;
  font-size: 13px;
}

.car-details-point-text {
  color: #6B7280;
  font-size: 13px;
  line-height: 1.6;
}

/* Fare Card */
.car-details-fare-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  padding: 28px;
  position: sticky;
  top: 100px;
  height: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.car-details-fare-list {
  margin-bottom: 20px;
}

.car-details-fare-list div,
.car-details-extra-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

.car-details-fare-list span,
.car-details-extra-list span {
  color: #6B7280;
  font-size: 14px;
}

.car-details-fare-list strong,
.car-details-extra-list strong {
  color: #1A1A2E;
  font-weight: 600;
}

.car-details-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFB800;
}

.car-details-total span {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
}

.car-details-total strong {
  font-size: 24px;
  font-weight: 800;
  color: #FFB800;
}

.car-details-extra-list {
  margin-bottom: 24px;
}

.car-details-cashback {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.car-details-cashback-icon {
  width: 48px;
  height: 48px;
  background: #FFB800;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.car-details-cashback h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 4px;
}

.car-details-cashback p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

.car-details-login-btn {
  width: 100%;
  padding: 14px;
  background: #F5F7FA;
  border: 1px solid #E5E7EB;
  border-radius: 40px;
  font-weight: 600;
  color: #1A1A2E;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}

.car-details-login-btn:hover {
  background: #FFF8E1;
  border-color: #FFB800;
}

.car-details-reserve-wrap {
  margin-top: 8px;
}

.car-details-reserve-btn {
  width: 100%;
  padding: 16px;
  background: #FFB800;
  border: none;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.car-details-reserve-btn:hover {
  background: #FFCF4B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
  .car-details-container {
    grid-template-columns: 1fr;
  }

  .car-details-summary-card {
    grid-template-columns: 1fr;
  }

  .car-details-car-box {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }

  .car-details-fare-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .car-details-point-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .car-details-date-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .car-details-to::before,
  .car-details-to::after {
    display: none;
  }

  .car-details-car-title {
    font-size: 22px;
  }

  .car-details-specs {
    flex-wrap: wrap;
  }
}


/* ══════════════ BOOKING SUMMARY PAGE CSS ══════════════ */

.booking-summary-page {
  min-height: 100vh;
  padding: 40px 0;
  font-family: 'DM Sans', sans-serif;
  background: #F5F7FA;
}

.booking-summary-container {
  max-width: 1480px;
  margin: 35px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 32px;
}

/* LEFT SIDE */
.booking-summary-left {
  min-width: 0;
}

/* Progress Steps */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 24px 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid #E5E7EB;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F7FA;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #6B7280;
}

.progress-step.completed .step-circle,
.progress-step.active .step-circle {
  background: #FFB800;
  border-color: #FFB800;
  color: white;
}

.progress-step.active .step-circle {
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.2);
}

.progress-step span {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #E5E7EB;
  margin: 0 12px;
}

.progress-line.completed {
  background: #FFB800;
}

/* Car Summary Card */
.booking-car-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  border: 1px solid #E5E7EB;
}

.booking-car-image {
  width: 120px;
  background: #F5F7FA;
  border-radius: 12px;
  padding: 12px;
}

.booking-car-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.booking-car-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1A1A2E;
}

.booking-car-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.booking-car-specs span {
  font-size: 12px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-car-rating {
  font-size: 13px;
  color: #FFB800;
}

.booking-car-rating span {
  color: #6B7280;
}

/* Coins Card */
.booking-coins-card {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.coins-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.coins-info i {
  font-size: 32px;
  color: #FFB800;
}

.coins-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1A1A2E;
}

.coins-info p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

.coins-apply-btn {
  background: #FFB800;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.coins-apply-btn:hover {
  background: #FFCF4B;
  transform: translateY(-1px);
}

/* Details Cards */
.booking-details-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #E5E7EB;
}

.booking-details-card h4,
.booking-addons-card h4,
.booking-delivery-card h4,
.booking-fare-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFB800;
}

.booking-detail-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

.detail-label {
  width: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
}

.detail-value {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A2E;
}

.detail-edit {
  background: none;
  border: none;
  color: #FFB800;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT SIDE */
.booking-summary-right {
  min-width: 0;
}

/* Add-ons Card */
.booking-addons-card,
.booking-delivery-card,
.booking-promo-card,
.booking-fare-card,
.booking-payment-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #E5E7EB;
}

.addon-item {
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}

.addon-item:last-child {
  border-bottom: none;
}

.addon-info {
  margin-bottom: 12px;
}

.addon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.addon-title span:first-child {
  font-weight: 700;
  color: #1A1A2E;
}

.addon-badge {
  font-size: 10px;
  padding: 2px 8px;
  background: #FFF8E1;
  color: #FFB800;
  border-radius: 20px;
  font-weight: 600;
}

.addon-desc {
  font-size: 12px;
  color: #6B7280;
}

.addon-price {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-amount {
  font-weight: 700;
  color: #1A1A2E;
}

.addon-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}

.price-free {
  color: #22C55E;
}

/* Delivery Options */
.delivery-save-offer {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #FFB800;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.delivery-option:hover {
  border-color: #FFB800;
  background: #FFF8E1;
}

.delivery-option input {
  accent-color: #FFB800;
}

.delivery-option-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-option-content i {
  font-size: 20px;
  color: #FFB800;
}

.delivery-option-content strong {
  font-size: 14px;
}

.delivery-option-content small {
  font-size: 11px;
  color: #6B7280;
  display: block;
}

.delivery-save {
  font-size: 12px;
  font-weight: 700;
  color: #22C55E;
}

.delivery-address {
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}

.address-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.address-row i {
  color: #FFB800;
  font-size: 18px;
}

.address-row p {
  margin: 0;
  font-size: 13px;
  color: #1A1A2E;
}

.address-edit {
  background: none;
  border: none;
  color: #FFB800;
  font-size: 12px;
  cursor: pointer;
  margin-left: auto;
}

/* Promo Card */
.booking-promo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1A1A2E, #2D2D4A);
  color: white;
}

.booking-promo-card i {
  font-size: 28px;
  color: #FFB800;
}

.booking-promo-card strong {
  font-size: 14px;
}

.booking-promo-card p {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
}

.promo-apply {
  margin-left: auto;
  background: none;
  border: 1px solid #FFB800;
  padding: 6px 16px;
  border-radius: 20px;
  color: #FFB800;
  cursor: pointer;
}

/* Fare Details */
.fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}

.fare-row span {
  color: #6B7280;
}

.fare-row strong {
  color: #1A1A2E;
  font-weight: 600;
}

.text-success {
  color: #22C55E !important;
}

.fare-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 12px 0;
}

.additionals-header span {
  font-weight: 700;
  color: #1A1A2E;
}

.deposit-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.deposit-row div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.deposit-row small {
  font-size: 11px;
  color: #22C55E;
}

.fare-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid #FFB800;
  margin-top: 12px;
}

.fare-total span {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
}

.fare-total strong {
  font-size: 24px;
  font-weight: 800;
  color: #FFB800;
}

.fare-notes {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

/* Payment Card */
.payment-breakdown {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.payment-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  margin: 12px 0;
}

.payment-total span {
  font-weight: 700;
  color: #1A1A2E;
}

.payment-total strong {
  font-weight: 700;
  color: #22C55E;
}

.booking-confirm-btn {
  width: 100%;
  padding: 16px;
  background: #FFB800;
  border: none;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.booking-confirm-btn:hover {
  background: #FFCF4B;
  transform: translateY(-2px);
}

.booking-note {
  text-align: center;
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-card-lg {
  max-width: 600px;
}

.modal-card-md {
  max-width: 550px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A2E;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6B7280;
}

.modal-sub {
  color: #6B7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Coupon Modal */
.coupon-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.coupon-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
}

.coupon-input:focus {
  outline: none;
  border-color: #FFB800;
}

.coupon-submit {
  padding: 12px 24px;
  background: #FFB800;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.coupon-error {
  color: #EF4444;
  font-size: 13px;
  margin-bottom: 20px;
}

.available-coupons h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.coupon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coupon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.coupon-item:hover {
  border-color: #FFB800;
  background: #FFF8E1;
}

.coupon-code {
  font-weight: 700;
  color: #FFB800;
}

.coupon-desc {
  font-size: 12px;
  color: #6B7280;
  display: block;
}

.coupon-use-btn {
  padding: 6px 16px;
  background: none;
  border: 1px solid #FFB800;
  border-radius: 20px;
  color: #FFB800;
  cursor: pointer;
  font-size: 12px;
}

/* Coins Modal */
.coins-balance {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #FFF8E1;
  border-radius: 12px;
  margin-bottom: 20px;
}

.coins-balance i {
  font-size: 28px;
  color: #FFB800;
}

.coins-slider-container {
  margin-bottom: 20px;
}

#coinsSlider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: #E5E7EB;
  border-radius: 4px;
  margin-bottom: 16px;
}

#coinsSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #FFB800;
  border-radius: 50%;
  cursor: pointer;
}

.coins-values {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6B7280;
}

.coins-selected {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #F5F7FA;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Document Modal */
.document-list {
  margin-bottom: 24px;
}

.document-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #E5E7EB;
}

.document-item i {
  font-size: 24px;
  color: #FFB800;
}

.document-item strong {
  display: block;
  margin-bottom: 4px;
}

.document-item p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

.acknowledge-checkbox {
  margin-bottom: 16px;
}

.acknowledge-checkbox label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
}

.acknowledge-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #FFB800;
  margin-top: 2px;
}

.terms-note {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 20px;
}

.btn-modal-primary {
  width: 100%;
  padding: 14px;
  background: #FFB800;
  border: none;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-modal-primary:hover:not(:disabled) {
  background: #FFCF4B;
  transform: translateY(-1px);
}

.btn-modal-primary:disabled {
  background: #E5E7EB;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-summary-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-progress {
    flex-direction: column;
    gap: 16px;
  }

  .progress-line {
    display: none;
  }

  .booking-car-card {
    flex-direction: column;
    text-align: center;
  }

  .booking-car-image {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }

  .detail-label {
    width: 100px;
  }

  .coins-info {
    flex-direction: column;
    text-align: center;
  }

  .booking-coins-card {
    flex-direction: column;
    gap: 15px;
  }

  .modal-card {
    margin: 20px;
  }
}


/* ══════════════ PAYMENT PAGE CSS - PROFESSIONAL ══════════════ */

.payment-page {
  min-height: 100vh;
  padding: 60px 20px;
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EDF2 100%);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
}

.payment-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Progress Steps */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 16px 28px;
  border-radius: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #64748B;
  transition: all 0.3s ease;
}

.progress-step.completed .step-circle {
  background: #FFB800;
  border-color: #FFB800;
  color: white;
}

.progress-step.active .step-circle {
  background: #FFB800;
  border-color: #FFB800;
  color: white;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.2);
}

.progress-step span {
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  margin: 0 8px;
  border-radius: 2px;
}

.progress-line.completed {
  background: #FFB800;
}

/* Payment Container */
.payment-container {
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Payment Header */
.payment-header {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 184, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon i {
  font-size: 28px;
  color: #FFB800;
}

.payment-header-left h2 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 0 4px;
}

.payment-header-left p {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
}

.payment-amount {
  text-align: right;
}

.payment-amount .currency {
  font-size: 16px;
  font-weight: 600;
  color: #FFB800;
  vertical-align: top;
}

.payment-amount .amount {
  font-size: 32px;
  font-weight: 800;
  color: #FFB800;
}

/* Payment Summary Card */
.payment-summary-card {
  padding: 28px 32px;
  border-bottom: 1px solid #E2E8F0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.summary-row span {
  color: #64748B;
  font-size: 14px;
}

.summary-row strong {
  color: #1E293B;
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 12px 0;
}

.summary-row.total {
  padding-top: 16px;
}

.summary-row.total span {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
}

.summary-row.total strong {
  font-size: 24px;
  font-weight: 800;
  color: #FFB800;
}

.summary-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  background: #F0FDF4;
  border-radius: 12px;
  font-size: 12px;
  color: #22C55E;
}

/* Payment Timer Card */
.payment-timer-card {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  margin: 0 32px 24px;
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.timer-icon {
  width: 48px;
  height: 48px;
  background: #FFB800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer-icon i {
  font-size: 24px;
  color: white;
}

.timer-content {
  flex: 1;
}

.timer-digits {
  font-size: 28px;
  font-weight: 800;
  color: #FFB800;
  font-family: monospace;
  letter-spacing: 2px;
}

.timer-label {
  font-size: 12px;
  color: #64748B;
  display: block;
  margin-top: 4px;
}

/* Pay Now Button */
.pay-now-container {
  padding: 0 32px 32px;
}

.pay-now-main-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #FFB800, #FFCF4B);
  border: none;
  border-radius: 60px;
  color: #1E293B;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.pay-now-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.pay-now-main-btn:hover::before {
  left: 100%;
}

.pay-now-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4);
}

.secure-note {
  text-align: center;
  font-size: 12px;
  color: #64748B;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Payment Methods Info */
.payment-methods-info {
  padding: 24px 32px 32px;
  border-top: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.payment-methods-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 16px;
  text-align: center;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.payment-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.payment-icon-item i {
  font-size: 28px;
  color: #64748B;
}

.payment-icon-item span {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 500;
}

/* Loading State */
.pay-now-main-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
  .payment-page {
    padding: 20px 16px;
  }

  .booking-progress {
    padding: 12px 20px;
  }

  .progress-step span {
    display: none;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .payment-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .payment-header-left {
    flex-direction: column;
    text-align: center;
  }

  .payment-summary-card {
    padding: 20px;
  }

  .payment-timer-card {
    margin: 0 20px 20px;
    flex-direction: column;
    text-align: center;
  }

  .pay-now-container {
    padding: 0 20px 20px;
  }

  .payment-methods-info {
    padding: 20px;
  }

  .payment-icons {
    gap: 16px;
  }
}

/* ══════════════ BOOKING SUCCESS PAGE CSS ══════════════ */

.success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EDF2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-family: 'DM Sans', sans-serif;
  margin: 35px auto;
}

.success-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Success Card */
.success-card {
  background: white;
  border-radius: 32px;
  padding: 10px 40px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Animated Checkmark */
.success-animation {
  margin: 0 auto 24px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #22C55E;
}

.icon-line {
  height: 5px;
  background-color: #22C55E;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(34, 197, 94, 0.2);
}

.icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }

  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }

  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }

  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

/* Titles */
.success-title {
  font-size: 32px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.success-subtitle {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 32px;
}

/* Two Column Layout */
.two-column-layout {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.left-column {
  flex: 1.2;
}

.right-column {
  flex: 0.8;
}

/* Comment Code Ui Issue  */

/* Booking Details Card */
/* .booking-details-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #E2E8F0;
  height: 100%;
} */

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.highlight {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  margin: 0 -20px -20px;
  padding: 16px 20px;
  border-radius: 0 0 20px 20px;
  border-bottom: none;
}

.detail-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
}

.detail-row.highlight .detail-value {
  color: #FFB800;
  font-size: 18px;
}

/* Document Card */
.document-card {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #93C5FD;
  margin-bottom: 20px;
}

.document-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #3B82F6;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  width: 100%;
}

.document-upload-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
}

/* What's Next Vertical */
.next-steps {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #E2E8F0;
}

.next-steps h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFB800;
}

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-vertical-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-number-circle {
  width: 28px;
  height: 28px;
  background: #FFB800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #1E293B;
  flex-shrink: 0;
}

.step-vertical-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 4px;
}

.step-vertical-content p {
  font-size: 11px;
  color: #64748B;
  margin: 0;
  line-height: 1.4;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #FFB800, #FFCF4B);
  border-radius: 50px;
  color: #1E293B;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.35);
}

.btn-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: 1.5px solid #E2E8F0;
  border-radius: 50px;
  color: #1E293B;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #FFB800;
  background: #FFF8E1;
}

/* Invoice Option */
.invoice-option {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
}

.invoice-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.invoice-link:hover {
  color: #FFB800;
}

/* Responsive */
@media (max-width: 768px) {
  .success-card {
    padding: 32px 24px;
  }

  .success-title {
    font-size: 26px;
  }

  .two-column-layout {
    flex-direction: column;
  }

  .action-buttons {
    flex-direction: column;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .detail-row.highlight {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ===============================
   ABOUT PAGE CSS
================================ */

.about-page {
  background: var(--surface);
  color: var(--ink);
  overflow: hidden;
}

/* Hero */
.about-page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?q=80&w=1600&auto=format');
  background-size: cover;
  background-position: center;
  padding-top: 90px;
}

.about-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 46, .92), rgba(26, 26, 46, .62), rgba(26, 26, 46, .35));
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-page-tag,
.about-page-small-title {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
}

.about-page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-page-hero-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

/* Intro */
.about-page-intro {
  padding: 90px 0;
}

.about-page-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page-intro h2,
.about-page-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-page-intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-page-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-page-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-page-experience-box {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-left: 5px solid var(--gold);
  padding: 18px 26px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.about-page-experience-box strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.about-page-experience-box span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* Mission */
.about-page-mission {
  padding: 80px 0;
  background: var(--mist);
}

.about-page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-page-info-card {
  background: #fff;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
}

.about-page-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 184, 0, .35);
}

.about-page-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.about-page-info-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
}

.about-page-info-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Why */
.about-page-why {
  padding: 90px 0;
}

.about-page-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.about-page-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-page-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(30, 41, 59, .08);
  transition: .3s ease;
}

.about-page-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 184, 0, .35);
}

.about-page-feature i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.about-page-feature h4 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.about-page-feature p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Stats */
.about-page-stats {
  background: var(--gold);
  padding: 56px 0;
}

.about-page-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.about-page-stats-grid div {
  position: relative;
  padding: 0 20px;
}

.about-page-stats-grid div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, .45);
}

.about-page-stats-grid strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: #fff;
  line-height: 1;
}

.about-page-stats-grid span {
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  font-size: 14px;
}

/* CTA */
.about-page-cta {
  padding: 90px 0;
}

.about-page-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid), var(--navy-lt));
  border-radius: var(--radius-xl);
  padding: 64px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page-cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  margin-bottom: 14px;
}

.about-page-cta-box p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 30px;
}

.about-page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(255, 184, 0, .35);
  transition: .25s ease;
}

.about-page-cta-btn:hover {
  background: var(--gold-lt);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {

  .about-page-intro-grid,
  .about-page-card-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .about-page-hero {
    min-height: 420px;
  }

  .about-page-intro,
  .about-page-mission,
  .about-page-why,
  .about-page-cta {
    padding: 60px 0;
  }

  .about-page-image-card img {
    height: 340px;
  }

  .about-page-feature-grid,
  .about-page-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-page-stats-grid div {
    padding: 20px 0;
  }

  .about-page-stats-grid div:not(:last-child)::after {
    display: none;
  }

  .about-page-cta-box {
    padding: 44px 20px;
  }
}


/* ===============================
   CONTACT PAGE CSS
================================ */

.contact-page {
  background: var(--surface);
  color: var(--ink);
  overflow: hidden;
}

/* Hero */
.contact-page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1485463611174-f302f6a5c1c9?q=80&w=1600&auto=format');
  background-size: cover;
  background-position: center;
  padding-top: 90px;
}

.contact-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 46, .92), rgba(26, 26, 46, .62), rgba(26, 26, 46, .35));
}

.contact-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.contact-page-tag,
.contact-page-small-title {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
}

.contact-page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-page-hero-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

/* Contact Cards */
.contact-page-info-section {
  padding: 80px 0 40px;
  background: var(--surface);
}

.contact-page-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-page-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
}

.contact-page-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 184, 0, .35);
}

.contact-page-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.contact-page-info-card h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}

.contact-page-info-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-page-info-card a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

/* Form Section */
.contact-page-form-section {
  padding: 70px 0 90px;
}

.contact-page-form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.contact-page-left h2,
.contact-page-address-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-page-left p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.contact-page-feature-list {
  display: grid;
  gap: 14px;
}

.contact-page-feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

.contact-page-feature-list i {
  color: var(--green);
  font-size: 18px;
}

/* Form Card */
.contact-page-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-page-input-group {
  margin-bottom: 20px;
}

.contact-page-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-page-input-wrap,
.contact-page-textarea-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mist);
  border: 1.5px solid var(--border);
  border-radius: 15px;
  padding: 12px 15px;
  transition: .2s ease;
}

.contact-page-input-wrap:focus-within,
.contact-page-textarea-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .12);
}

.contact-page-input-wrap i {
  color: var(--gold);
  font-size: 17px;
}

.contact-page-input-wrap input,
.contact-page-input-wrap select,
.contact-page-textarea-wrap textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  font-size: 15px;
}

.contact-page-input-wrap select {
  cursor: pointer;
}

.contact-page-textarea-wrap {
  align-items: flex-start;
}

.contact-page-textarea-wrap textarea {
  resize: none;
  line-height: 1.7;
}

.contact-page-submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 184, 0, .35);
  transition: .25s ease;
}

.contact-page-submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

/* Location */
.contact-page-location-section {
  padding: 90px 0;
  background: var(--mist);
}

.contact-page-location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-page-address-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-page-address-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-page-address-item:last-child {
  border-bottom: none;
}

.contact-page-address-item i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-page-address-item h4 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-page-address-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.contact-page-map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 430px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.contact-page-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

/* CTA */
.contact-page-cta {
  padding: 90px 0;
}

.contact-page-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid), var(--navy-lt));
  border-radius: var(--radius-xl);
  padding: 62px 28px;
  text-align: center;
}

.contact-page-cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.contact-page-cta-box p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 28px;
}

.contact-page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(255, 184, 0, .35);
  transition: .25s ease;
}

.contact-page-cta-btn:hover {
  background: var(--gold-lt);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {

  .contact-page-info-grid,
  .contact-page-form-grid,
  .contact-page-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page-hero {
    min-height: 400px;
  }

  .contact-page-info-section,
  .contact-page-form-section,
  .contact-page-location-section,
  .contact-page-cta {
    padding: 60px 0;
  }

  .contact-page-form-card,
  .contact-page-address-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-page-map-card,
  .contact-page-map-card iframe {
    min-height: 320px;
  }

  .contact-page-cta-box {
    padding: 44px 20px;
  }
}


/* ===============================
   SERVICE DETAIL PAGE
================================ */

.service-detail-page {
  background: var(--surface);
  color: var(--ink);
}

/* Hero */
.service-detail-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format');
  background-size: cover;
  background-position: center;
}

.service-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 46, .92), rgba(26, 26, 46, .62), rgba(26, 26, 46, .35));
}

.service-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.service-detail-hero-content span,
.service-detail-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
}

.service-detail-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
}

.service-detail-hero-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Search */
.service-detail-search-wrap {
  position: relative;
  margin-top: -58px;
  z-index: 5;
}

.service-detail-search-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 26px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 60px rgba(26, 26, 46, .18);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.service-detail-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.service-detail-field div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--mist);
  border: 1.5px solid var(--border);
  border-radius: 15px;
  padding: 12px 15px;
}

.service-detail-field div:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .12);
}

.service-detail-field i {
  color: var(--gold);
}

.service-detail-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

.service-detail-search-card button {
  height: 50px;
  border: none;
  border-radius: 15px;
  background: var(--gold);
  color: #fff;
  padding: 0 28px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 184, 0, .35);
}

/* Main */
.service-detail-main {
  padding: 20px 0;
  background: var(--mist);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 34px;
  align-items: flex-start;
}

.service-detail-content {
  min-width: 0;
}

/* Cards */
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}

.service-detail-main-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 28px;
}

.service-detail-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.service-detail-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Features */
.service-detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.service-detail-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: .3s;
}

.service-detail-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 184, 0, .35);
}

.service-detail-feature i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}

.service-detail-feature h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-detail-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* List */
.service-detail-list {
  display: grid;
  gap: 14px;
}

.service-detail-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--mist);
  padding: 14px 16px;
  border-radius: 15px;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-detail-list i {
  color: var(--green);
}

/* Pricing */
.service-detail-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-price-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  background: var(--mist);
}

.service-detail-price-card.active {
  background: var(--navy);
  border-color: var(--gold);
}

.service-detail-price-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-detail-price-card p {
  font-size: 14px;
  margin-bottom: 18px;
}

.service-detail-price-card strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
}

.service-detail-price-card.active h4,
.service-detail-price-card.active p {
  color: #fff;
}

/* Steps */
.service-detail-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-steps div {
  background: var(--mist);
  border-radius: 22px;
  padding: 24px;
}

.service-detail-steps b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--gold);
}

.service-detail-steps h4 {
  margin: 8px 0;
  font-size: 18px;
}

.service-detail-steps p {
  font-size: 14px;
  margin: 0;
}

/* CTA */
.service-detail-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid), var(--navy-lt));
  border-radius: var(--radius-xl);
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 28px;
}

.service-detail-cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.service-detail-cta-box p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 24px;
}

.service-detail-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 800;
}

/* Sidebar */
.service-detail-sidebar {
  position: sticky;
  top: 95px;
}

.service-detail-side-card,
.service-detail-help-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.service-detail-side-card h3,
.service-detail-help-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-detail-side-field {
  margin-bottom: 15px;
}

.service-detail-side-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.service-detail-side-field input,
.service-detail-side-field select {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  background: var(--mist);
}

.service-detail-side-field input:focus,
.service-detail-side-field select:focus {
  border-color: var(--gold);
}

.service-detail-side-card button {
  width: 100%;
  height: 48px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

.service-detail-side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-side-links li {
  margin-bottom: 10px;
}

.service-detail-side-links a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  padding: 12px;
  border-radius: 14px;
  transition: .2s;
}

.service-detail-side-links a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.service-detail-side-links i {
  color: var(--gold);
}

.service-detail-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-detail-location-tags a {
  background: var(--mist);
  color: var(--ink-soft);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}

.service-detail-help-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
}

.service-detail-help-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}

.service-detail-help-card p {
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-help-card a {
  display: inline-flex;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1100px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    position: static;
  }

  .service-detail-search-card {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-search-card button {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  .service-detail-main {
    padding: 60px 0;
  }

  .service-detail-search-card,
  .service-detail-feature-grid,
  .service-detail-pricing-grid,
  .service-detail-steps {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 24px;
    border-radius: 24px;
  }

  .service-detail-main-img {
    height: 260px;
    border-radius: 20px;
  }

  .service-detail-search-wrap {
    margin-top: -35px;
  }

  .service-detail-search-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* BLOG CATEGORY PAGE */
.blog-category-page,
.single-blog-page {
  background: var(--mist);
}

.blog-category-page-hero,
.single-blog-page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format') center/cover no-repeat;
  overflow: hidden;
}

.blog-category-page-overlay,
.single-blog-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 46, .88), rgba(26, 26, 46, .45));
}

.blog-category-page-hero-content,
.single-blog-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 70px;
}

.blog-category-page-tag,
.single-blog-page-tag {
  display: inline-block;
  background: rgba(255, 184, 0, .18);
  border: 1px solid rgba(255, 184, 0, .35);
  color: var(--gold-lt);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-category-page-hero-content h1,
.single-blog-page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
}

.blog-category-page-hero-content p,
.single-blog-page-hero-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.8;
}

.blog-category-page-listing,
.single-blog-page-details {
  padding: 70px 0;
}

.blog-category-page-grid,
.single-blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.blog-category-page-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-category-page-card,
.single-blog-page-content,
.blog-category-page-sidebar-box,
.single-blog-page-sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.blog-category-page-card {
  overflow: hidden;
  transition: .3s ease;
}

.blog-category-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.blog-category-page-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.blog-category-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.blog-category-page-card:hover img {
  transform: scale(1.08);
}

.blog-category-page-img span {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

.blog-category-page-body {
  padding: 24px;
}

.blog-category-page-meta,
.single-blog-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.blog-category-page-meta i,
.single-blog-page-meta i {
  color: var(--gold);
}

.blog-category-page-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
}

.blog-category-page-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-category-page-body a,
.blog-category-page-cta a,
.single-blog-page-cta a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-category-page-sidebar,
.single-blog-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.blog-category-page-sidebar-box,
.single-blog-page-sidebar-box {
  padding: 26px;
}

.blog-category-page-sidebar-box h4,
.single-blog-page-sidebar-box h4 {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 18px;
}

.blog-category-page-search {
  display: flex;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.blog-category-page-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
}

.blog-category-page-search button {
  border: none;
  background: var(--gold);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
}

.blog-category-page-cat-list,
.single-blog-page-cat-list {
  list-style: none;
}

.blog-category-page-cat-list li:not(:last-child),
.single-blog-page-cat-list li:not(:last-child) {
  margin-bottom: 12px;
}

.blog-category-page-cat-list a,
.single-blog-page-cat-list a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink-soft);
  background: var(--mist);
  padding: 12px 14px;
  border-radius: 12px;
  transition: .2s;
}

.blog-category-page-cat-list a:hover,
.single-blog-page-cat-list a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.blog-category-page-cta,
.single-blog-page-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.blog-category-page-cta h4,
.single-blog-page-cta h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-category-page-cta p,
.single-blog-page-cta p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* SINGLE BLOG PAGE */
.single-blog-page-content {
  padding: 34px;
}

.single-blog-page-main-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 34px;
}

.single-blog-page-text p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.single-blog-page-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ink);
  margin: 34px 0 12px;
}

.single-blog-page-text blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 24px 28px;
  border-radius: 18px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  margin: 30px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.single-blog-page-recent {
  display: flex;
  gap: 14px;
  align-items: center;
}

.single-blog-page-recent:not(:last-child) {
  margin-bottom: 16px;
}

.single-blog-page-recent img {
  width: 78px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
}

.single-blog-page-recent h5 {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.35;
}

.single-blog-page-recent span {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-category-page-sidebar,
.single-blog-page-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

@media(max-width:1024px) {

  .blog-category-page-sidebar,
  .single-blog-page-sidebar {
    position: relative;
    top: 0;
  }

}

@media(max-width: 1024px) {

  .blog-category-page-grid,
  .single-blog-page-grid {
    grid-template-columns: 1fr;
  }

  .blog-category-page-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {

  .blog-category-page-hero,
  .single-blog-page-hero {
    min-height: 360px;
  }

  .blog-category-page-posts {
    grid-template-columns: 1fr;
  }

  .blog-category-page-listing,
  .single-blog-page-details {
    padding: 45px 0;
  }

  .single-blog-page-content {
    padding: 20px;
    border-radius: 22px;
  }

  .single-blog-page-main-img img {
    height: 260px;
    border-radius: 18px;
  }
}


/* POLICY PAGE */
.policy-page {
  background: var(--mist);
}

/* HERO */
.policy-page-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format') center/cover no-repeat;
  overflow: hidden;
}

.policy-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(26, 26, 46, .88),
      rgba(26, 26, 46, .45));
}

.policy-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 70px;
}

.policy-page-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 184, 0, .18);
  border: 1px solid rgba(255, 184, 0, .35);
  color: var(--gold-lt);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.policy-page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}

.policy-page-hero-content p {
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.8;
}

/* CONTENT */
.policy-page-content-section {
  padding: 70px 0;
}

.policy-page-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

/* SIDEBAR */
.policy-page-sidebar {
  position: sticky;
  top: 100px;
}

.policy-page-sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.policy-page-sidebar-card h4 {
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 22px;
}

.policy-page-sidebar-card ul {
  list-style: none;
}

.policy-page-sidebar-card li:not(:last-child) {
  margin-bottom: 12px;
}

.policy-page-sidebar-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--mist);
  color: var(--ink-soft);
  padding: 14px 16px;
  border-radius: 14px;
  transition: .25s;
  font-weight: 500;
}

.policy-page-sidebar-card a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.policy-page-sidebar-card i {
  color: var(--gold);
}

/* MAIN */
.policy-page-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.policy-page-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.policy-page-card-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.policy-page-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 1px solid rgba(255, 184, 0, .2);
}

.policy-page-card-head span {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.policy-page-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--ink);
}

.policy-page-card p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

.policy-page-card h3 {
  color: var(--ink);
  font-size: 1.25rem;
  margin: 28px 0 14px;
}

.policy-page-card ul {
  padding-left: 18px;
}

.policy-page-card li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .policy-page-layout {
    grid-template-columns: 1fr;
  }

  .policy-page-sidebar {
    position: relative;
    top: 0;
  }

}

@media(max-width:768px) {

  .policy-page-hero {
    min-height: 360px;
  }

  .policy-page-content-section {
    padding: 45px 0;
  }

  .policy-page-card {
    padding: 22px;
  }

  .policy-page-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-page-card-head h2 {
    font-size: 1.8rem;
  }

}


/* FAQ PAGE */
.faq-page {
  background: var(--mist);
}

/* HERO */
.faq-page-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format') center/cover no-repeat;
  overflow: hidden;
}

.faq-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 26, 46, .88), rgba(26, 26, 46, .45));
}

.faq-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 70px;
}

.faq-page-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 184, 0, .18);
  border: 1px solid rgba(255, 184, 0, .35);
  color: var(--gold-lt);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}

.faq-page-hero-content p {
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.8;
}

/* CONTENT */
.faq-page-content-section {
  padding: 70px 0;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

/* SIDEBAR */
.faq-page-sidebar {
  position: sticky;
  top: 100px;
}

.faq-page-sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.faq-page-sidebar-card h4 {
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 22px;
}

.faq-page-sidebar-card ul {
  list-style: none;
}

.faq-page-sidebar-card li:not(:last-child) {
  margin-bottom: 12px;
}

.faq-page-sidebar-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--mist);
  color: var(--ink-soft);
  padding: 14px 16px;
  border-radius: 14px;
  transition: .25s;
  font-weight: 600;
}

.faq-page-sidebar-card a:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

.faq-page-sidebar-card i {
  color: var(--gold);
}

/* MAIN */
.faq-page-main {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.faq-page-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.faq-page-section-head {
  margin-bottom: 24px;
}

.faq-page-section-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.faq-page-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--ink);
  margin-top: 6px;
}

.faq-page-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: .3s;
}

.faq-page-item:not(:last-child) {
  margin-bottom: 16px;
}

.faq-page-item.active {
  border-color: rgba(255, 184, 0, .35);
  box-shadow: 0 14px 35px rgba(255, 184, 0, .10);
}

.faq-page-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-page-question span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.faq-page-question i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 14px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.faq-page-item.active .faq-page-question i {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: .35s ease;
}

.faq-page-answer p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.faq-page-item.active .faq-page-answer {
  max-height: 220px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-page-sidebar {
    position: relative;
    top: 0;
  }
}

@media(max-width:768px) {
  .faq-page-hero {
    min-height: 360px;
  }

  .faq-page-content-section {
    padding: 45px 0;
  }

  .faq-page-section {
    padding: 22px;
  }

  .faq-page-question {
    padding: 20px;
    gap: 14px;
  }

  .faq-page-section-head h2 {
    font-size: 1.8rem;
  }
}

/* USER DASHBOARD PAGE */
.user-dashboard-page {
  background: var(--mist);
  padding: 95px 0 70px;
}

.user-dashboard-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 26px;
  align-items: start;
}

/* SIDEBAR */
.user-dashboard-sidebar {
  background: #0D0F1A;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  position: sticky;
  top: 95px;
  max-height: calc(100vh - 115px);
  overflow-y: auto;
  box-shadow: var(--shadow-soft);
}

.user-dashboard-profile-mini {
  text-align: center;
  padding: 12px 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 18px;
}

.user-dashboard-profile-mini img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 12px;
}

.user-dashboard-profile-mini h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.user-dashboard-profile-mini p {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.user-dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-dashboard-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  padding: 13px 15px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  transition: .25s ease;
}

.user-dashboard-menu a i {
  color: var(--gold);
  font-size: 18px;
}

.user-dashboard-menu a:hover,
.user-dashboard-menu a.active {
  background: rgba(255, 184, 0, .14);
  color: #fff;
}

/* CONTENT */
.user-dashboard-content {
  min-width: 0;
}

.user-dashboard-welcome {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.user-dashboard-welcome span,
.user-dashboard-card-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.user-dashboard-welcome h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2.1rem;
  margin: 5px 0;
}

.user-dashboard-welcome p {
  color: var(--text-muted);
  font-size: 15px;
}

.user-dashboard-mobile-btn {
  display: none;
  border: none;
  background: var(--gold);
  color: #fff;
  width: 54px;
  height: 30px;
  border-radius: 14px;
  font-size: 22px;
}

/* STATS */
.user-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.user-dashboard-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: .25s ease;
}

.user-dashboard-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.user-dashboard-stat-card>i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.user-dashboard-stat-card span {
  color: var(--text-muted);
  font-size: 13px;
}

.user-dashboard-stat-card h3 {
  color: var(--ink);
  font-size: 27px;
  margin-top: 4px;
}

/* MAIN GRID */
.user-dashboard-main-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 24px;
}

.user-dashboard-left,
.user-dashboard-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user-dashboard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.user-dashboard-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.user-dashboard-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2rem;
  margin-top: 4px;
}

.user-dashboard-card-head a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}

/* PROFILE COMPLETE */
.user-dashboard-profile-complete {
  display: flex;
  align-items: center;
  gap: 24px;
}

.user-dashboard-circle {
  width: 145px;
  height: 145px;
  min-width: 145px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 72%, var(--gold-pale) 72% 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.user-dashboard-circle::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 50%;
}

.user-dashboard-circle strong,
.user-dashboard-circle small {
  position: relative;
  z-index: 1;
}

.user-dashboard-circle strong {
  font-size: 32px;
  color: var(--ink);
}

.user-dashboard-circle small {
  color: var(--text-muted);
  font-size: 12px;
}

.user-dashboard-profile-complete h4 {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 8px;
}

.user-dashboard-profile-complete p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.user-dashboard-progress {
  height: 9px;
  background: var(--mist);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 16px;
}

.user-dashboard-progress span {
  height: 100%;
  display: block;
  background: var(--gold);
  border-radius: inherit;
}

.user-dashboard-profile-complete ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.user-dashboard-profile-complete li {
  color: var(--text-muted);
  font-size: 14px;
}

.user-dashboard-profile-complete li.done {
  color: var(--green);
}

/* BOOKINGS */
.user-dashboard-bookings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user-dashboard-booking {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--mist);
  padding: 14px;
  border-radius: 18px;
}

.user-dashboard-booking img {
  width: 90px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}

.user-dashboard-booking h4 {
  color: var(--ink);
  margin-bottom: 4px;
}

.user-dashboard-booking p {
  color: var(--text-muted);
  font-size: 13px;
}

.user-dashboard-booking span {
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
}

.user-dashboard-booking span.active {
  background: var(--gold-pale);
  color: var(--gold);
}

.user-dashboard-booking span.completed {
  background: #DCFCE7;
  color: var(--green);
}

/* DOCUMENTS */
.user-dashboard-docs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-dashboard-docs>div {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 16px;
  background: var(--mist);
}

.user-dashboard-docs>div>i {
  color: var(--gold);
  font-size: 24px;
}

.user-dashboard-docs h4 {
  color: var(--ink);
  font-size: 15px;
}

.user-dashboard-docs p {
  color: var(--text-muted);
  font-size: 12px;
}

.user-dashboard-docs b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-dashboard-docs .verified b {
  background: #DCFCE7;
  color: var(--green);
}

.user-dashboard-docs .pending b {
  background: var(--gold-pale);
  color: var(--gold);
}

.user-dashboard-docs .rejected b {
  background: #FEE2E2;
  color: var(--red);
}

/* COINS */
.user-dashboard-coins-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  border-radius: var(--radius-lg);
  padding: 30px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.user-dashboard-coins-card>i {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 184, 0, .16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.user-dashboard-coins-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.user-dashboard-coins-card p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 18px;
}

.user-dashboard-coins-card a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .user-dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .user-dashboard-main-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:992px) {
  .user-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .user-dashboard-sidebar {
    position: fixed;
    left: -310px;
    top: 0;
    width: 285px;
    height: 100vh;
    max-height: 100vh;
    z-index: 9999;
    border-radius: 0;
    transition: .3s ease;
  }

  .user-dashboard-sidebar.active {
    left: 0;
  }

  .user-dashboard-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media(max-width:768px) {
  .user-dashboard-page {
    padding: 95px 0 45px;
  }

  .user-dashboard-welcome {
    padding: 20px;
    align-items: flex-start;
  }

  .user-dashboard-welcome h1 {
    font-size: 1.7rem;
  }

  .user-dashboard-stats {
    grid-template-columns: 1fr;
  }

  .user-dashboard-card {
    padding: 20px;
  }

  .user-dashboard-profile-complete {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-dashboard-profile-complete ul {
    grid-template-columns: 1fr;
  }

  .user-dashboard-booking {
    grid-template-columns: 72px 1fr;
  }

  .user-dashboard-booking img {
    width: 72px;
    height: 55px;
  }

  .user-dashboard-booking span {
    grid-column: 1 / -1;
    width: fit-content;
  }
}


/* USER PROFILE PAGE */
.user-profile-page {
  background: var(--mist);
  padding: 95px 0 70px;
}

.user-profile-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 26px;
  align-items: start;
}

/* CONTENT */
.user-profile-content {
  min-width: 0;
}

.user-profile-head {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.user-profile-head span,
.user-profile-card-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.user-profile-head h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2.1rem;
  margin: 5px 0;
}

.user-profile-head p {
  color: var(--text-muted);
  font-size: 15px;
}

/* SUMMARY */
.user-profile-summary-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.user-profile-avatar-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  min-width: 96px;
}

.user-profile-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.user-profile-avatar label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.user-profile-avatar-box h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}

.user-profile-avatar-box p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 10px;
}

.user-profile-avatar-box p strong {
  color: var(--gold);
}

.user-profile-progress {
  width: 240px;
  max-width: 100%;
  height: 9px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}

.user-profile-progress span {
  height: 100%;
  display: block;
  background: var(--gold);
  border-radius: inherit;
}

.user-profile-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-profile-status span {
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .82);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}

.user-profile-status span i {
  color: var(--gold);
  margin-right: 6px;
}

.user-profile-status span.pending {
  background: rgba(255, 184, 0, .14);
  color: var(--gold-lt);
}

/* CARD */
.user-profile-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user-profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.user-profile-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.user-profile-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid rgba(255, 184, 0, .25);
}

.user-profile-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2rem;
  margin-top: 4px;
}

/* FORM */
.user-profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.user-profile-field.full {
  grid-column: 1 / -1;
}

.user-profile-field label {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.user-profile-field input,
.user-profile-field select,
.user-profile-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--mist);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  font-size: 15px;
  transition: .2s;
}

.user-profile-field textarea {
  min-height: 110px;
  resize: vertical;
}

.user-profile-field input:focus,
.user-profile-field select:focus,
.user-profile-field textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .12);
}

/* BUTTONS */
.user-profile-actions {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.user-profile-btn-light,
.user-profile-btn-primary {
  border: none;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  transition: .25s;
}

.user-profile-btn-light {
  background: var(--mist);
  color: var(--ink);
}

.user-profile-btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 184, 0, .35);
}

.user-profile-btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .user-profile-summary-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-profile-status {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media(max-width:992px) {
  .user-profile-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .user-profile-page {
    padding: 95px 0 45px;
  }

  .user-profile-head {
    padding: 20px;
    align-items: flex-start;
  }

  .user-profile-head h1 {
    font-size: 1.75rem;
  }

  .user-profile-summary-card {
    padding: 22px;
  }

  .user-profile-avatar-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-profile-form-grid {
    grid-template-columns: 1fr;
  }

  .user-profile-card {
    padding: 22px;
  }

  .user-profile-card-head {
    align-items: flex-start;
  }

  .user-profile-card-head h2 {
    font-size: 1.75rem;
  }

  .user-profile-actions {
    flex-direction: column;
  }

  .user-profile-btn-light,
  .user-profile-btn-primary {
    width: 100%;
  }
}


/* USER DOCUMENT PAGE */
.user-document-page {
  background: var(--mist);
  padding: 95px 0 70px;
}

.user-document-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 26px;
  align-items: start;
}

.user-document-content {
  min-width: 0;
}

/* HEADER */
.user-document-head {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.user-document-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.user-document-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--ink);
  margin: 5px 0;
}

.user-document-head p {
  color: var(--text-muted);
  font-size: 15px;
}

/* STATUS */
.user-document-status-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.user-document-status {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.user-document-status.pending {
  background: rgba(255, 184, 0, .16);
  color: var(--gold-lt);
}

.user-document-status.approved {
  background: rgba(34, 197, 94, .16);
  color: #86efac;
}

.user-document-status.rejected {
  background: rgba(239, 68, 68, .16);
  color: #fecaca;
}

.user-document-status-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.user-document-status-card p {
  color: rgba(255, 255, 255, .72);
}

.user-document-progress {
  width: 118px;
  height: 118px;
  min-width: 118px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 60%, rgba(255, 255, 255, .16) 60% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.user-document-progress::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--navy);
  border-radius: 50%;
}

.user-document-progress strong,
.user-document-progress small {
  position: relative;
  z-index: 1;
}

.user-document-progress strong {
  font-size: 26px;
  color: #fff;
}

.user-document-progress small {
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

/* GRID */
.user-document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.user-document-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.user-document-card-head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.user-document-card-head>i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.user-document-card-head h3 {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 4px;
}

.user-document-card-head p {
  color: var(--text-muted);
  font-size: 13px;
}

/* FIELD */
.user-document-field {
  margin-bottom: 18px;
}

.user-document-field label {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.user-document-field input {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--mist);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  font-size: 15px;
}

.user-document-field input:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .12);
}

/* UPLOAD */
.user-document-upload-box {
  border: 1.8px dashed rgba(255, 184, 0, .55);
  background: var(--gold-pale);
  border-radius: 20px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
  transition: .25s ease;
}

.user-document-upload-box:hover {
  background: #fff7d6;
  transform: translateY(-3px);
}

.user-document-upload-box input {
  display: none;
}

.user-document-upload-box i {
  font-size: 34px;
  color: var(--gold);
}

.user-document-upload-box strong {
  color: var(--ink);
  font-size: 16px;
}

.user-document-upload-box span {
  color: var(--text-muted);
  font-size: 13px;
}

/* REJECT BOX */
.user-document-reject-box {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 14px;
}

.user-document-reject-box i {
  color: var(--gold);
  font-size: 24px;
}

.user-document-reject-box h4 {
  color: var(--ink);
  margin-bottom: 6px;
}

.user-document-reject-box p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ACTION */
.user-document-actions {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.user-document-btn-light,
.user-document-btn-primary {
  border: none;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
}

.user-document-btn-light {
  background: var(--mist);
  color: var(--ink);
}

.user-document-btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 184, 0, .35);
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .user-document-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:992px) {
  .user-document-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .user-document-page {
    padding: 95px 0 45px;
  }

  .user-document-head {
    padding: 20px;
    align-items: flex-start;
  }

  .user-document-head h1 {
    font-size: 1.75rem;
  }

  .user-document-status-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .user-document-card {
    padding: 22px;
  }

  .user-document-actions {
    flex-direction: column;
  }

  .user-document-btn-light,
  .user-document-btn-primary {
    width: 100%;
  }
}


/* MY BOOKING PAGE */
.user-booking-page {
  background: var(--mist);
  padding: 95px 0 70px;
}

.user-booking-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 26px;
  align-items: start;
}

.user-booking-content {
  min-width: 0;
}

/* HEADER */
.user-booking-head {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.user-booking-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.user-booking-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--ink);
  margin: 5px 0;
}

.user-booking-head p {
  color: var(--text-muted);
  font-size: 15px;
}

/* STATS */
.user-booking-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.user-booking-stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.user-booking-stats i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.user-booking-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.user-booking-stats h3 {
  color: var(--ink);
  font-size: 28px;
  margin-top: 4px;
}

/* FILTER */
.user-booking-filter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.user-booking-filter button {
  border: none;
  background: var(--mist);
  color: var(--ink-soft);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  cursor: pointer;
}

.user-booking-filter button.active,
.user-booking-filter button:hover {
  background: var(--gold);
  color: #fff;
}

/* LIST */
.user-booking-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.user-booking-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 20px;
  align-items: center;
}

.user-booking-car {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-booking-car img {
  width: 120px;
  height: 82px;
  object-fit: contain;
  background: var(--mist);
  border-radius: 16px;
}

.user-booking-car h3 {
  color: var(--ink);
  font-size: 20px;
  margin: 6px 0 4px;
}

.user-booking-car p {
  color: var(--text-muted);
  font-size: 13px;
}

.booking-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
}

.booking-status.active {
  background: var(--gold-pale);
  color: var(--gold);
}

.booking-status.completed {
  background: #DCFCE7;
  color: var(--green);
}

.booking-status.cancelled {
  background: #FEE2E2;
  color: var(--red);
}

.user-booking-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.user-booking-info div {
  background: var(--mist);
  border-radius: 14px;
  padding: 12px;
}

.user-booking-info span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.user-booking-info strong {
  color: var(--ink);
  font-size: 13px;
}

.user-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-booking-actions button,
.user-booking-actions a {
  border: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
}

.user-booking-actions button {
  background: var(--gold);
  color: #fff;
}

.user-booking-actions a {
  background: var(--mist);
  color: var(--ink);
}

/* MODAL */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 15, 26, .72);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal-overlay.active {
  display: flex;
}

.booking-modal-box {
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .30);
}

.booking-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.booking-modal-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.booking-modal-head h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2.2rem;
}

.booking-modal-head button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  cursor: pointer;
}

.booking-modal-car {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--mist);
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 24px;
}

.booking-modal-car img {
  width: 180px;
  height: 110px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}

.booking-modal-car h3 {
  color: var(--ink);
  font-size: 24px;
  margin: 8px 0 4px;
}

.booking-modal-car p {
  color: var(--text-muted);
}

.booking-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.booking-modal-grid div {
  background: var(--mist);
  border-radius: 14px;
  padding: 14px;
}

.booking-modal-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.booking-modal-grid strong {
  color: var(--ink);
  font-size: 14px;
}

.booking-modal-section {
  margin-top: 24px;
}

.booking-modal-section h4 {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 14px;
}

.booking-price-list {
  background: var(--mist);
  border-radius: 18px;
  padding: 18px;
}

.booking-price-list div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.booking-price-list div:last-child {
  border-bottom: none;
}

.booking-price-list span {
  color: var(--text-muted);
}

.booking-price-list strong {
  color: var(--ink);
}

.booking-price-list .total strong,
.booking-price-list .total span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
}

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

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

.booking-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.booking-modal-actions a,
.booking-modal-actions button {
  border: none;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  cursor: pointer;
}

.booking-modal-actions a {
  background: var(--gold);
  color: #fff;
}

.booking-modal-actions button {
  background: var(--mist);
  color: var(--ink);
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .user-booking-card {
    grid-template-columns: 1fr;
  }

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

  .user-booking-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media(max-width:992px) {
  .user-booking-layout {
    grid-template-columns: 1fr;
  }

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

@media(max-width:768px) {
  .user-booking-page {
    padding: 95px 0 45px;
  }

  .user-booking-head {
    padding: 20px;
    align-items: flex-start;
  }

  .user-booking-head h1 {
    font-size: 1.75rem;
  }

  .user-booking-stats,
  .user-booking-info,
  .booking-modal-grid {
    grid-template-columns: 1fr;
  }

  .user-booking-car,
  .booking-modal-car {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-booking-car img,
  .booking-modal-car img {
    width: 100%;
  }

  .booking-modal-box {
    padding: 22px;
    border-radius: 24px;
  }

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

  .booking-modal-actions a,
  .booking-modal-actions button {
    width: 100%;
    text-align: center;
  }
}


/* COINS & REWARDS PAGE */
.user-coin-page {
  background: var(--mist);
  padding: 95px 0 70px;
}

.user-coin-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 26px;
  align-items: start;
}

.user-coin-content {
  min-width: 0;
}

/* HEADER */
.user-coin-head {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.user-coin-head span,
.user-coin-card-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.user-coin-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--ink);
  margin: 5px 0;
}

.user-coin-head p {
  color: var(--text-muted);
  font-size: 15px;
}

/* HERO */
.user-coin-hero-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  border-radius: var(--radius-lg);
  padding: 34px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.user-coin-hero-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255, 184, 0, .12);
}

.user-coin-hero-card>div {
  position: relative;
  z-index: 1;
}

.user-coin-hero-card span {
  color: var(--gold-lt);
  font-size: 13px;
  font-weight: 800;
}

.user-coin-hero-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 10px 0;
}

.user-coin-hero-card h2 i {
  color: var(--gold);
}

.user-coin-hero-card p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  max-width: 540px;
}

.user-coin-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.user-coin-hero-actions a,
.user-coin-hero-actions button {
  border: none;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  cursor: pointer;
}

.user-coin-hero-actions a {
  background: var(--gold);
  color: #fff;
}

.user-coin-hero-actions button {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.user-coin-level-card {
  min-width: 260px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 22px;
}

.user-coin-level-card strong {
  color: #fff;
  font-size: 22px;
}

.user-coin-level-card p {
  font-size: 13px;
  margin: 8px 0 14px;
}

.user-coin-level-progress {
  height: 9px;
  background: rgba(255, 255, 255, .16);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.user-coin-level-progress span {
  display: block;
  height: 100%;
  background: var(--gold);
}

/* STATS */
.user-coin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.user-coin-stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.user-coin-stats i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.user-coin-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.user-coin-stats h3 {
  color: var(--ink);
  font-size: 28px;
  margin-top: 4px;
}

/* GRID */
.user-coin-main-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 24px;
}

.user-coin-left,
.user-coin-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.user-coin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.user-coin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.user-coin-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2rem;
  margin-top: 4px;
}

.user-coin-card-head a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

/* HISTORY */
.user-coin-history {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-coin-history-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--mist);
  border-radius: 18px;
  padding: 15px;
}

.user-coin-history-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-coin-history-item.credit .user-coin-history-icon {
  background: #DCFCE7;
  color: var(--green);
}

.user-coin-history-item.debit .user-coin-history-icon {
  background: #FEE2E2;
  color: var(--red);
}

.user-coin-history-item h4 {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}

.user-coin-history-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.user-coin-history-item strong {
  font-size: 18px;
}

.user-coin-history-item.credit strong {
  color: var(--green);
}

.user-coin-history-item.debit strong {
  color: var(--red);
}

/* REWARDS */
.user-coin-reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.user-coin-reward-item {
  background: var(--mist);
  border-radius: 20px;
  padding: 20px;
}

.user-coin-reward-item i {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.user-coin-reward-item h4 {
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 8px;
}

.user-coin-reward-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.user-coin-reward-item button {
  width: 100%;
  border: none;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 11px;
  font-weight: 800;
  cursor: pointer;
}

/* REFERRAL */
.user-coin-referral-box {
  text-align: center;
}

.user-coin-referral-box>i {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: var(--gold-pale);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 16px;
}

.user-coin-referral-box h3 {
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 8px;
}

.user-coin-referral-box p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.user-coin-code {
  display: flex;
  background: var(--mist);
  border-radius: 16px;
  padding: 8px;
  gap: 8px;
}

.user-coin-code span {
  flex: 1;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 1px;
  padding: 10px;
}

.user-coin-code button {
  border: none;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

/* RULES */
.user-coin-rules {
  list-style: none;
}

.user-coin-rules li {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.user-coin-rules li:not(:last-child) {
  margin-bottom: 13px;
}

.user-coin-rules i {
  color: var(--gold);
}

/* EXPIRY */
.user-coin-expiry-card {
  background: #fff7d6;
  border: 1px solid rgba(255, 184, 0, .25);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.user-coin-expiry-card i {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 14px;
}

.user-coin-expiry-card h3 {
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 8px;
}

.user-coin-expiry-card p {
  color: var(--text-muted);
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .user-coin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .user-coin-main-grid {
    grid-template-columns: 1fr;
  }

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

@media(max-width:992px) {
  .user-coin-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .user-coin-page {
    padding: 95px 0 45px;
  }

  .user-coin-head,
  .user-coin-hero-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .user-coin-head h1 {
    font-size: 1.75rem;
  }

  .user-coin-stats,
  .user-coin-reward-grid {
    grid-template-columns: 1fr;
  }

  .user-coin-level-card {
    min-width: 100%;
  }

  .user-coin-history-item {
    grid-template-columns: 44px 1fr;
  }

  .user-coin-history-item strong {
    grid-column: 2;
  }

  .user-coin-code {
    flex-direction: column;
  }

  .user-coin-code button {
    padding: 12px;
  }
}


/* USER PAYMENT PAGE */
.user-payment-page {
  background: var(--mist);
  padding: 95px 0 70px;
}

.user-payment-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 26px;
  align-items: start;
}

.user-payment-content {
  min-width: 0;
}

/* HEADER */
.user-payment-head {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.user-payment-head span,
.user-payment-card-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.user-payment-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--ink);
  margin: 5px 0;
}

.user-payment-head p {
  color: var(--text-muted);
  font-size: 15px;
}

/* STATS */
.user-payment-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.user-payment-stats div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.user-payment-stats i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.user-payment-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.user-payment-stats h3 {
  color: var(--ink);
  font-size: 26px;
  margin-top: 4px;
}

/* GRID */
.user-payment-main-grid {
  display: grid;
  gap: 24px;
}

.user-payment-left,
.user-payment-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.user-payment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.user-payment-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.user-payment-card-head h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 2rem;
  margin-top: 4px;
}

.user-payment-card-head a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

/* FILTER */
.user-payment-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.user-payment-filter button {
  border: none;
  background: var(--mist);
  color: var(--ink-soft);
  padding: 10px 17px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  cursor: pointer;
}

.user-payment-filter button.active,
.user-payment-filter button:hover {
  background: var(--gold);
  color: #fff;
}

/* PAYMENT LIST */
.user-payment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.user-payment-item {
  display: grid;
  grid-template-columns: 52px 1fr 110px 90px;
  gap: 14px;
  align-items: center;
  background: var(--mist);
  border-radius: 18px;
  padding: 15px;
}

.user-payment-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.user-payment-icon.success {
  background: #DCFCE7;
  color: var(--green);
}

.user-payment-icon.pending {
  background: var(--gold-pale);
  color: var(--gold);
}

.user-payment-icon.refunded {
  background: #E8EEF7;
  color: var(--navy);
}

.user-payment-info h4 {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}

.user-payment-info p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.user-payment-method span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.user-payment-method strong {
  color: var(--green);
  font-size: 13px;
}

.user-payment-method strong.pending {
  color: var(--gold);
}

.user-payment-method strong.refunded {
  color: var(--navy);
}

.user-payment-amount {
  text-align: right;
}

.user-payment-amount h4 {
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 5px;
}

.user-payment-amount a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

/* SUMMARY */
.user-payment-summary-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.user-payment-summary-card>i {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 184, 0, .16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}

.user-payment-summary-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.user-payment-summary-card p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 18px;
}

.user-payment-summary-card ul {
  list-style: none;
}

.user-payment-summary-card li {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 11px;
}

.user-payment-summary-card li i {
  color: var(--gold);
  margin-right: 7px;
}

/* REFUND */
.user-payment-refund {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.user-payment-refund div {
  background: var(--mist);
  border-radius: 16px;
  padding: 14px;
}

.user-payment-refund span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.user-payment-refund strong {
  color: var(--ink);
  font-size: 14px;
}

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

/* PAYMENT METHODS */
.user-payment-method-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--mist);
  border-radius: 16px;
  padding: 14px;
}

.user-payment-method-card:not(:last-child) {
  margin-bottom: 14px;
}

.user-payment-method-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.user-payment-method-card h4 {
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
}

.user-payment-method-card p {
  color: var(--text-muted);
  font-size: 13px;
}

.user-payment-method-card span {
  background: var(--gold-pale);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
}

/* RESPONSIVE */
@media(max-width:1200px) {
  .user-payment-stats {
    grid-template-columns: repeat(1fr);
  }

  .user-payment-main-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:992px) {
  .user-payment-layout {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .user-payment-page {
    padding: 95px 0 45px;
  }

  .user-payment-head {
    padding: 20px;
    align-items: flex-start;
  }

  .user-payment-head h1 {
    font-size: 1.75rem;
  }

  .user-payment-stats,
  .user-payment-refund {
    grid-template-columns: 1fr;
  }

  .user-payment-item {
    grid-template-columns: 52px 1fr;
  }

  .user-payment-method,
  .user-payment-amount {
    grid-column: 2;
    text-align: left;
  }

  .user-payment-method-card {
    grid-template-columns: 48px 1fr;
  }

  .user-payment-method-card span {
    grid-column: 2;
    width: fit-content;
  }
}

/* ── Payment Option Labels ── */
.pay-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color .2s, background .2s;
  background: var(--mist);
  user-select: none;
}

.pay-option-label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.pay-option-radio {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pay-option-radio input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}

.pay-option-dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  transition: border-color .2s, background .2s;
  pointer-events: none;
}

.pay-option-label:has(input:checked) .pay-option-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff;
}

.pay-option-content {
  flex: 1;
}

.pay-option-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.pay-option-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
}

.pay-option-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, .3);
  padding: 2px 8px;
  border-radius: 100px;
}

.pay-option-badge--green {
  background: #DCFCE7;
  color: var(--green);
  border-color: rgba(34, 197, 94, .3);
}

.pay-option-desc {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

.pay-option-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Pay Summary Row ── */
.pay-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.pay-summary-row span {
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}

.pay-summary-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.otp-resend-wrap {
  text-align: center;
  margin-top: 16px;
  font-size: .85rem;
  color: #aaa;
}

.resend-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  margin-left: 4px;
}

.resend-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.toastify {
  animation: slideInRight 0.4s ease;
}

/* ═══════════════════════════════════════════════════
   SEARCH BAR WRAP & CARD
═══════════════════════════════════════════════════ */
.search-bar-wrap {
  display: flex;
  justify-content: center;
}

.search-card {
  max-width: 1480px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ── Search grid inner layout ─────────────────── */
.search-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.search-input-wrap:focus-within,
.search-input-wrap.active {
  border-color: #FFB800;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12);
}

.search-input-wrap i:first-child {
  font-size: 1.1rem;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a2e;
  outline: none;
}

.search-input-wrap input::placeholder {
  color: #b0a89a;
  font-weight: 400;
}

/* ── Search button ── */
.search-btn {
  width: 100%;
  background: #FFB800;
  border: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0D0F1A;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.search-btn:hover {
  background: #c5a025;
  transform: translateY(-2px);
}

/* ── Search notes ── */
.search-note {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 12px;
}

.search-note span {
  font-size: 0.7rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-note span i {
  color: #FFB800;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════
   DATE TRIGGER FIELD
═══════════════════════════════════════════════════ */
.kayra-date-trigger {
  cursor: pointer;
  user-select: none;
  min-height: 46px;
}

.kayra-date-trigger:focus-within,
.kayra-date-trigger.active {
  border-color: #FFB800 !important;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12) !important;
}

.kayra-field-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.kayra-date-display {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.kayra-date-display.placeholder {
  color: #b0a89a;
  font-weight: 400;
}

.kayra-time-display {
  font-size: 0.75rem;
  color: #FFB800;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}

.kayra-chevron {
  color: #6b7280;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.kayra-date-trigger.active .kayra-chevron {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════
   OVERLAY
═══════════════════════════════════════════════════ */
.kayra-cal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 20, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.kayra-cal-overlay.open {
  display: flex;
}

/* ═══════════════════════════════════════════════════
   PANEL
═══════════════════════════════════════════════════ */
.kayra-cal-panel {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(26, 26, 46, 0.22);
  border: 1px solid #e5e7eb;
  width: 740px;
  max-width: 98vw;
  overflow: hidden;
  animation: kayraCalIn 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

@keyframes kayraCalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.kayra-cal-header {
  background: #1E293B;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
}

.kayra-cal-header-left {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-width: 0;
}

.kayra-cal-header-left i {
  color: #FFB800;
  font-size: 18px;
  flex-shrink: 0;
}

/* selected display */
.kayra-cal-selected-display {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kayra-slot {
  text-align: center;
  min-width: 90px;
}

.kayra-slot-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.kayra-slot-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.kayra-slot-value.gold {
  color: #FFB800;
}

.kayra-slot-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  min-height: 14px;
}

.kayra-slot-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.kayra-cal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.kayra-cal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════
   CALENDAR BODY
═══════════════════════════════════════════════════ */
.kayra-cal-body {
  padding: 20px 24px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  overflow-y: auto;
}

.kayra-cal-month {
  user-select: none;
}

/* Month nav */
.kayra-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.kayra-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #f5f7fa;
  color: #1a1a2e;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s;
}

.kayra-nav-btn:hover {
  background: #FFB800;
  border-color: #FFB800;
  color: #fff;
}

.kayra-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.kayra-month-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a2e;
}

/* Weekdays */
.kayra-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.kayra-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  padding: 4px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Day grid */
.kayra-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.kayra-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  border: none;
  background: transparent;
  position: relative;
}

.kayra-day.empty {
  cursor: default;
  pointer-events: none;
}

.kayra-day.disabled {
  color: #d1d5db;
  cursor: default;
  pointer-events: none;
}

.kayra-day:hover:not(.empty):not(.disabled):not(.sel-start):not(.sel-end) {
  background: #FFF8E1;
  color: #1E293B;
}

/* Selected start */
.kayra-day.sel-start {
  background: #FFB800;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  z-index: 1;
}

/* Selected end */
.kayra-day.sel-end {
  background: #1E293B;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  z-index: 1;
}

/* In-range */
.kayra-day.in-range {
  background: #FFF8E1;
  border-radius: 0;
  color: #1E293B;
}

.kayra-day.in-range.re-left {
  border-radius: 50% 0 0 50%;
}

.kayra-day.in-range.re-right {
  border-radius: 0 50% 50% 0;
}

/* Today dot */
.kayra-day.is-today:not(.sel-start):not(.sel-end)::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFB800;
}

/* ═══════════════════════════════════════════════════
   TIME PICKER SCREEN
═══════════════════════════════════════════════════ */
.kayra-time-body {
  padding: 18px 24px 12px;
  overflow-y: auto;
  max-height: 380px;
}

.kayra-time-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.kayra-time-head i {
  color: #FFB800;
  font-size: 18px;
}

.kayra-time-date-pill {
  background: #FFF8E1;
  color: #FFB800;
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.kayra-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.kayra-time-slot {
  padding: 10px 6px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #f5f7fa;
  color: #1a1a2e;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
  text-align: center;
}

.kayra-time-slot:hover {
  border-color: #FFB800;
  background: #FFF8E1;
  color: #1E293B;
}

.kayra-time-slot.active {
  background: #FFB800;
  border-color: #FFB800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.kayra-cal-footer {
  padding: 12px 24px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.kayra-footer-hint {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kayra-cancel-btn {
  border: 1.5px solid #e5e7eb;
  background: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: 0.2s;
}

.kayra-cancel-btn:hover {
  border-color: #FFB800;
  color: #FFB800;
}

.kayra-confirm-btn {
  border: none;
  background: #FFB800;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.2s;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.32);
}

.kayra-confirm-btn:hover {
  background: #FFCF4B;
}

.kayra-confirm-btn:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.kayra-back-btn {
  border: 1.5px solid #e5e7eb;
  background: none;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.2s;
}

.kayra-back-btn:hover {
  border-color: #FFB800;
  color: #FFB800;
}

/* ═══════════════════════════════════════════════════
   LOCATION BANNER
═══════════════════════════════════════════════════ */
#locationPromptBanner {
  background: #1a1a2e;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-grid>div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .search-grid>div:nth-child(4) .search-btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .search-grid>div:nth-child(4) {
    grid-column: 1;
  }

  .kayra-time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .kayra-cal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kayra-cal-panel {
    width: 98vw;
  }

  .kayra-cal-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .kayra-cal-selected-display {
    width: 100%;
    justify-content: space-around;
  }

  .kayra-time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Search Header Bar - Sticky at its own position */
.search-header-bar {
  background: white;
  border-radius: 10px;
  margin: 70px auto 0;
  max-width: 1480px;
  padding: 3px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: sticky;
  top: 72px;
  z-index: 99;
  transition: box-shadow 0.2s ease;
}

.search-info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item i {
  font-size: 24px;
  color: #ffb800;
}

.info-text span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.info-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.info-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

.modify-btn {
  background: linear-gradient(135deg, #ffb800, #ffcf4b);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.modify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.35);
}

/* KM Plan Card */
.km-plan-card {
  padding: 10px 15px;
  border-radius: 60px;
}

.km-plan-card span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
  text-align: center;
}

.km-options {
  display: flex;
  gap: 8px;
}

.km-option {
  background: transparent;
  border: none;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #1a1a2e;
}

.km-option:hover {
  background: rgba(255, 184, 0, 0.1);
}

.km-option.active {
  background: #ffb800;
  color: white;
}

/* Modify Modal Styles */
.modify-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modify-modal.show {
  display: flex;
}

.modify-modal-content {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

.modify-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.modify-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}

.modify-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s;
}

.modify-modal-close:hover {
  color: #ffb800;
}

.modify-modal-body {
  padding: 24px;
}

.modify-field {
  margin-bottom: 20px;
}

.modify-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modify-field label i {
  color: #ffb800;
}

.modify-field input,
.modify-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
}

.modify-field input:focus,
.modify-field select:focus {
  outline: none;
  border-color: #ffb800;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.modify-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modify-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid #e5e7eb;
}

.modify-cancel-btn,
.modify-apply-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.modify-cancel-btn {
  background: transparent;
  border: 1.5px solid #e5e7eb;
  color: #6b7280;
}

.modify-cancel-btn:hover {
  border-color: #ffb800;
  color: #ffb800;
}

.modify-apply-btn {
  background: linear-gradient(135deg, #ffb800, #ffcf4b);
  border: none;
  color: white;
}

.modify-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

@media (max-width: 1024px) {
  .search-header-bar {
    border-radius: 20px;
    margin: 20px 16px 0;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .search-info-box {
    flex-direction: column;
    align-items: stretch;
  }

  .info-divider {
    display: none;
  }

  .km-plan-card {
    text-align: center;
  }

  .km-options {
    justify-content: center;
  }

  .modify-modal-content {
    width: 95%;
    margin: 20px;
  }

  .modify-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}



/* ── Car make tag ── */
.car-make-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.car-year-tag {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.car-avail-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── KM Plan Label ── */
.km-plan-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.km-plan-label i {
  color: var(--gold);
}

/* ── KM option buttons ── */
.km-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.km-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all .18s ease;
  white-space: nowrap;
  line-height: 1.3;
}

.km-option:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 184, 0, .06);
}

.km-option.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 184, 0, .3);
}

.km-option .km-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: .8;
  margin-top: 1px;
}

.km-option.active .km-sub {
  opacity: .9;
}

/* ── Total price note ── */
.total-price-note {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  background: var(--mist, #f5f5f7);
  border-radius: 8px;
  padding: 4px 10px;
  width: fit-content;
}

.total-price-note .total-amount {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

/* ── Surge badge ── */
.car-badge.red {
  background: #ef4444;
}

.car-badge.surge-badge {
  top: auto;
  bottom: 10px;
  left: 10px;
  background: #ef4444;
  font-size: 10px;
}

/* ── Surge alert bar ── */
.surge-alert {
  font-size: 12px;
  font-weight: 600;
  color: #ef4444;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

/* ── Original price strikethrough ── */
.original-price {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Extra KM note ── */
.extra-km-note {
  font-size: 11px;
  color: #f59e0b;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── No results ── */
.no-results-box {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.no-results-box h3 {
  font-size: 22px;
  margin: 16px 0 8px;
  color: var(--ink);
}

.no-results-box p {
  color: var(--text-muted);
}

/* ── Modify modal ── */
.modify-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(10, 10, 20, .5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modify-modal.open {
  display: flex;
}

.modify-modal-content {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 24px 60px rgba(26, 26, 46, .2);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  animation: kayraCalIn .18s ease;
}

.modify-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modify-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modify-modal-close {
  background: var(--mist);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.modify-modal-close:hover {
  background: #fee2e2;
  color: var(--red);
}

.modify-modal-body {
  padding: 20px 24px;
}

.modify-field {
  margin-bottom: 16px;
  position: relative;
}

.modify-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.modify-field label i {
  color: var(--gold);
}

.modify-field input,
.modify-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--mist);
  outline: none;
  transition: .2s;
}

.modify-field input:focus,
.modify-field select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, .1);
}

.modify-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modify-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  display: none;
}

.modify-modal-footer {
  padding: 16px 24px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.modify-cancel-btn {
  border: 1.5px solid var(--border);
  background: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.modify-apply-btn {
  border: none;
  background: var(--gold);
  padding: 10px 26px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(255, 184, 0, .32);
  transition: .2s;
}

.modify-apply-btn:hover {
  background: var(--gold-lt);
}

@media (max-width:560px) {
  .modify-row {
    grid-template-columns: 1fr;
  }
}

.car-details-reserve-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
}

.car-details-reserve-btn,
.reserve-btn-secondary {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: .3s;
}

/* Reserve Button */
.car-details-reserve-btn {
  background: #c89b3c;
  color: #fff;
}

/* Login Button */
.reserve-btn-secondary {
  background: #111827;
  color: #fff;
}

.car-details-reserve-btn:hover,
.reserve-btn-secondary:hover {
  transform: translateY(-2px);
}

.kayra-day.is-disabled {
  color: #ccc !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  text-decoration: line-through;
  opacity: 0.5;
}

/* ── Past dates disable ── */
.kayra-day.is-disabled {
  color: #bbb;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.45;
}

/* ── Today highlight ── */
.kayra-day.is-today {
  font-weight: 600;
  border: 1.5px solid #f59e0b;
  border-radius: 50%;
}

.user-booking-filter .filter-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  /* pill shape */
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #1a1a2e;
  /* dark text — apne theme ka color use karo */
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-booking-filter .filter-btn:hover {
  border-color: #f5a623;
  /* apne theme ka accent color */
  color: #f5a623;
}

.user-booking-filter .filter-btn.active {
  background: #f5a623;
  /* yellow/orange — image jaisa */
  border-color: #f5a623;
  color: #fff;
}

/* ================================================================
   BOOKING MODAL — TAB SYSTEM
   Paste this into your main CSS file or include as a separate sheet.
================================================================= */

/* ── Tab Nav ── */
.bm-tabs {
  display: flex;
  gap: 4px;
  padding: 0 20px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bm-tabs::-webkit-scrollbar {
  display: none;
}

.bm-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.bm-tab:hover {
  color: #333;
}

.bm-tab.active {
  color: var(--primary, #f5a623);
  border-bottom-color: var(--primary, #f5a623);
}

/* Badge on tab (payment count, doc count) */
.bm-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--primary, #f5a623);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Tab Panes ── */
.bm-tab-pane {
  display: none;
  animation: bmFadeIn 0.2s ease;
}

.bm-tab-pane.active {
  display: block;
}

@keyframes bmFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

/* ================================================================
   INVOICES TAB
================================================================= */

.bm-invoice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bm-invoice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}

.bm-invoice-row:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.bm-invoice-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.bm-invoice-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light, #fff4e0);
  color: var(--primary, #f5a623);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bm-invoice-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bm-invoice-meta strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bm-invoice-amount {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
}

.bm-invoice-meta small {
  font-size: 0.75rem;
  color: #aaa;
}

.bm-invoice-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Payment status badge */
.bm-pay-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bm-pay-badge.paid {
  background: #e8f9f0;
  color: #1a9e5c;
}

.bm-pay-badge.pending {
  background: #fff8e1;
  color: #d4880a;
}

.bm-pay-badge.failed,
.bm-pay-badge.cancelled {
  background: #fdecea;
  color: #c0392b;
}

/* Download button */
.bm-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 7px;
  background: var(--primary, #f5a623);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.bm-download-btn:hover {
  background: var(--primary-dark, #d48c10);
  transform: translateY(-1px);
  color: #fff;
}

.bm-no-invoice {
  font-size: 0.78rem;
  color: #bbb;
}

/* ================================================================
   CAR DOCUMENTS TAB
================================================================= */

.bm-cardoc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bm-cardoc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}

.bm-cardoc-row:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.bm-cardoc-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.bm-cardoc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef4ff;
  color: #3b7dd8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bm-cardoc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bm-cardoc-meta strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
}

.bm-cardoc-meta span {
  font-size: 0.8rem;
  color: #666;
}

.bm-cardoc-meta small {
  font-size: 0.75rem;
  color: #999;
}

/* Document status badge */
.bm-doc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.bm-doc-badge.doc-active {
  background: #e8f9f0;
  color: #1a9e5c;
}

.bm-doc-badge.doc-expired {
  background: #fdecea;
  color: #c0392b;
}

.bm-doc-badge.doc-pending {
  background: #fff8e1;
  color: #d4880a;
}

.bm-doc-badge.doc-rejected {
  background: #fdecea;
  color: #c0392b;
}

/* Expiry warning colors */
.bm-text-danger {
  color: #c0392b !important;
}

.bm-text-warning {
  color: #d4880a !important;
}

/* ================================================================
   EMPTY STATE (shared by invoices & car docs)
================================================================= */

.bm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 20px;
  text-align: center;
  color: #bbb;
}

.bm-empty-state i {
  font-size: 2.2rem;
}

.bm-empty-state p {
  font-size: 0.875rem;
  margin: 0;
}

/* ================================================================
   RESPONSIVE
================================================================= */

@media (max-width: 600px) {
  .bm-tabs {
    padding: 0 12px;
  }

  .bm-tab {
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .bm-invoice-row,
  .bm-cardoc-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .bm-invoice-right,
  .bm-cardoc-right {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ================================================================
   BOOKING EMPTY STATE
================================================================= */

.user-booking-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
  border: 2px dashed #e8e8e8;
  border-radius: 16px;
  margin-top: 10px;
}

.user-booking-empty i {
  font-size: 3rem;
  color: #d0d0d0;
}

.user-booking-empty p {
  font-size: 0.95rem;
  color: #999;
  margin: 0;
}

.user-booking-empty p strong {
  color: #555;
  font-weight: 700;
}

.btn-book-now {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary, #f5a623);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-book-now:hover {
  background: var(--primary-dark, #d48c10);
  transform: translateY(-2px);
  color: #fff;
}

.bm-cardoc-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bm-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 7px;
  background: #eef4ff;
  color: #3b7dd8;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.bm-view-btn:hover {
  background: #3b7dd8;
  color: #fff;
  transform: translateY(-1px);
}

.user-coin-balance-card .user-coin-balance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  text-align: center;
}

.user-coin-balance i {
  font-size: 2.2rem;
  color: var(--primary, #f5a623);
}

.user-coin-balance h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin: 0;
  line-height: 1;
}

.user-coin-balance span {
  font-size: 0.85rem;
  color: #999;
}

.user-coin-pagination {
  padding: 12px 0 4px;
}

.user-payment-deposits {
  display: flex;
  flex-direction: column;
}

.user-payment-deposit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 1rem;
}

.user-payment-deposit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.user-payment-deposit-item>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.user-payment-deposit-item>div strong {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.user-payment-deposit-item>div span {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

.dep-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dep-collected {
  background: #eaf3de;
  color: #27500a;
}

.dep-refunded {
  background: #e6f1fb;
  color: #0c447c;
}

.dep-pending {
  background: #faeeda;
  color: #633806;
}

.dep-deducted {
  background: #fcebeb;
  color: #791f1f;
}

.user-payment-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.user-payment-filter a {
  display: inline-block;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.user-payment-filter a:hover {
  background: #ebebeb;
  color: #333;
}

.user-payment-filter a.active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  font-weight: 500;
}

@media (max-width: 480px) {
  .user-payment-filter {
    gap: 5px;
  }

  .user-payment-filter a {
    font-size: 12px;
    padding: 4px 11px;
  }
}

.user-payment-empty {
  text-align: center;
  font-size: 14px;
  color: #999;
  padding: 2.5rem 1rem;
  background: #fafafa;
  border-radius: 10px;
  border: 1px dashed #e0e0e0;
  margin: 0.5rem 0;
}

.bm-remaining-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff8f0;
  border: 1px solid #f5c98a;
  border-left: 4px solid #e8830a;
  border-radius: 0;
  padding: 12px 1.25rem;
  margin-bottom: 1rem;
  gap: 1rem;
}

.bm-remaining-alert>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bm-remaining-alert>div>i {
  font-size: 18px;
  color: #e8830a;
}

.bm-remaining-alert>div>div span {
  font-size: 12px;
  color: #9a6200;
  display: block;
}

.bm-remaining-alert>div>div strong {
  font-size: 15px;
  font-weight: 600;
  color: #7a4d00;
}

.bm-remaining-alert>.pay-remaining-btn {
  padding: 6px 16px;
  font-size: 12px;
  flex-shrink: 0;
}

/* PAGINATION */
.user-payment-pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.user-payment-pagination nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-payment-pagination .pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-payment-pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.user-payment-pagination .page-item .page-link:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}

.user-payment-pagination .page-item.active .page-link {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.user-payment-pagination .page-item.disabled .page-link {
  background: #f9f9f9;
  border-color: #e5e5e5;
  color: #c0c0c0;
  cursor: not-allowed;
  pointer-events: none;
}

/* Prev / Next arrows */
.user-payment-pagination .page-item:first-child .page-link,
.user-payment-pagination .page-item:last-child .page-link {
  width: auto;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* Extensions Tab Styling */
.bm-extensions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bm-extend-row {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.bm-extend-row:hover {
  border-color: #FFB800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bm-extend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.bm-extend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.bm-extend-badge.extend-status-pending {
  background: #FEF3C7;
  color: #D97706;
}

.bm-extend-badge.extend-status-approved {
  background: #D1FAE5;
  color: #059669;
}

.bm-extend-badge.extend-status-rejected {
  background: #FEE2E2;
  color: #DC2626;
}

.bm-extend-badge.extend-status-cancelled {
  background: #F3F4F6;
  color: #6B7280;
}

.bm-extend-number {
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.bm-extend-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bm-extend-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bm-extend-detail-item.full-width {
  grid-column: 1 / -1;
}

.bm-extend-detail-item span {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bm-extend-detail-item strong {
  font-size: 14px;
  color: #1E293B;
  font-weight: 600;
}

.bm-extend-detail-item .extend-amount {
  color: #e8830a;
  font-size: 16px;
}

.bm-extend-detail-item .extend-notes {
  font-weight: 500;
  color: #4B5563;
  font-size: 13px;
}

.bm-extend-detail-item .extend-rejection-reason {
  color: #DC2626;
}

.single-blog-page-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: transparent;
  color: #1a1a2e;
}

.single-blog-page-cat-list a span:first-child {
  font-weight: 500;
}

.single-blog-page-cat-list .cat-count {
  background: #f0f0f0;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

/* Active state */
.single-blog-page-cat-list a.active {
  background: #FFB800;
  color: #fff;
}

.single-blog-page-cat-list a.active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Hover state */
.single-blog-page-cat-list a:hover {
  background: #FFF8E1;
  color: #FFB800;
}

.single-blog-page-cat-list a:hover .cat-count {
  background: #FFB800;
  color: #fff;
}

/* 4 Column Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.location-card {
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.location-card-inner {
  padding: 20px;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.location-card:hover h4 {
  color: var(--gold);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  color: var(--gold);
  font-size: 24px;
  transition: transform 0.3s;
}

.location-card:hover .location-icon i {
  transform: scale(1.1);
}

.location-card-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.location-card-header p {
  font-size: 13px;
  color: var(--gold);
  margin: 0;
  font-weight: 600;
}

.car-count-badge {
  background: var(--gold);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: auto;
}

.location-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.location-card-footer span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .location-card-header {
    flex-wrap: wrap;
  }

  .car-count-badge {
    margin-left: 0;
  }

  .location-card-footer {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* add new css serch page  */

/* ══════════════════════════════════════
   MOBILE & TABLET LISTING - COMPACT FIX
══════════════════════════════════════ */

@media (max-width: 1024px) {

  .search-header-bar {
    margin: 68px 12px 0;
    top: 72px;
    border-radius: 16px;
    padding: 12px 14px;
    gap: 10px;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  }

  /* Info Box — horizontal row on tablet */
  .search-info-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .info-item {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-right: 1px solid #e5e7eb;
  }

  .info-item:last-of-type {
    border-right: none;
  }

  .info-item i {
    font-size: 18px;
    color: #FFB800;
    flex-shrink: 0;
  }

  .info-text span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 1px;
    display: block;
  }

  .info-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    display: block;
  }

  .info-divider {
    display: none;
  }

  /* Modify Button */
  .modify-btn {
    padding: 10px;
    font-size: 13px;
    border-radius: 25px;
    text-align: center;
  }

  /* KM Options — horizontal scroll */
  .km-plan-card {
    padding: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
  }

  .km-options {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
  }

  .km-option {
    flex: 1;
    min-width: 0;
    padding: 6px 10px;
    border-radius: 25px;
    font-size: 12px;
    text-align: center;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    white-space: nowrap;
  }

  .km-option .km-sub {
    font-size: 10px;
    display: block;
    opacity: 0.75;
    margin-top: 1px;
  }

  .km-option.active {
    background: #FFB800;
    border-color: #FFB800;
    color: #fff;
  }

  /* Listing */
  .listing-wrapper {
    grid-template-columns: 1fr;
    margin: 14px auto;
    padding: 0 12px;
    gap: 14px;
  }

  .filters-panel {
    position: static;
  }

  /* Car Cards — tablet horizontal */
  .car-card-horizontal {
    flex-direction: row;
    border-radius: 16px;
  }

  .car-image-wrapper {
    width: 200px;
    min-width: 200px;
    padding: 14px;
  }

  .car-details {
    padding: 14px;
    gap: 8px;
  }

  .car-price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .book-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 9px 16px;
  }
}

/* ══════════════════════════════════════
   MOBILE ONLY — Max 768px
══════════════════════════════════════ */

@media (max-width: 768px) {

  .search-header-bar {
    margin: 64px 10px 0;
    top: 60px;
    border-radius: 14px;
    padding: 10px 12px;
    gap: 8px;
  }

  /* Info Box — 2 items per row grid */
  .search-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .info-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  /* Remove right border from 2nd column */
  .info-item:nth-child(2),
  .info-item:nth-child(4) {
    border-right: none;
  }

  /* Remove bottom border from last row */
  .info-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .info-item i {
    font-size: 16px;
    color: #FFB800;
    flex-shrink: 0;
  }

  .info-text span {
    font-size: 9px;
    color: #9ca3af;
  }

  .info-text strong {
    font-size: 11px;
  }

  /* Modify Button */
  .modify-btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border-radius: 25px;
  }

  /* KM Options — 3 per row grid */
  .km-plan-card {
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
  }

  .km-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .km-option {
    padding: 7px 4px;
    font-size: 11px;
    border-radius: 20px;
    text-align: center;
    border: 1.5px solid #e5e7eb;
    min-width: unset;
    flex: unset;
  }

  .km-option .km-sub {
    font-size: 9px;
    opacity: 0.8;
    display: block;
    margin-top: 1px;
  }

  /* Listing */
  .listing-wrapper {
    margin: 10px auto;
    padding: 0 10px;
    gap: 12px;
  }

  /* Filters hidden */
  .filters-panel {
    display: none;
  }

  /* Car Cards — vertical */
  .car-card-horizontal {
    flex-direction: column;
    border-radius: 14px;
  }

  .car-image-wrapper {
    width: 100%;
    min-width: unset;
    height: 170px;
    padding: 14px;
    border-radius: 14px 14px 0 0;
  }

  .car-image-wrapper img {
    height: 140px;
    object-fit: contain;
  }

  .car-details {
    padding: 12px 14px 14px;
    gap: 8px;
  }

  .car-make-tag {
    font-size: 10px;
  }

  .car-title-section h3 {
    font-size: 16px;
  }

  .car-year-tag {
    font-size: 10px;
  }

  .car-avail-badge {
    font-size: 11px;
  }

  .car-specs-list {
    gap: 8px;
    flex-wrap: wrap;
  }

  .car-specs-list span {
    font-size: 11px;
  }

  .car-highlights {
    gap: 6px;
    padding: 6px 0;
  }

  .car-highlights span {
    font-size: 10px;
  }

  /* Price row */
  .car-price-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
  }

  .price .amount {
    font-size: 22px;
  }

  .price .currency {
    font-size: 12px;
  }

  .book-btn {
    width: auto;
    padding: 9px 18px;
    font-size: 12px;
    border-radius: 22px;
  }

  /* Badges */
  .car-badge {
    font-size: 10px;
    padding: 3px 10px;
  }

  .surge-alert {
    font-size: 10px;
    padding: 4px 8px;
  }

  /* Breadcrumb */
  .breadcrumb-trail {
    font-size: 11px;
    margin-bottom: 10px;
  }

  /* Pagination */
  .pagination-section {
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .page-link {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
    border-radius: 9px;
  }
}

/* ══════════════════════════════════════
   EXTRA SMALL — Max 480px
══════════════════════════════════════ */

@media (max-width: 480px) {

  .search-header-bar {
    margin: 60px 8px 0;
    padding: 10px;
    border-radius: 12px;
  }

  .search-info-box {
    grid-template-columns: 1fr 1fr;
  }

  .info-item {
    padding: 8px;
    gap: 6px;
  }

  .info-item i {
    font-size: 14px;
  }

  .info-text strong {
    font-size: 11px;
  }

  .info-text span {
    font-size: 9px;
  }

  .km-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .km-option {
    font-size: 11px;
    padding: 6px 4px;
  }

  .listing-wrapper {
    padding: 0 8px;
    margin: 8px auto;
    gap: 10px;
  }

  .car-image-wrapper {
    height: 155px;
  }

  .car-image-wrapper img {
    height: 125px;
  }

  .car-title-section h3 {
    font-size: 15px;
  }

  .price .amount {
    font-size: 20px;
  }

  .book-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .km-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .km-option {
    padding: 6px 4px;
    font-size: 11px;
    border-radius: 20px;
    text-align: center;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    min-width: unset;
    flex: unset;
  }

  .km-option .km-sub {
    font-size: 9px;
    opacity: 0.75;
    display: block;
  }

  .km-option.active {
    background: #FFB800;
    border-color: #FFB800;
    color: #fff;
  }
}

@media (max-width: 480px) {
  .km-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .km-option {
    padding: 5px 3px;
    font-size: 10px;
    border-radius: 18px;
  }

  .km-option .km-sub {
    font-size: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  /* ── Search Header Bar ── */
  .search-header-bar {
    margin: 72px 16px 0;
    top: 72px;
    border-radius: 16px;
    padding: 12px 16px;
    gap: 10px;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  }

  /* Info Box — single clean row */
  .search-info-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .info-item {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    padding: 10px 14px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-right: 1px solid #e5e7eb;
  }

  .info-item:last-of-type {
    border-right: none;
  }

  .info-item i {
    font-size: 16px;
    color: #FFB800;
    margin-bottom: 2px;
  }

  .info-text span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9ca3af;
    display: block;
    margin-bottom: 2px;
  }

  .info-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    display: block;
    white-space: nowrap;
  }

  .info-divider {
    display: none;
  }

  /* Modify Button — same row as info */
  .modify-btn {
    flex-shrink: 0;
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 25px;
    white-space: nowrap;
    align-self: center;
  }

  /* KM Options — 2 rows of 3 */
  .km-plan-card {
    padding: 0;
    border-top: 1px solid #efefef;
    padding-top: 10px;
  }

  .km-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .km-option {
    padding: 8px 12px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: unset;
    flex: unset;
  }

  .km-option .km-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.75;
    display: block;
  }

  .km-option.active {
    background: #FFB800;
    border-color: #FFB800;
    color: #fff;
    box-shadow: 0 3px 10px rgba(255, 184, 0, 0.3);
  }

  .km-option.active .km-sub {
    opacity: 0.9;
  }

  /* Listing Wrapper */
  .listing-wrapper {
    grid-template-columns: 260px 1fr;
    margin: 16px auto;
    padding: 0 16px;
    gap: 20px;
  }

  /* Filters Panel */
  .filters-panel {
    display: block;
    position: sticky;
    top: 180px;
    border-radius: 16px;
  }

  /* Car Cards */
  .car-card-horizontal {
    flex-direction: row;
    border-radius: 16px;
  }

  .car-image-wrapper {
    width: 200px;
    min-width: 200px;
    padding: 14px;
  }

  .car-image-wrapper img {
    height: 140px;
    object-fit: contain;
  }

  .car-details {
    padding: 14px 16px;
    gap: 8px;
  }

  .car-title-section h3 {
    font-size: 17px;
  }

  .car-price-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .price .amount {
    font-size: 22px;
  }

  .book-btn {
    width: auto;
    padding: 9px 18px;
    font-size: 13px;
  }
}

.career-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.career-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.career-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.career-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
}

/* Filter Tabs */
.career-filters {
  background: #fff;
  border-radius: 60px;
  padding: 8px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: #6b7280;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.filter-tab:hover {
  color: #ffb800;
  background: #fff8e1;
}

.filter-tab.active {
  background: #ffb800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.filter-tab .count {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  opacity: 0.8;
}

/* Job Cards */
.job-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #ffb800;
}

.job-icon {
  width: 56px;
  height: 56px;
  background: #fff8e1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.job-icon i {
  font-size: 28px;
  color: #ffb800;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #6b7280;
}

.job-meta i {
  color: #ffb800;
  margin-right: 5px;
}

.job-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.vacancy-badge {
  background: #f3f4f6;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.apply-btn {
  background: #ffb800;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.apply-btn:hover {
  background: #ffcf4b;
  transform: translateY(-2px);
  color: #fff;
}

/* Search Box */
.career-search {
  position: relative;
  margin-bottom: 30px;
}

.career-search input {
  width: 100%;
  padding: 14px 20px;
  padding-right: 50px;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.2s;
}

.career-search input:focus {
  outline: none;
  border-color: #ffb800;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.career-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffb800;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

/* Application Modal */
.job-modal .modal-card {
  max-width: 550px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group label i {
  color: #ffb800;
  margin-right: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffb800;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.file-upload-area {
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.file-upload-area:hover {
  border-color: #ffb800;
  background: #fff8e1;
}

.file-upload-area i {
  font-size: 32px;
  color: #ffb800;
  margin-bottom: 8px;
}

.file-upload-area p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.file-name {
  margin-top: 10px;
  font-size: 12px;
  color: #22c55e;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #ffb800;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: #ffcf4b;
  transform: translateY(-2px);
}

/* Badges */
.badge-success {
  background: #dcfce7;
  color: #22c55e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-danger {
  background: #fee2e2;
  color: #ef4444;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-warning {
  background: #fef3c7;
  color: #d97706;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .career-hero {
    padding: 50px 0 40px;
  }

  .career-hero h1 {
    font-size: 2rem;
  }

  .career-filters {
    border-radius: 20px;
    padding: 12px;
    gap: 6px;
  }

  .filter-tab {
    padding: 6px 14px;
    font-size: 12px;
  }

  .job-card {
    padding: 18px;
  }

  .job-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  z-index: 9999;
  animation: slideIn 0.3s ease;
}

.toast-notification.success {
  background: #22c55e;
}

.toast-notification.error {
  background: #ef4444;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

.job-detail-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 0 40px;
}

.job-detail-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 16px;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.job-detail-meta i {
  color: #ffb800;
  margin-right: 6px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffb800;
  text-decoration: none;
  margin-bottom: 24px;
}

.detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.detail-card h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.detail-card h2 i {
  color: #ffb800;
  margin-right: 8px;
}

.requirement-list {
  list-style: none;
  padding: 0;
}

.requirement-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requirement-list li i {
  color: #22c55e;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 100px;
}

.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffb800;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #6b7280;
}

.info-value {
  font-weight: 700;
  color: #1a1a2e;
}

.apply-sidebar-btn {
  width: 100%;
  background: #ffb800;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 40px;
  font-weight: 700;
  margin-top: 20px;
  cursor: pointer;
}

.related-job-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.related-job-card:hover {
  background: #fff8e1;
}

@media (max-width: 768px) {
  .job-detail-hero h1 {
    font-size: 1.8rem;
  }

  .detail-card {
    padding: 20px;
  }

  .sidebar-card {
    position: static;
    margin-top: 20px;
  }
}