/* ==========================================================================
   FIRST DRIVE AMRITSAR - CLEAN LUXURY WHITE THEME STYLESHEET
   Self Drive Car Rental Amritsar | WhatsApp: +91 9888140404
   Instagram: @first.drive.amritsar0404
   ========================================================================== */

:root {
  /* Clean Luxury White & Warm Espresso Palette */
  --bg-pure: #ffffff;
  --bg-canvas: #fcfbfa;
  --bg-subtle: #f7f5f1;
  --bg-card: #ffffff;
  --bg-card-hover: #faf8f5;
  --bg-highlight: #f2ece4;

  /* Brand Espresso, Bronze & Gold */
  --brand-espresso: #261b14;
  --brand-dark-brown: #3a281e;
  --brand-leather: #5c3e2e;
  --brand-bronze: #8a5e38;
  --brand-gold: #c89b6d;
  --brand-gold-light: #e0be9b;
  --brand-gold-subtle: rgba(200, 155, 109, 0.14);

  /* Social & Functional */
  --whatsapp-green: #25d366;
  --whatsapp-hover: #20ba5a;
  --whatsapp-glow: rgba(37, 211, 102, 0.25);
  --insta-pink: #e1306c;
  --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

  /* Text colors */
  --text-title: #1a120c;
  --text-main: #2d241e;
  --text-secondary: #574b42;
  --text-muted: #82756c;
  --text-light: #a99e95;

  /* Borders & Shadows */
  --border-ultra-subtle: #f2eee8;
  --border-light: #e8e2d8;
  --border-medium: #dad0c2;
  --border-brand: #c89b6d;

  --shadow-subtle: 0 2px 8px rgba(38, 27, 20, 0.04);
  --shadow-card: 0 4px 18px rgba(38, 27, 20, 0.06);
  --shadow-hover: 0 12px 30px rgba(38, 27, 20, 0.12);
  --shadow-modal: 0 24px 60px rgba(38, 27, 20, 0.2);

  /* Typography */
  --font-heading: 'Outfit', 'Playfair Display', Georgia, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-canvas);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hide native scrollbars */
.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Global scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f8f6f2;
}
::-webkit-scrollbar-thumb {
  background: #d6ccbf;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-bronze);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-title);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--ease-smooth);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--brand-dark-brown);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(58, 40, 30, 0.2);
}
.btn-primary:hover {
  background: var(--brand-espresso);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 40, 30, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--whatsapp-glow);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
  background: var(--insta-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.25);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
  filter: brightness(1.06);
}

.btn-outline {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--brand-bronze);
  background: var(--bg-subtle);
  color: var(--brand-dark-brown);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

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

.brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(58, 40, 30, 0.08);
  flex-shrink: 0;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-main-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--brand-dark-brown);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-subtitle-line {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-bronze);
  font-weight: 700;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-dark-brown);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  transition: all var(--ease-smooth);
}
.phone-quick-link:hover {
  background: var(--brand-gold-subtle);
  border-color: var(--brand-gold);
}

@media (max-width: 768px) {
  .brand-main-title {
    font-size: 1.05rem;
  }
  .brand-subtitle-line {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
  .nav-actions .btn-instagram,
  .nav-actions .phone-quick-link {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION (WHITE & ELEGANT)
   ========================================================================== */
.hero-section {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-canvas) 100%);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}

.hero-logo-banner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-logo-img-wrap {
  width: 140px;
  height: 140px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 8px 25px rgba(58, 40, 30, 0.12);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--brand-dark-brown);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.75rem;
  color: var(--brand-espresso);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--brand-bronze);
}

