:root {
  --gold: #C89241;
  --gold-light: #E4B565;
  --gold-dark: #A67630;
  --charcoal: #0B0E14;
  --charcoal-2: #151A24;
  --charcoal-3: #1E2533;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --off-white: #F5F3F0;
  --text: #1A1D24;
  --text-muted: #787C84;
  --border: #E5E2DD;
  --border-light: #F0EDE8;
  --success: #2D7D46;
  --danger: #B91C1C;
  --warning: #B8860B;
  --shadow-sm: 0 1px 3px rgba(11, 14, 20, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 14, 20, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 14, 20, 0.12);
  --shadow-glow: 0 4px 20px rgba(200, 146, 65, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ===== Color Overrides ===== */
.bg-dark-slate {
  background: var(--charcoal) !important;
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-2) 100%) !important;
}

.text-primary {
  color: var(--gold) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.border-secondary {
  border-color: rgba(255,255,255,0.08) !important;
}

/* ===== Section Decorators ===== */
.section-header {
  margin-bottom: 3rem;
}

.section-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-accent::before,
.section-accent::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  font-weight: 600;
  border-radius: 100px !important;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 146, 65, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 146, 65, 0.4);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  color: var(--gold);
  border: 2px solid var(--gold);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-lg {
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
}

/* ===== Navbar ===== */
.navbar {
  padding: 0 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 14, 20, 0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 64px;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--gold);
  background: rgba(200, 146, 65, 0.08);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--gold);
  background: rgba(200, 146, 65, 0.1);
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.navbar-phone {
  display: none;
  align-items: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 0.4rem;
  transition: color 0.2s;
}

.navbar-phone i {
  color: var(--gold);
  font-size: 0.9rem;
}

.navbar-phone:hover {
  color: var(--gold);
}

@media (min-width: 992px) {
  .navbar-phone {
    display: inline-flex;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(165deg, #0B0E14 0%, #151A24 35%, #1A2130 65%, #151A24 100%);
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,146,65,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,146,65,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(200,146,65,0.03) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11,14,20,0.92) 0%, rgba(11,14,20,0.7) 40%, rgba(11,14,20,0.5) 100%);
}

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,65,0.15), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.5rem;
  border-radius: 100px;
  background: rgba(200,146,65,0.1);
  border: 1px solid rgba(200,146,65,0.15);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #9CA3AF;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-search-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative;
}

.hero-search-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200,146,65,0.2), transparent, rgba(200,146,65,0.1));
  z-index: -1;
}

.hero-search-card h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
  margin-bottom: 1.25rem;
}

.hero-search-card .form-label {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-search-card .form-select,
.hero-search-card .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
}

.hero-search-card .form-select:focus,
.hero-search-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 65, 0.12);
  background: rgba(255,255,255,0.08);
}

.hero-search-card .form-select option {
  background: var(--charcoal-2);
  color: var(--white);
}

/* ===== Section Spacing ===== */
section {
  padding: 5rem 0;
}

section.bg-white {
  padding: 5rem 0;
}

/* ===== Car Cards ===== */
.car-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  position: relative;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 146, 65, 0.3);
}

.car-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.car-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,14,20,0.3) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.car-card:hover .img-wrap::after {
  opacity: 1;
}

.car-card .card-img-top {
  height: 230px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.car-card:hover .card-img-top {
  transform: scale(1.08);
}

.car-card .card-body {
  padding: 1.25rem 1.25rem 1.1rem;
}

.car-card .card-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text) !important;
  line-height: 1.3;
}

.car-card .price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.3px;
}

.car-card .spec-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.car-card .spec-item i {
  width: 14px;
  color: var(--gold);
  margin-right: 0.25rem;
  font-size: 0.75rem;
}

.car-card .card-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-light);
  background: rgba(245,243,240,0.4);
}

.car-condition-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--white);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.car-condition-badge.used {
  background: var(--white);
  color: var(--text);
}

.car-condition-badge.certified {
  background: var(--gold);
  color: var(--white);
}

.car-condition-badge.new {
  background: var(--charcoal);
  color: var(--white);
}

/* ===== Why Choose Us - Feature Cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 146, 65, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
  left: 15%;
  right: 15%;
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: rgba(200,146,65,0.08);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(200,146,65,0.15);
  transform: scale(1.05);
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--gold);
}

.feature-card h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== Badges ===== */
.badge-available {
  background: rgba(45, 125, 70, 0.1);
  color: var(--success);
  font-weight: 500;
  padding: 0.3em 0.75em;
  border-radius: 100px;
  font-size: 0.78rem;
}

