/* ==========================================================================
   GoMyCars - Modern Premium Automobile Rental Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Premium GoMyCars Brand Color System */
  --primary-navy: #0B1F3A;             /* Header, Footer, primary dark sections */
  --secondary-navy: #12345A;           /* Secondary dark backgrounds, hover states */
  
  --brand-blue: #0B8FD1;               /* Main action color: Book Now, Search, Active indicators */
  --brand-blue-hover: #12345A;         /* Primary hover */
  --brand-cyan: #29B6F6;               /* Highlights, accent lines, small accents */
  
  --bg-dark: #0B1F3A;                  /* Header & Footer background */
  --bg-dark-secondary: #12345A;
  --bg-light: #F5F8FC;                 /* Main page background */
  --bg-card: #FFFFFF;                  /* Card background */
  --bg-subtle: #EEF6FC;                /* Information sections, availability highlights */

  --primary: #0B8FD1;                  /* Main action color */
  --primary-hover: #12345A;
  --primary-light: #EEF6FC;
  
  --accent: #29B6F6;                   /* Cyan accent */
  --accent-hover: #0B8FD1;
  --accent-light: #EEF6FC;
  --accent-blue: #29B6F6;

  --warning: #F59E0B;                  /* Warning Amber */
  --warning-light: #FEF3C7;
  --danger: #DC2626;                   /* Error Red */
  --danger-light: #FEE2E2;
  --success: #16A34A;                  /* Success Green */
  --success-light: #DCFCE7;

  --text-main: #14213D;                /* Dark Navy Text */
  --text-muted: #64748B;               /* Secondary Text */
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --border-color: #D9E2EC;             /* Border */
  --border-focus: #0B8FD1;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(11, 31, 58, 0.05);
  --shadow-lg: 0 10px 25px rgba(11, 31, 58, 0.08);
  --shadow-xl: 0 20px 30px rgba(11, 31, 58, 0.10);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
}

/* Navigation Header */
.site-header {
  background: #FFFFFF;
  color: #14213D;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #D9E2EC;
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.05);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #14213D;
  letter-spacing: -0.5px;
}

.brand-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.brand-logo .logo-icon {
  background: #0B8FD1;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.brand-logo span.accent {
  color: #0B8FD1;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  color: #14213D;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #0B8FD1;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0B8FD1;
  border-radius: 2px;
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #14213D;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #0B8FD1;
  color: #FFFFFF;
  border-color: #0B8FD1;
  box-shadow: 0 2px 8px rgba(11, 143, 209, 0.25);
}

.btn-primary:hover {
  background: #12345A;
  border-color: #12345A;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(18, 52, 90, 0.35);
}

.btn-accent {
  background: #29B6F6;
  color: #0B1F3A;
  border-color: #29B6F6;
  box-shadow: 0 2px 6px rgba(41, 182, 246, 0.25);
}

.btn-accent:hover {
  background: #0B8FD1;
  border-color: #0B8FD1;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: #FFFFFF;
  border-color: #D9E2EC;
  color: #14213D;
}

.btn-outline-light:hover {
  background: #EEF6FC;
  border-color: #0B8FD1;
  color: #0B8FD1;
}

.btn-outline-primary {
  background: transparent;
  border-color: #0B8FD1;
  color: #0B8FD1;
}

.btn-outline-primary:hover {
  background: #EEF6FC;
  border-color: #12345A;
  color: #12345A;
}

.btn-secondary {
  background: #FFFFFF;
  color: #14213D;
  border: 1px solid #D9E2EC;
}

.btn-secondary:hover {
  background: #EEF6FC;
  border-color: #0B8FD1;
  color: #0B8FD1;
}

.btn-danger {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
}

.btn-danger:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* User Dropdown */
.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #EEF6FC;
  border: 1px solid #D9E2EC;
  color: #14213D;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.user-menu-btn:hover {
  background: #E0F2FE;
  color: #0B8FD1;
}

.user-menu-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #FFFFFF;
  min-width: 200px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(23, 32, 51, 0.1);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0;
  z-index: 50;
}

.user-menu:hover .user-menu-dropdown,
.user-menu-dropdown.show {
  display: block;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}

.user-menu-item:hover {
  background: var(--bg-subtle);
  color: var(--primary);
}

.user-menu-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.4rem 0;
}