.hero-highlights-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}
.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}
.hero-highlight-item i {
  color: var(--brand-bronze);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 768px) {
  .hero-logo-img-wrap {
    width: 110px;
    height: 110px;
  }
  .hero-title {
    font-size: 1.95rem;
    margin-bottom: 1.2rem;
  }
  .hero-highlights-strip {
    gap: 0.5rem;
  }
  .hero-highlight-item {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ==========================================================================
   PREMIUM & LUXURY SEARCH & CATEGORY TOOLBAR (MOBILE OPTIMIZED)
   ========================================================================== */
.catalogue-section {
  padding: 2.5rem 0 4rem;
}

.catalogue-header-bar {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

/* Top row: search & view switcher */
.filter-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-ultra-subtle);
}

@media (max-width: 640px) {
  .filter-search-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.search-container {
  position: relative;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-bronze);
  font-size: 1rem;
  pointer-events: none;
}
.search-input {
  width: 100%;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.8rem 1.2rem 0.8rem 2.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-title);
  transition: all var(--ease-smooth);
}
.search-input:focus {
  border-color: var(--brand-dark-brown);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(58, 40, 30, 0.08);
}
.search-clear-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  display: none;
  font-size: 1rem;
  padding: 0.2rem;
}
.search-clear-btn.active {
  display: block;
}

/* View Mode Toggler */
.view-mode-toggle {
  display: flex;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 4px;
}
.view-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--ease-smooth);
}
.view-btn.active {
  background: #ffffff;
  color: var(--brand-dark-brown);
  box-shadow: 0 2px 8px rgba(38, 27, 20, 0.08);
}

@media (max-width: 640px) {
  .view-mode-toggle {
    width: 100%;
    justify-content: center;
  }
  .view-btn {
    flex: 1;
    justify-content: center;
  }
}

/* Category Filter Pills */
.segment-tabs-wrapper {
  position: relative;
  margin-top: 0.5rem;
}

.segment-tabs-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.segment-tabs-container::-webkit-scrollbar {
  display: none;
}

.segment-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-canvas);
  border: 1.5px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--ease-smooth);
  flex-shrink: 0;
  cursor: pointer;
}
.segment-tab:hover {
  border-color: var(--brand-bronze);
  color: var(--brand-dark-brown);
  background: #ffffff;
}
.segment-tab.active {
  background: var(--brand-dark-brown);
  color: #ffffff;
  border-color: var(--brand-dark-brown);
  box-shadow: 0 3px 10px rgba(58, 40, 30, 0.25);
  transform: translateY(-1px);
}

/* Meta summary line */
.filter-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-ultra-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.filter-meta-bar strong {
  color: var(--brand-dark-brown);
}

@media (max-width: 640px) {
  .catalogue-header-bar {
    padding: 1rem;
  }
}

/* ==========================================================================
   CARDS GRID VIEW
   ========================================================================== */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
}

.car-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-bronze);
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  background: #f7f5f1;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}
.car-card:hover .card-img {
  transform: scale(1.04);
}

.card-top-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.tag-gearbox {
  background: var(--brand-dark-brown);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title-row {
  margin-bottom: 0.75rem;
}

.card-car-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.25rem;
}
.card-car-name a:hover {
  color: var(--brand-bronze);
}

.card-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border-ultra-subtle);
  font-weight: 600;
}
.spec-chip i {
  color: var(--brand-bronze);
}

.card-footer-box {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-ultra-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-price-block {
  display: flex;
  flex-direction: column;
}

.price-label-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.card-price-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-dark-brown);
  line-height: 1.1;
}

.card-price-num span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-action-btns {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   MOBILE-OPTIMIZED LUXURY PRICE TABLE VIEW
   ========================================================================== */
.catalogue-table-view {
  display: none;
}
.catalogue-table-view.active {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.price-table-group {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.table-group-header {
  background: var(--brand-dark-brown);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.group-header-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.group-header-count {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.price-table-list {
  display: flex;
  flex-direction: column;
}

.price-row-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border-ultra-subtle);
  transition: background var(--ease-smooth);
  gap: 1rem;
}
.price-row-card:last-child {
  border-bottom: none;
}
.price-row-card:hover {
  background: var(--bg-subtle);
}

.price-row-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.price-row-thumb-wrap {
  width: 72px;
  height: 52px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: #eae5df;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}
.price-row-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-row-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.price-row-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-espresso);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.price-row-name a:hover {
  color: var(--brand-bronze);
}

.price-row-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
  flex-wrap: wrap;
}

.meta-tag-spec {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-bronze);
  background: var(--brand-gold-subtle);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-xs);
}

