/* ==========================================
   Design System & Variable Declarations
   ========================================== */
:root {
  /* HSL Tailored Industrial Palette */
  --primary: hsl(26, 90%, 50%);       /* Safety Amber / Molten Copper */
  --primary-hover: hsl(26, 95%, 42%);
  --secondary: hsl(215, 20%, 15%);    /* Deep Industrial Charcoal */
  --accent: hsl(195, 85%, 45%);       /* Electric Cyan Glow */
  
  --dark-bg: hsl(217, 24%, 10%);      /* Deep Slate Black */
  --dark-surface: hsl(217, 20%, 14%); /* Lighter Slate for Cards */
  --dark-border: hsl(217, 15%, 22%);
  
  --light-bg: hsl(210, 25%, 98%);     /* Clean Off-white */
  --light-surface: hsl(0, 0%, 100%);  /* Card White */
  --light-border: hsl(210, 15%, 90%);
  
  --text-dark: hsl(217, 30%, 12%);
  --text-light: hsl(0, 0%, 98%);
  --text-muted: hsl(215, 12%, 55%);
  --text-muted-dark: hsl(215, 12%, 70%);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-round: 50%;

  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 15px hsla(26, 90%, 50%, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================
   Layout & Container Utilities
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bg-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(26, 90%, 50%, 0.5);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--light-border);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================
   Header & Announcement Bar
   ========================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--secondary) 0%, hsl(215, 25%, 8%) 100%);
  color: var(--text-light);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-border);
}

.announcement-text {
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-text::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
  box-shadow: 0 0 8px var(--primary);
}

.lang-selector select {
  background-color: var(--dark-surface);
  color: var(--text-light);
  border: 1px solid var(--dark-border);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}

.lang-selector select:focus {
  border-color: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  padding: 16px 0;
  transition: var(--transition-normal);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: var(--transition-normal);
}

.logo-img:hover {
  transform: scale(1.03);
}