/* Flash Messages */
.flash-messages-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 999;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.alert-success { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.alert-danger { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.alert-warning { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.alert-info { background: #EFF6FF; border-color: #BFDBFE; color: #1E40AF; }

.alert-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  margin-left: auto;
}

.alert-close:hover { opacity: 1; }

/* Hero Section - Clean Corporate Styling */
.hero {
  background: #F5F8FC;
  color: #14213D;
  padding: 4rem 0 5rem;
  position: relative;
  border-bottom: 1px solid #D9E2EC;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EEF6FC;
  border: 1px solid #B3E5FC;
  color: #0B8FD1;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #14213D;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-title span.highlight {
  color: #0B8FD1;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.hero-description {
  font-size: 1.15rem;
  color: #64748B;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #172033;
  font-weight: 600;
}

/* Quick Search Card */
.search-widget-card {
  background: #FFFFFF;
  color: var(--text-main);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
  border: 1px solid #E2E8F0;
}

.search-widget-header {
  margin-bottom: 1.5rem;
}

.search-widget-header h3 {
  font-size: 1.4rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-helper {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Section Common */
.section {
  padding: 5rem 0;
}

.section-subtle {
  background-color: #F1F5F9;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Car Cards Grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.car-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.car-card-image-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover .car-card-image-wrap img {
  transform: scale(1.04);
}

.car-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-available {
  background: #10B981;
  color: #FFFFFF;
}

.badge-unavailable {
  background: #64748B;
  color: #FFFFFF;
}

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

.car-title-wrap {
  margin-bottom: 0.75rem;
}

.car-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.car-model {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: var(--bg-light);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  text-align: center;
}

.spec-item {
  font-size: 0.8rem;
  color: #475569;
}

.spec-icon {
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}

.spec-val {
  font-weight: 600;
  color: var(--text-main);
}

/* Pricing in Car Card */
.car-pricing-box {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price-details {
  display: flex;
  flex-direction: column;
}

.price-tag-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-tag-main {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}

.price-tag-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-right: 4px;
}

.price-discount-pill {
  background: #DCFCE7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  display: inline-block;
  margin-left: 4px;
}

/* Multi-Step Booking Wizard */
.booking-wizard-wrapper {
  padding: 3rem 0 5rem;
}

.wizard-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: #E2E8F0;
  z-index: 1;
}

.wizard-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2.5px solid #CBD5E1;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.wizard-step.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2);
}

.wizard-step.completed .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
}

.wizard-step.active .step-label {
  color: var(--primary);
}

.wizard-step.completed .step-label {
  color: var(--accent);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-card-panel {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

/* Pricing Summary Box */
.price-breakdown-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.92rem;
  color: #475569;
  border-bottom: 1px dashed #E2E8F0;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  border-top: 2px solid var(--border-color);
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.price-row.discount-row {
  color: #166534;
  font-weight: 600;
}

.price-row.advance-row {
  color: var(--primary);
  font-weight: 700;
}

.price-row.remaining-row {
  color: #DC2626;
  font-weight: 700;
}

/* Free Pickup/Drop Promo Callout */
.promo-callout {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #065F46;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.promo-callout-icon {
  font-size: 1.5rem;
}

/* Auth Cards */
.auth-wrapper {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-xl);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Table styles */
.data-table-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.data-table th {
  background: #F8FAFC;
  color: #475569;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #F1F5F9;
  color: var(--text-main);
  vertical-align: middle;
}

.data-table tr:hover {
  background-color: #F8FAFC;
}

/* Status Badges */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
}

.status-confirmed, .status-paid, .status-active {
  background: #DCFCE7;
  color: #166534;
}

.status-upcoming {
  background: #E0F2FE;
  color: #0284C7;
}

.status-pending, .status-partial {
  background: #FEF3C7;
  color: #92400E;
}

.status-cancelled, .status-failed, .status-blocked {
  background: #FEE2E2;
  color: #991B1B;
}

.status-completed, .status-maintenance {
  background: #F1F5F9;
  color: #475569;
}

/* Site Footer */
.site-footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h4 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

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

.footer-link {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #38BDF8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .wizard-stepper {
    overflow-x: auto;
    padding-bottom: 10px;
  }
}

/* =============================================================
   RIGHT-SIDE AUTHENTICATION DRAWER STYLES
   ============================================================= */
.auth-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 30, 54, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.auth-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  max-width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.auth-drawer.open {
  transform: translateX(0);
}

.auth-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-color);
  background: #0B1E36;
  color: #FFFFFF;
}