.meta-tag-trans {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--brand-dark-brown);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-xs);
}

.meta-tag-seats {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-row-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.price-row-rate {
  text-align: right;
}
.rate-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark-brown);
  display: block;
  line-height: 1.1;
}
.rate-period {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-row-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 640px) {
  .price-row-card {
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }
  .price-row-right {
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--border-light);
    padding-top: 0.6rem;
  }
  .price-row-thumb-wrap {
    width: 60px;
    height: 44px;
  }
  .price-row-name {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   EASY SELF-DRIVE RENTAL PROCESS - INTERACTIVE CAROUSEL
   ========================================================================== */
.requirements-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3.5rem 0;
  position: relative;
}

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.process-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.process-carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.process-carousel-track::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
  .process-carousel-track {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  }
}

.process-step-card {
  background: var(--bg-canvas);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.4rem;
  text-align: center;
  scroll-snap-align: start;
  transition: all var(--ease-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-bronze);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.process-step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-bronze);
  background: var(--brand-gold-subtle);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.process-icon-uniform {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7f4ee;
  border: 1.5px solid var(--border-medium);
  margin: 0.5rem auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-bronze);
  font-size: 1.4rem;
  transition: all var(--ease-smooth);
}
.process-step-card:hover .process-icon-uniform {
  background: var(--brand-dark-brown);
  border-color: var(--brand-dark-brown);
  color: #ffffff;
  transform: scale(1.06);
}

.process-step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--brand-dark-brown);
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.carousel-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  color: var(--brand-dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--ease-smooth);
}
.carousel-nav-btn:hover {
  background: var(--brand-dark-brown);
  color: #ffffff;
  border-color: var(--brand-dark-brown);
}

.carousel-dots-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  transition: all var(--ease-smooth);
  cursor: pointer;
}
.carousel-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--brand-dark-brown);
}

/* ==========================================================================
   NEW CAR BUYING ASSISTANCE SECTION (CRISP & LUXURY)
   ========================================================================== */
.car-buy-assistance-section {
  padding: 3.5rem 0;
  background: var(--bg-canvas);
}

.car-buy-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.car-buy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-dark-brown), var(--brand-gold), var(--whatsapp-green));
}

.car-buy-header {
  margin-bottom: 1.75rem;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.car-buy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: var(--brand-gold-subtle);
  color: var(--brand-bronze);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.car-buy-title {
  font-size: 2rem;
  color: var(--brand-espresso);
  margin-bottom: 0.75rem;
}

.car-buy-intro {
  font-size: 1.05rem;
  color: var(--brand-dark-brown);
  font-weight: 600;
  line-height: 1.5;
}

.car-buy-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-ultra-subtle);
  border-bottom: 1px solid var(--border-ultra-subtle);
}

@media (max-width: 850px) {
  .car-buy-body-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.car-buy-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.car-buy-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.perk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark-brown);
}
.perk-badge i {
  color: var(--brand-bronze);
}

.brands-subhead {
  font-size: 0.95rem;
  color: var(--brand-dark-brown);
  margin-bottom: 0.85rem;
}

.brands-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.brand-check-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-canvas);
  border: 1px solid var(--border-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  color: var(--text-title);
}
.brand-check-item i {
  color: var(--whatsapp-green);
  font-size: 1.1rem;
}

.car-buy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.car-buy-footer-note {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark-brown);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.car-buy-btn {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .car-buy-card {
    padding: 1.5rem 1.15rem;
  }
  .car-buy-title {
    font-size: 1.45rem;
  }
  .car-buy-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .car-buy-btn {
    width: 100%;
  }
}

/* ==========================================================================
   DEDICATED CAR DETAIL PAGE (car.html) STYLES
   ========================================================================== */
.car-page-body {
  background-color: var(--bg-canvas);
}

.car-detail-main {
  padding: 2rem 0 4rem;
}

.car-breadcrumb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}
.breadcrumb-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--brand-dark-brown);
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: all var(--ease-smooth);
}
.breadcrumb-back-link:hover {
  border-color: var(--brand-bronze);
  color: var(--brand-bronze);
}
.breadcrumb-current {
  color: var(--text-muted);
}

