:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050505;
  color: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(0, 118, 255, 0.12), transparent 30%),
    #020202;
}

a {
  color: inherit;
}

.top-bar {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid #1f2937;
  padding: 22px 5%;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.header-contact-strip {
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid #1f2937;
  border-radius: 16px;
  background: rgba(7, 13, 23, 0.86);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.header-contact-strip a,
.header-contact-strip button {
  border: 1px solid #334155;
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.84rem;
  background: rgba(2, 6, 23, 0.88);
}

.header-contact-strip button {
  cursor: pointer;
}

.header-contact-strip a:hover,
.header-contact-strip button:hover {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  border-color: #2563eb;
}

.brand-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  width: 72px;
  min-width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.top-bar h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.name-white {
  color: #fff;
}

.name-blue {
  display: inline-block;
  color: #3b82f6;
  letter-spacing: 0.5em;
}

.tagline {
  margin: 10px 0 0;
  color: #9ca3af;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 8%;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58)),
    url('images/catoon image.png');
  background-size: cover;
  background-position: center;
}

.contact-help {
  margin: 24px 8% 0;
  padding: 24px;
  border: 1px solid #1f2937;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.96));
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.contact-help-card {
  display: block;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #334155;
  background: rgba(2, 6, 23, 0.9);
  text-decoration: none;
}

.contact-help-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
  color: #fff;
}

.contact-role {
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-help-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.35), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.hero-content,
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 48%;
}

.hero-content h4 {
  margin: 0 0 0.75rem;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: #fff;
}

.vehicle-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 2rem 0;
}

.vehicle-info span {
  display: inline-flex;
  padding: 16px 18px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid #334155;
  border-radius: 999px;
  font-size: 0.95rem;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-contact-line {
  margin: 14px 0 0;
  color: #dbeafe;
  font-weight: 600;
}

.hero-contact-line a {
  color: #ffffff;
}

.btn-primary,
.btn-secondary,
.link-button,
.floating-menu a,
.vehicle-card button,
.finance-box button,
.rent-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary,
.link-button,
.floating-menu a,
.vehicle-card button,
.finance-box button,
.rent-box button {
  background: #2563eb;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover,
.link-button:hover,
.floating-menu a:hover,
.vehicle-card button:hover,
.finance-box button:hover,
.rent-box button:hover {
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: min(100%, 360px);
}

.feature-box {
  padding: 24px;
  background: #0a0a0a;
  border: 1px solid #0f4cff;
  border-radius: 16px;
}

.feature-box h3 {
  margin: 0 0 0.75rem;
  color: #0f7fff;
  font-size: 1.05rem;
}

.feature-box p {
  margin: 0;
  color: #cbd5e1;
}

.showroom {
  padding: 80px 5%;
  background: linear-gradient(180deg, rgba(8, 10, 17, 0.95), #020202 88%);
}

.showroom-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.showroom-filter {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b1220;
  padding: 12px 18px;
  border-radius: 999px;
  color: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.showroom-filter.active,
.showroom-filter:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-1px);
}

.showroom-filter:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.sort-label {
  color: #cbd5e1;
  font-weight: 600;
}

.showroom-sort {
  background: #0b1220;
  border: 1px solid #1f2937;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  min-width: 200px;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.showroom-card {
  background: #0b1220;
  border: 1px solid #111827;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showroom-image {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.showroom-content {
  padding: 22px;
}

.badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #93c5fd;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.showroom-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.showroom-content p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.showroom-price {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #60a5fa;
}

.showroom-note {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.showroom-card {
  position: relative;
}

.showroom-detail-button {
  margin-top: 18px;
  background: #2563eb;
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.showroom-detail-button:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 50;
  padding: 24px;
}

.product-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  background: #08101f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  width: min(560px, 100%);
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: transparent;
  color: #cbd5e1;
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-description {
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0 0 18px;
}

.modal-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: #cbd5e1;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-price {
  font-size: 1.5rem;
}

.featured {
  padding: 80px 5%;
}

.stock-tabs {
  display: inline-flex;
  gap: 10px;
  margin: 0 0 24px;
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 999px;
  padding: 6px;
}

.stock-tab {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #cbd5e1;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
}

.stock-tab.active {
  background: #2563eb;
  color: #fff;
}

.stock-panel {
  display: none;
}

.stock-panel.active {
  display: block;
}

.featured-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 16px;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #1f2937;
  background: #070b16;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.featured-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.featured-slide-image {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.featured-slide-content {
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.featured-slide-content h3 {
  margin: 0;
  font-size: 1.4rem;
}

.featured-slide-content p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.carousel-control {
  width: 52px;
  height: 52px;
  border: 1px solid #1f2937;
  border-radius: 50%;
  background: #0b1220;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #334155;
  cursor: pointer;
}

.carousel-dot.active {
  background: #60a5fa;
}

.sold-showcase-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #1f2937;
  background: #070b16;
}