.auth-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #94A3B8;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.auth-drawer-close:hover {
  color: #FFFFFF;
}

.auth-drawer-content {
  padding: 2rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.auth-drawer-view {
  display: none !important;
}

.auth-drawer-view.active {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  animation: fadeInAuthView 0.3s ease;
}

@keyframes fadeInAuthView {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-view-header {
  margin-bottom: 1.5rem;
}

.auth-view-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrap input {
  padding-right: 2.75rem;
}

.btn-toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 6px;
  z-index: 2;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-toggle-password:hover {
  background: #F1F5F9;
}

.input-group-mobile {
  display: flex;
  align-items: center;
}

.country-code-pill {
  background: #F1F5F9;
  border: 1.5px solid var(--border-color);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 0.75rem 0.85rem;
  font-weight: 600;
  color: #475569;
  font-size: 0.95rem;
}

.input-group-mobile input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* 6 Box OTP Inputs */
.otp-boxes-grid {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.otp-box-input {
  width: 48px;
  height: 54px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #F8FAFC;
  color: #0F172A;
  transition: all 0.2s;
}

.otp-box-input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(21, 157, 183, 0.2);
  outline: none;
}

.otp-resend-container {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-resend-otp-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-size: 0.9rem;
}

.btn-resend-otp-link:hover {
  color: var(--primary-hover);
}

.field-error-msg {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

.auth-drawer-switch-footer {
  margin-top: auto;
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
}

.btn-switch-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  font-size: 0.9rem;
}

.btn-switch-link:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .auth-drawer {
    width: 95vw;
  }
  .otp-box-input {
    width: 40px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   MOBILE-ONLY RESPONSIVE OVERRIDES (DESKTOP IS LOCKED)
   ========================================================================== */

/* Tablet & Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  
  /* 1. Mobile Header & Navigation */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    height: 64px;
    position: relative;
  }

  .brand-logo img {
    height: 34px !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column !important;
    padding: 1.25rem 1.5rem !important;
    gap: 0.75rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .nav-links.mobile-open {
    display: flex !important;
  }

  .nav-link {
    font-size: 1.05rem !important;
    padding: 0.65rem 0 !important;
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  /* 2. Mobile Home Hero & Search Form */
  .hero-section {
    padding: 2rem 0 3rem !important;
  }

  .hero-grid-responsive,
  div[style*="display: flex; gap: 1.25rem"],
  div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  h1, .hero-section h1 {
    font-size: clamp(1.65rem, 5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.8rem) !important;
  }

  #home-quick-search-form {
    width: 100% !important;
  }

  #home-quick-search-form .form-group,
  #home-quick-search-form select,
  #home-quick-search-form input {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
  }

  #home-quick-search-form button[type="submit"] {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 1.05rem !important;
  }

  /* 3. Mobile Our Fleet Page & Filter Form */
  .category-pills-wrap,
  div[style*="display: flex; gap: 0.75rem; flex-wrap: wrap"] {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1.25rem !important;
  }

  .category-pills-wrap .btn,
  div[style*="display: flex; gap: 0.75rem; flex-wrap: wrap"] .btn {
    flex-shrink: 0 !important;
  }

  .car-grid,
  div[style*="grid-template-columns: repeat(auto-fill"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  #fleet-filter-panel form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
  }

  #fleet-filter-panel form div[style*="display: flex"] {
    flex-direction: column !important;
    width: 100% !important;
  }

  #fleet-filter-panel form select {
    width: 100% !important;
    min-width: 100% !important;
  }

  #fleet-filter-panel form .btn {
    width: 100% !important;
    min-height: 44px !important;
  }

  /* 4. Mobile Book a Car Wizard */
  .wizard-stepper {
    gap: 0.25rem !important;
    padding: 0 0.5rem !important;
  }

  .wizard-step {
    padding: 0.4rem 0.5rem !important;
  }

  .step-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }

  .step-label {
    font-size: 0.72rem !important;
  }

  .booking-card-panel {
    padding: 1.25rem !important;
    border-radius: var(--radius-md) !important;
  }

  #booking-form div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  #booking-form .form-group[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }

  div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column-reverse !important;
    gap: 0.75rem !important;
  }

  div[style*="display: flex; justify-content: space-between"] .btn {
    width: 100% !important;
    min-height: 46px !important;
  }

  /* 5. Mobile Payment Modal Fit */
  #gomycars-payment-modal > div {
    width: calc(100% - 24px) !important;
    max-width: 100% !important;
    max-height: calc(100vh - 24px) !important;
    overflow-y: auto !important;
    border-radius: 14px !important;
  }

  /* 6. Mobile Booking Confirmation & My Bookings */
  .booking-card-panel div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
  }

  .price-breakdown-card {
    padding: 1rem !important;
  }

  .price-row {
    font-size: 0.88rem !important;
    flex-wrap: wrap !important;
    gap: 0.25rem !important;
  }

  /* 7. Mobile Footer */
  .site-footer {
    padding: 2.5rem 0 1.5rem !important;
  }

  .site-footer div[style*="max-width: 650px"] {
    width: 100% !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }

  /* 8. Global Touch Targets & Inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="datetime-local"],
  select,
  .form-control,
  .form-select {
    font-size: 16px !important; /* Prevents iOS auto-zoom on input focus */
    min-height: 44px !important;
  }

  .btn {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Small Phone Screens (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem !important;
  }

  .brand-logo {
    font-size: 1.3rem !important;
  }

  .step-label {
    display: none !important; /* Hide step labels on ultra-small screens */
  }
}