/* 2-Column Car Layout */
.car-detail-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .car-detail-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }
}

/* Gallery Column */
.car-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-display {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8f6f2;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .main-image-display {
    height: 280px;
  }
}

.active-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.3s ease;
}

.gallery-badge-gearbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-dark-brown);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.gallery-thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-thumb-btn {
  height: 85px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-light);
  background: #f8f6f2;
  transition: all var(--ease-smooth);
}
.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.gallery-thumb-btn.active {
  border-color: var(--brand-dark-brown);
  box-shadow: 0 0 0 2px var(--brand-gold);
}

/* Info Column */
.car-info-column {
  display: flex;
  flex-direction: column;
}

.car-header-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.car-edition-pill {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-bronze);
  background: var(--brand-gold-subtle);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}
.car-status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #128c7e;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.car-primary-name {
  font-size: 2.1rem;
  margin-bottom: 0.35rem;
  color: var(--brand-espresso);
}
.car-short-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Price Hero Box */
.car-price-hero-box {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.price-hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.price-hero-amount {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--brand-dark-brown);
  line-height: 1;
}
.price-hero-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.self-drive-guarantee {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-dark-brown);
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Specifications Grid */
.car-specs-summary-section {
  margin-bottom: 1.75rem;
}
.specs-section-title {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: var(--brand-dark-brown);
}
.specs-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.spec-tile {
  background: var(--bg-canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.spec-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-bronze);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.spec-tile-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}
.spec-tile-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-title);
}

/* Documents Notice Card */
.car-docs-notice-card {
  background: #fdfaf6;
  border: 1.5px solid var(--brand-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.75rem;
}
.docs-notice-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand-dark-brown);
  margin-bottom: 0.6rem;
}
.docs-notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.docs-notice-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.docs-notice-list i {
  color: var(--brand-bronze);
}

.car-booking-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

@media (max-width: 600px) {
  .car-booking-cta-row {
    flex-direction: column;
  }
  .car-booking-cta-row .btn {
    width: 100%;
  }
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-cta-strip {
  background: linear-gradient(135deg, #261b14 0%, #3a281e 100%);
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
}

.insta-strip-content {
  max-width: 700px;
  margin: 0 auto;
}

.insta-strip-content h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.insta-strip-content p {
  color: var(--brand-gold-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER & DISCREET ADMIN BUTTON
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(58, 40, 30, 0.1);
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-dark-brown);
  transition: color var(--ease-smooth);
}
.footer-contact-links a:hover {
  color: var(--brand-bronze);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-ultra-subtle);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-admin-separator {
  margin: 0 0.4rem;
  color: var(--border-medium);
}

.footer-admin-btn {
  color: var(--text-light);
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.65;
  transition: all var(--ease-smooth);
}
.footer-admin-btn:hover {
  opacity: 1;
  color: var(--brand-dark-brown);
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border-medium);
  padding: 0.6rem 0.85rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(38, 27, 20, 0.08);
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 65px;
  }
}

/* ==========================================================================
   LOCATION & HANDOVER HUB SECTION
   ========================================================================== */
.location-section {
  padding: 3.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.location-card {
  background: var(--bg-canvas);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.location-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  background: var(--brand-gold-subtle);
  color: var(--brand-bronze);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.location-title {
  font-size: 2rem;
  color: var(--brand-espresso);
  margin-bottom: 0.75rem;
}

.location-address {
  font-size: 1.15rem;
  color: var(--brand-dark-brown);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.location-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark-brown);
  box-shadow: var(--shadow-subtle);
}
.loc-pill i {
  color: var(--brand-bronze);
}

.location-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 640px) {
  .location-card {
    padding: 1.75rem 1.25rem;
  }
  .location-title {
    font-size: 1.5rem;
  }
  .location-address {
    font-size: 0.98rem;
  }
  .location-actions {
    flex-direction: column;
  }
  .location-actions .btn {
    width: 100%;
  }
}
