/* --- Enhanced Color Variables (Professional Clean White) --- */
:root {
  --primary-gold: #d4af37;
  --secondary-gold: #ffd700;
  --accent-gold: #f8f9fa;
  --light-gold: #fafbfc;
  --deep-gold: #b8860b;
  --complementary-blue: #0066cc;
  --complementary-teal: #6c757d;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --light-bg: #ffffff;
  --section-bg: #fafbfc;
  --border-light: #e1e4e8;
  --border-medium: #d0d7de;
  --shadow-light: rgba(0, 0, 0, 0.04);
  --shadow-medium: rgba(0, 0, 0, 0.08);
  --shadow-heavy: rgba(0, 0, 0, 0.12);
  --shadow-card: rgba(0, 0, 0, 0.06);
  --hover-bg: #f6f8fa;
  --gradient-gold: linear-gradient(135deg, #d4af37, #ffd700);
  --gradient-blue: linear-gradient(135deg, #0066cc, #0052a3);
}

/* --- Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--complementary-blue);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--primary-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Loading Animation --- */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Scroll Progress Indicator --- */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease;
}

/* --- Header Styles --- */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px var(--shadow-light);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px var(--shadow-card);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Navigation --- */
.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

/* --- Mobile Menu --- */
.mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.mobile-menu-button:hover {
  background: var(--hover-bg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: var(--hover-bg);
  color: var(--primary-gold);
}

/* --- Page Sections --- */
.page-section {
  display: none;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.page-section.active {
  display: block;
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 134, 171, 0.5) 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* --- FIXED SECTION SPACING --- */
.section {
  padding: 2.5rem 0; /* Reduced from 4rem to 2.5rem */
  position: relative;
}

.section-light {
  background: var(--section-bg);
}

/* --- Section Headers with Reduced Spacing --- */
.section-header {
  text-align: center;
  margin-bottom: 2rem; /* Reduced from 3rem to 2rem */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0; /* Reduced padding */
}

.section-header .subtitle {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-header .title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem; /* Reduced margin */
  color: var(--text-dark);
}

.section-header .description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Page Titles with Reduced Spacing --- */
.title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem; /* Reduced spacing */
  color: var(--text-dark);
}

.subtitle {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  color: var(--white);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 1.5rem; /* Reduced gap */
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

/* --- Feature Cards --- */
.feature-card {
  background: var(--white);
  padding: 1.5rem; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-medium);
  border-color: var(--primary-gold);
}

.feature-card .icon {
  color: var(--primary-gold);
  margin-bottom: 1rem; /* Reduced margin */
  transition: all 0.3s ease;
  font-size: 2.5rem;
}

.feature-card:hover .icon {
  animation: float 2s ease-in-out infinite;
  color: var(--secondary-gold);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem; /* Reduced margin */
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Product Detail Cards --- */
.product-detail-card {
  background: var(--white);
  padding: 2rem; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-card);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem; /* Reduced margin */
  transition: all 0.3s ease;
}

.product-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.product-specs {
  background: var(--accent-gold);
  padding: 1.5rem; /* Reduced padding */
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid var(--border-light);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.spec-label {
  font-weight: 500;
  color: var(--text-dark);
}

.spec-value {
  font-weight: 600;
  color: var(--primary-gold);
}

/* --- Product Gallery --- */
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem; /* Reduced margin */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  background: var(--white);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* --- Special Feed Cards --- */
.special-feed-card {
  background: var(--white);
  padding: 1.5rem; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.special-feed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.special-feed-card h4 {
  color: var(--primary-gold);
  margin-bottom: 0.75rem; /* Reduced margin */
}

.special-feed-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.special-feed-card li {
  padding: 0.4rem 0; /* Reduced padding */
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.special-feed-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

/* --- Services List --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-gold);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.service-icon {
  font-size: 2rem;
  background: var(--accent-gold);
  padding: 0.75rem;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.service-content h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Value and Sustainability Cards --- */
.value-card,
.sustainability-card {
  background: var(--white);
  padding: 1.5rem; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover,
.sustainability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.value-icon,
.sustain-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem; /* Reduced margin */
  display: block;
}

/* --- Dealer Benefits --- */
.dealer-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem; /* Reduced padding */
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-gold);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.benefit-icon {
  font-size: 2rem;
  background: var(--accent-gold);
  padding: 0.75rem;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-content h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.dealer-cta-card {
  background: transparent;
  color: var(--text-dark);
  padding: 2.5rem; /* Reduced padding */
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dealer-cta-card h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.dealer-cta-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.dealer-cta-card .btn {
  position: relative;
  z-index: 1;
}

/* --- Testimonial Cards --- */
.testimonial-card {
  background: var(--white);
  padding: 2rem; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-gold);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-gold);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1.2rem; /* Reduced margin */
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-gold);
  font-size: 1rem;
}

.testimonial-card .origin {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Contact Forms and Info --- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem; /* Reduced margin */
  padding: 1.5rem;
  background: linear-gradient(125deg, var(--light-gold), var(--white));
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.contact-info-item .icon {
  color: var(--primary-gold);
  background: var(--light-gold);
  padding: 0.75rem;
  height: 50px;
  width: 50px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-info-item:hover .icon {
  animation: pulse 1s ease-in-out;
  background: var(--primary-gold);
  color: var(--white);
}

.contact-form {
  background: linear-gradient(135deg, var(--white), var(--light-gold));
  padding: 2.5rem; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-card);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px var(--shadow-medium);
  transform: translateY(-2px);
}

/* --- Contact Grid --- */
.contact-grid {
  grid-template-columns: 1fr;
  align-items: flex-start;
}

/* --- Map Container --- */
.map-container {
  width: 100%;
  margin-top: 2rem; /* Reduced margin */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-card);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 400px; /* Reduced height */
  border: 0;
  border-radius: 0;
  display: block;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, var(--text-dark), #0d1117);
  color: var(--white);
  padding: 2.5rem 0 1.5rem; /* Reduced padding */
  border-top: 4px solid var(--primary-gold);
  margin-top: 1rem;
}

.footer-grid {
  gap: 2rem;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.2rem; /* Reduced margin */
  position: relative;
  font-size: 1.2rem;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.footer li:hover {
  transform: translateX(4px);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  margin-top: 2rem; /* Reduced margin */
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-heavy);
  border-color: var(--primary-gold);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0; /* Further reduced on mobile */
  }

  .section-header {
    margin-bottom: 1.5rem; /* Reduced mobile margin */
    padding: 0.5rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .mobile-menu {
    display: block;
  }

  .feature-card {
    padding: 1.2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.875rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dealer-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dealer-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Print Styles --- */
@media print {
  .header,
  .mobile-menu,
  .back-to-top,
  .loading-overlay,
  .scroll-indicator {
    display: none;
  }

  .page-section {
    display: block !important;
    opacity: 1 !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}

/* --- Accessibility Improvements --- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .parallax-element {
    transform: none !important;
  }
}


/* --- High Contrast Mode --- */
@media (prefers-contrast: high) {
  :root {
    --shadow-light: rgba(0, 0, 0, 0.2);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.4);
    --border-light: #999;
    --border-medium: #666;
  }
}