/* ==========================================================================
   Fleet Page Hero & Responsive Summary Section Styling
   ========================================================================== */
.fleet-hero-section {
  background: linear-gradient(135deg, #0B1E36 0%, #0F2C59 60%, #159DB7 100%);
  padding: 3rem 0 4rem;
  color: #FFFFFF;
  position: relative;
}

.fleet-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.fleet-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fleet-hero-desc {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin: 0;
}

.fleet-badge {
  background: rgba(56, 189, 248, 0.2);
  color: #38BDF8;
}

.fleet-count-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: #38BDF8;
  font-size: 1.1rem;
  white-space: nowrap;
}

.fleet-search-summary {
  background: #F0F9FF;
  border: 1.5px solid #BAE6FD;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.summary-schedules-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.summary-divider-col {
  border-left: 1px solid #CBD5E1;
  padding-left: 1.5rem;
}

/* ==========================================================================
   Unique Unified Fleet Filter Command Center Styling
   ========================================================================== */
.unique-filter-hub {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #D9E2EC;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.05);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.unique-filter-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0B8FD1;
}

/* Header */
.filter-hub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EEF6FC;
}

.filter-hub-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-hub-title .title-icon {
  width: 42px;
  height: 42px;
  background: #EEF6FC;
  color: #0B8FD1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(11, 143, 209, 0.12);
}

.filter-hub-title h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #14213D;
  margin: 0;
  line-height: 1.2;
}

.filter-hub-title .subtext {
  font-size: 0.82rem;
  color: #64748B;
  display: block;
}

/* Active Tags Bar */
.filter-active-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.active-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #EEF6FC;
  color: #0B8FD1;
  border: 1px solid #B3E5FC;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.active-tag-pill:hover {
  background: #E0F2FE;
  color: #12345A;
}

.reset-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FCA5A5;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.reset-all-btn:hover {
  background: #FEE2E2;
  color: #B91C1C;
  transform: translateY(-1px);
}

/* Row 1: Category Track */
.category-pills-section {
  margin-bottom: 1.25rem;
}

.category-track-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 800;
  color: #64748B;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.category-pills-track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.cat-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #14213D;
  border: 1.5px solid #D9E2EC;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.cat-pill-btn:hover {
  background: #EEF6FC;
  border-color: #0B8FD1;
  color: #0B8FD1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 143, 209, 0.15);
}

.cat-pill-btn.active {
  background: #0B8FD1;
  color: #FFFFFF;
  border-color: #0B8FD1;
  box-shadow: 0 4px 14px rgba(11, 143, 209, 0.3);
  transform: translateY(-1px);
}

.cat-pill-btn .pill-icon {
  font-size: 1.1rem;
}

/* Secondary Attributes Grid */
.filter-attributes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.filter-attribute-card {
  background: #FFFFFF;
  border: 1px solid #D9E2EC;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: all 0.2s ease;
}