.footer-logo {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  max-width: 220px;
  transition: var(--transition-normal);
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu ul {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  padding: 80px 0 100px 0;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, hsla(26, 90%, 50%, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-content .trust-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  margin-bottom: 36px;
  max-width: 600px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Hero Trust Row */
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--dark-border);
  padding-top: 32px;
}

.trust-marker {
  display: flex;
  flex-direction: column;
}

.trust-marker .number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-marker .label {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

/* Hero Visual Frame */
.hero-visual {
  z-index: 2;
}

.visual-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
  aspect-ratio: 3 / 2; /* 3:2 aspect ratio matches physical cover image */
  background-color: var(--dark-surface);
}

.main-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.visual-wrapper:hover .main-hero-image {
  transform: scale(1.03);
}

.visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(19, 21, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.visual-badge .badge-title {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.visual-badge .badge-text {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  margin-top: 2px;
}

/* ==========================================
   Stats Strip Section
   ========================================== */
.stats-strip {
  background-color: var(--light-surface);
  border-bottom: 1px solid var(--light-border);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat-card {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background-color: var(--light-border);
}

/* ==========================================
   Product Catalog
   ========================================== */
.catalog {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 24px;
}

.section-header h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

.catalog-filters {
  display: flex;
  gap: 12px;
}

.filter-btn {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  color: var(--text-dark);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

/* Products Grid & Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.product-card {
  background-color: var(--light-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: hsla(26, 90%, 50%, 0.25);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.product-img-wrapper {
  position: relative;
  padding-bottom: 95%; /* Square aspect ratio to fit full machine heights */
  background-color: #ffffff; /* Clean white backdrop for transparent photos */
  overflow: hidden;
  border-bottom: 1px solid var(--light-border);
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure the entire machine fits inside the frame */
  padding: 16px; /* Prevent the hopper and wheels from hitting edges */
  transition: var(--transition-slow);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.03); /* Subtle scale up for clean zoom */
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Specs Strip */
.product-specs {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  border-bottom: 1px dashed var(--light-border);
  padding: 6px 0;
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-row:first-child {
  padding-top: 0;
}

.spec-label {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.product-actions {
  display: flex;
  margin-top: auto;
  width: 100%;
}

/* ==========================================
   Excellence (Comparison / Details)
   ========================================== */
.excellence {
  padding: 100px 0;
  background-color: var(--light-surface);
  border-top: 1px solid var(--light-border);
}

.section-title {
  margin-bottom: 64px;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.tech-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.tech-card {
  padding: 36px 28px;
  background-color: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.tech-card:hover {
  background-color: var(--light-surface);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tech-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: hsla(26, 90%, 50%, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tech-icon {
  width: 28px;
  height: 28px;
}

.tech-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.tech-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   Manufacturing Excellence Section
   ========================================== */
.mfg-excellence {
  padding: 100px 0;
}

.mfg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mfg-visual .visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
}

.mfg-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.mfg-visual .caption {
  padding: 14px 20px;
  background-color: var(--dark-surface);
  color: var(--text-muted-dark);
  font-size: 0.8rem;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}

.mfg-content h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.mfg-content .lead-text {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 500;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

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

.badge-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary);
}

.feature-item h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-light);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* ==========================================
   Dealer Network & B2B Section
   ========================================== */
.dealership {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.dealership-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
}

.dealership-info .tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.dealership-info h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dealership-info .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.why-dealer {
  margin-bottom: 40px;
}

.why-dealer h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.why-dealer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-dealer li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}

.why-dealer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.map-mockup {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsla(26, 90%, 50%, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
  display: inline-block;
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px var(--primary); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

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

/* Form Styles */
/* Dealership Contact & Onboarding Card */
.dealership-contact-wrapper {
  background-color: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.dealership-contact-wrapper h3 {
  font-size: 1.65rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.dealer-contact-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.dealer-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.dealer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  border: 1.5px solid transparent;
}

.icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.dealer-btn-whatsapp {
  background-color: hsl(142, 70%, 45%);
  color: white;
  border-color: hsl(142, 70%, 48%);
  box-shadow: 0 4px 14px hsla(142, 70%, 45%, 0.25);
}

.dealer-btn-whatsapp:hover {
  background-color: hsl(142, 75%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(142, 70%, 45%, 0.35);
}

.dealer-btn-call {
  background-color: var(--secondary);
  color: white;
  border-color: var(--dark-border);
}

.dealer-btn-call:hover {
  background-color: hsl(215, 20%, 10%);
  transform: translateY(-2px);
}

.dealer-btn-email {
  background-color: transparent;
  border-color: var(--light-border);
  color: var(--text-dark);
}

.dealer-btn-email:hover {
  background-color: var(--light-bg);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.onboarding-steps {
  border-top: 1px solid var(--light-border);
  padding-top: 28px;
}

.onboarding-steps h4 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background-color: hsla(26, 90%, 50%, 0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px hsla(26, 90%, 50%, 0.15);
}

.step-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
  background-color: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px hsla(26, 90%, 50%, 0.1);
}

.success-message {
  background-color: hsl(145, 80%, 95%);
  color: hsl(145, 80%, 25%);
  border: 1px solid hsl(145, 85%, 85%);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
}

/* ==========================================
   Footer Section
   ========================================== */
.footer {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 80px 0 0 0;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-company h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.company-links {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.company-links a {
  color: white;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}

.company-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.social-links a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-details h4 {
  font-size: 1.15rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-details h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-details p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-details strong {
  color: white;
}

.footer-details a {
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-details a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-map .map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  background-color: hsl(215, 25%, 8%);
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  border-top: 1px solid var(--dark-border);
}

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

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: hsl(142, 70%, 45%);
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  border: 1px solid hsl(142, 70%, 50%);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-btn:hover {
  background-color: hsl(142, 75%, 40%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Modals
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(19, 21, 23, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background-color: var(--light-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  padding: 40px;
  width: 100%;
  max-width: 550px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-enter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 12px;
}

.modal-selected-product {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero-container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-row {
    max-width: 550px;
    margin: 0 auto;
  }



  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-card {
    flex: 1 1 40%;
  }

  .stat-divider {
    display: none;
  }

  .mfg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mfg-image {
    height: 350px;
  }

  .dealership-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-map {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu */
  .nav-toggle {
    display: block;
    z-index: 101;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--light-surface);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px 32px;
    gap: 40px;
    transition: var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.15rem;
    display: block;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  /* Hamburger menu animation */
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
  }

  /* Structural adjustments */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .catalog-filters {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .filter-btn {
    white-space: nowrap;
    padding: 8px 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-map {
    grid-column: span 1;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .modal-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================
   About Us & Brochure Gallery Section
   ========================================== */
.about-us {
  padding: 100px 0;
  background-color: var(--light-surface);
  border-bottom: 1px solid var(--light-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-brand-card {
  background-color: var(--dark-bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-brand-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, hsla(26, 90%, 50%, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.brand-logo-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-est {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.brand-name {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted-dark);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.brand-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.brand-tags .dot {
  width: 4px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50%;
}

.brand-badge-made {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 30px;
  color: white;
  font-size: 0.85rem;
}

.about-text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-text-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* Brochure Gallery */
.brochure-gallery {
  border-top: 1px solid var(--light-border);
  padding-top: 60px;
}

.brochure-gallery h3 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.brochure-gallery .subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.gallery-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 4px 30px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--light-border);
}

.gallery-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll-container::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: var(--radius-sm);
}

.brochure-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--light-surface);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
}

.brochure-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.brochure-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-bottom: 1.5px solid var(--light-border);
}

.brochure-label {
  padding: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-brand-card {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-text-content h2 {
    font-size: 2rem;
  }

  .gallery-scroll-container {
    gap: 16px;
  }

  .brochure-card {
    flex: 0 0 240px;
  }

  .brochure-img {
    height: 320px;
  }
}