.badge-sold {
  background: rgba(185, 28, 28, 0.08);
  color: var(--danger);
  font-weight: 500;
  padding: 0.3em 0.75em;
  border-radius: 100px;
  font-size: 0.78rem;
}

/* ===== Search Filters ===== */
.filter-section {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 84px;
}

.filter-section .filter-title {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-select, .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all 0.25s ease;
}

.form-select:focus, .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 65, 0.12);
}

.btn-outline-secondary {
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-outline-secondary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== Car Detail Gallery ===== */
.main-image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  position: relative;
}

.main-image-container img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.main-image-container:hover img {
  transform: scale(1.02);
}

.thumbnail-list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.thumbnail-list::-webkit-scrollbar {
  height: 4px;
}

.thumbnail-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.thumbnail-list .thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.thumbnail-list .thumb:hover {
  opacity: 0.8;
}

.thumbnail-list .thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.thumbnail-list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Spec Sheet ===== */
.spec-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.spec-item {
  background: var(--white);
  padding: 1rem 1.25rem;
  transition: background 0.2s ease;
}

.spec-item:hover {
  background: rgba(200,146,65,0.03);
}

.spec-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.spec-item .value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== Contact Cards ===== */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 84px;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

/* ===== Form Floating Labels ===== */
.form-floating > .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 65, 0.12);
}

.form-floating > .form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

/* ===== Pagination ===== */
.pagination .page-link {
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  margin: 0 3px;
  border-radius: var(--radius-sm) !important;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.875rem;
}

.pagination .page-link:hover {
  background: var(--off-white);
  color: var(--gold);
  border-color: var(--gold);
}

.pagination .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(200,146,65,0.3);
}

.pagination .page-item.disabled .page-link {
  color: var(--text-muted);
  background: transparent;
  border-color: var(--border-light);
}

/* ===== View Toggle ===== */
.view-toggle .btn {
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  transition: all 0.2s ease;
}

.view-toggle .btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ===== Loading Spinner ===== */
.spinner-overlay {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.spinner-overlay.active {
  display: block;
}

.spinner-border.text-primary {
  color: var(--gold) !important;
}

/* ===== List View ===== */
.car-list-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.car-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,146,65,0.2);
}

.car-list-item .list-img-wrap {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
}

.car-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.car-list-item:hover img {
  transform: scale(1.05);
}

.car-list-item .list-body {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== Alerts ===== */
.alert-modern {
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

#formAlert {
  display: none;
}

#formAlert.show {
  display: block;
}

/* ===== Footer ===== */
footer.bg-dark-slate {
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

footer.bg-dark-slate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,65,0.15), transparent);
}

footer a {
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--gold) !important;
}

footer hr {
  opacity: 0.08;
}

footer .list-unstyled i {
  color: var(--gold);
  opacity: 0.7;
}

footer h6 {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--gold);
}

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* ===== About Page ===== */
.about-section {
  padding: 1rem 0 3rem;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.03);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,146,65,0.1);
  pointer-events: none;
}

.about-cta {
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-2) 100%) !important;
  border: 1px solid rgba(200, 146, 65, 0.12);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,146,65,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== Inline code / VIN ===== */
code {
  background: var(--off-white);
  color: var(--text);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ===== Map ===== */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Contact Page Info Cards ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,146,65,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(200,146,65,0.15);
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-info-item h6 {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-info-item a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .navbar {
    backdrop-filter: none;
    background: var(--charcoal) !important;
  }
  .navbar-dark .navbar-nav .nav-link.active::after {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    padding: 4rem 0 3.5rem;
    min-height: auto;
  }
  .car-list-item {
    flex-direction: column;
  }
  .car-list-item .list-img-wrap {
    flex: 0 0 auto;
    height: 200px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-section {
    padding: 3rem 0 2.5rem;
  }
  .hero-search-card {
    padding: 1.5rem;
  }
  .main-image-container img {
    height: 260px;
  }
  .spec-sheet {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 1.6rem;
  }
  section {
    padding: 3rem 0;
  }
  section.bg-white {
    padding: 3rem 0;
  }
  .feature-card {
    padding: 1.5rem 1.25rem;
  }
  .about-image-wrap img {
    height: 260px;
  }
  .map-container {
    height: 260px;
  }
  .car-list-item .list-img-wrap {
    height: 180px;
  }
}