.filter-attribute-card:hover {
  background: #F5F8FC;
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.attribute-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #14213D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.chip-group {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.chip-btn {
  background: #FFFFFF;
  border: 1px solid #D9E2EC;
  color: #64748B;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.chip-btn:hover {
  border-color: #0B8FD1;
  color: #0B8FD1;
  background: #EEF6FC;
}

.chip-btn.active {
  background: #0B8FD1;
  color: #FFFFFF;
  border-color: #0B8FD1;
  box-shadow: 0 3px 8px rgba(11, 143, 209, 0.25);
}

/* Mobile Toggle Button (Only visible on small screens) */
.mobile-filter-toggle-btn {
  display: none;
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Mobile, Tablet, Laptop, Desktop)
   ========================================================================== */

/* 1. Mobile & Tablet Navigation Drawer (<= 991px) */
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #EEF6FC;
    color: #14213D;
    border-radius: 8px;
    font-size: 1.3rem;
    border: 1px solid #D9E2EC;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #D9E2EC;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.12);
    z-index: 999;
  }

  .nav-links.mobile-open {
    display: flex !important;
    animation: slideDown 0.25s ease-out forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.65rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #F5F8FC;
    color: #14213D !important;
  }

  .user-menu-dropdown {
    right: 0;
    left: auto;
    width: 220px;
  }
}

/* 2. Mobile Screens (<= 768px - Android & iPhone Devices) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    height: 66px;
  }

  .brand-logo img {
    height: 34px !important;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .user-menu-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
  }

  /* Hero Section */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    text-align: left;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
  }

  .hero-badge {
    font-size: 0.78rem !important;
  }

  /* Search & Filter Cards */
  .search-form-grid,
  #home-date-search-form > div {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .form-control, .form-select {
    min-height: 44px;
    font-size: 0.92rem;
  }

  /* Car Cards Grid */
  .cars-grid,
  .popular-cars-grid,
  div[style*="grid-template-columns: repeat(auto-fill, minmax(280px, 1fr))"],
  div[style*="grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .car-card-header {
    height: 180px !important;
  }

  .fleet-hero-section {
    padding: 2rem 0 2.5rem;
  }

  .fleet-hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .fleet-hero-title {
    font-size: 1.75rem;
    margin-top: 0.3rem;
  }

  .fleet-hero-desc {
    font-size: 0.92rem;
  }

  .fleet-hero-right {
    width: 100%;
  }

  .fleet-count-pill {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .fleet-search-summary {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .summary-schedules-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .summary-divider-col {
    border-left: none;
    border-top: 1px solid #D9E2EC;
    padding-left: 0;
    padding-top: 0.85rem;
    width: 100%;
  }

  .fleet-search-summary .btn {
    width: 100%;
    justify-content: center;
  }

  .unique-filter-hub {
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
  }

  .filter-hub-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .filter-hub-title {
    width: 100%;
  }

  .filter-hub-title .title-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .filter-hub-title h3 {
    font-size: 1.05rem;
  }

  .filter-hub-title .subtext {
    font-size: 0.78rem;
  }

  .filter-active-tags {
    width: 100%;
    gap: 0.4rem;
  }

  .active-tag-pill, .reset-all-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
  }

  .category-pills-section {
    margin-bottom: 1rem;
  }

  .category-pills-track {
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cat-pill-btn {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    border-radius: 50px;
    min-height: 38px;
  }

  .cat-pill-btn .pill-icon {
    font-size: 0.95rem;
  }

  .filter-attributes-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .filter-attribute-card {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
  }

  .attribute-card-header {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
  }

  .chip-group {
    gap: 0.35rem;
  }

  .chip-btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    min-height: 38px;
  }

  /* Table & Wizard Responsive */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wizard-stepper {
    gap: 0.5rem;
    justify-content: space-between;
  }

  .wizard-step {
    font-size: 0.8rem;
  }
}

/* 3. Tablet Screens (769px to 1024px - iPad & Tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .cars-grid,
  div[style*="grid-template-columns: repeat(auto-fill, minmax(280px, 1fr))"],
  div[style*="grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .filter-attributes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 4. Ultra Small Compact Mobile (<= 420px - Android Phones) */
@media (max-width: 420px) {
  .brand-logo img {
    height: 28px !important;
  }

  .user-menu-btn span:nth-child(2) {
    display: none;
  }

  .hero-title {
    font-size: 1.65rem !important;
  }
}