.sold-showcase-image {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.sold-showcase-content {
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.sold-showcase-content h3,
.sold-showcase-content p {
  margin: 0;
}

.sold-showcase-content p {
  color: #cbd5e1;
  line-height: 1.7;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.link-button {
  padding: 14px 24px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: #080808;
  border: 1px solid #111;
  border-radius: 20px;
  overflow: hidden;
}

.vehicle-image {
  min-height: 220px;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.vehicle-card h3,
.vehicle-card p {
  margin: 0;
  padding: 15px;
}

.vehicle-card button {
  width: 100%;
  padding: 18px;
  border: none;
  cursor: pointer;
}

.actions-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  padding: 0 5% 80px;
}

.finance-box,
.rent-box {
  background: #080808;
  border: 1px solid #111;
  border-radius: 24px;
  padding: 30px;
}

.form-section {
  padding: 80px 5%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.faq-reviews {
  padding: 80px 5%;
  background: linear-gradient(180deg, rgba(2, 2, 7, 0.95), #050505 80%);
}

.faq-reviews-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.faq-card,
.review-card {
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 28px;
}

.about-us {
  padding: 80px 5%;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.92), #050505 85%);
}

.about-content {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.about-content p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-card {
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 28px;
}

.about-card h3 {
  margin: 0 0 14px;
}

.about-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.about-card ul {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
  line-height: 1.8;
}

.about-signoff {
  margin: 26px 0 0;
  color: #93c5fd;
  font-weight: 700;
}

.faq-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.faq-card p,
.review-card p {
  margin: 0;
  line-height: 1.7;
  color: #cbd5e1;
}

.review-card span {
  display: block;
  margin-top: 18px;
  color: #93c5fd;
  font-weight: 600;
}

.team-highlights {
  padding: 80px 5%;
}

.team-highlight-grid,
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.team-card,
.highlight-card {
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 28px;
}

.team-card .avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #1e3a8a;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-card h3,
.highlight-card h3 {
  margin: 0 0 14px;
}

.team-card p,
.highlight-card p {
  margin: 0;
  line-height: 1.75;
  color: #cbd5e1;
}

.form-card {
  background: #080808;
  border: 1px solid #111;
  border-radius: 24px;
  padding: 32px;
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.form-card label {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: #0b1220;
  color: #fff;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.success-message {
  margin: 12px 0 0;
  color: #34d399;
  font-weight: 600;
}

.finance-box h2,
.rent-box h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.finance-box input,
.finance-box select {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: #0b1220;
  color: #fff;
}

.result {
  margin-top: 16px;
  color: #60a5fa;
}

.rent-box ul {
  padding-left: 20px;
  margin: 0 0 24px;
}

.rent-box li {
  margin-bottom: 12px;
}

.floating-menu {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1101;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-menu.hidden {
  opacity: 0;
  pointer-events: none;
}

.floating-menu a {
  background: #0066ff;
  padding: 15px 18px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1102;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.menu-toggle.active {
  transform: scale(1.05);
  background: #1d4ed8;
}

.site-footer {
  padding: 50px 5%;
  background: #050505;
  border-top: 1px solid #111827;
  color: #d1d5db;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 16px;
  color: #fff;
}

.site-footer a {
  display: block;
  color: #93c5fd;
  margin-bottom: 10px;
  text-decoration: none;
}

.whatsapp-qr {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  border: 1px solid #1f2937;
  display: block;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 160px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.chat-panel {
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #06080f;
  border: 1px solid #162a4d;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid #11203a;
}

.chat-header h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.chat-header p {
  margin: 6px 0 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

.chat-close {
  border: none;
  background: transparent;
  color: #cbd5e1;
  font-size: 1rem;
  cursor: pointer;
}

.chat-messages {
  padding: 18px;
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}

.message {
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
}

.message.bot {
  background: #111827;
  color: #e5e7eb;
  align-self: flex-start;
}

.message.user {
  background: #2563eb;
  color: #fff;
  align-self: flex-end;
}

.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #11203a;
}

.chat-quick-actions {
  padding: 12px 16px 0;
}

.chat-quick-actions button {
  border: 1px solid #1d4ed8;
  background: #0b1220;
  color: #bfdbfe;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.85rem;
}

.chat-input-row input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: #0b1220;
  color: #fff;
}

.chat-input-row button {
  border: none;
  padding: 0 20px;
  border-radius: 16px;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
}

.footer-note {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

@media (max-width: 1120px) {
  .hero,
  .actions-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    max-width: 100%;
  }

  .vehicle-grid,
  .faq-reviews-grid,
  .review-grid,
  .team-highlight-grid,
  .highlights-grid,
  .showroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .faq-reviews-grid,
  .review-grid,
  .about-grid,
  .team-highlight-grid,
  .highlights-grid,
  .footer-grid,
  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .header-contact-strip {
    justify-content: center;
  }

  .header-contact-strip a,
  .header-contact-strip button {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .contact-help {
    margin: 20px 5% 0;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .featured-slide {
    grid-template-columns: 1fr;
  }

  .sold-showcase-card {
    grid-template-columns: 1fr;
  }

  .featured-slide-image {
    min-height: 240px;
  }

  .sold-showcase-image {
    min-height: 240px;
  }

  .menu-toggle {
    display: block;
  }

  .floating-menu {
    display: none;
    right: 20px;
    bottom: 90px;
    top: auto;
    transform: none;
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: rgba(5, 7, 13, 0.96);
    border-radius: 20px;
  }

  .floating-menu.open {
    display: flex;
  }

  .floating-menu a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero,
  .actions-grid,
  .vehicle-grid {
    padding: 0 5%;
  }

  .featured-carousel {
    grid-template-columns: 1fr;
  }

  .stock-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .carousel-control {
    display: none;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .header-contact-strip {
    margin-top: 12px;
    padding: 8px;
  }

  .header-contact-strip a,
  .header-contact-strip button {
    flex: 1 1 100%;
  }

  .floating-menu {
    position: fixed;
    right: 20px;
    bottom: 90px;
    top: auto;
    transform: none;
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: rgba(5, 7, 13, 0.96);
    border-radius: 20px;
    display: none;
  }

  .floating-menu.open {
    display: flex;
  }

  .floating-menu a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 16px 4%;
  }

  .top-bar h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .tagline {
    letter-spacing: 0.06em;
    font-size: 0.74rem;
  }

  .hero {
    gap: 20px;
    padding: 56px 5%;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .vehicle-info span {
    padding: 12px 14px;
    font-size: 0.83rem;
  }

  .header-contact-strip a,
  .header-contact-strip button {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .contact-help {
    padding: 16px;
  }
}
