/* CSS Variables & Theme Core */
:root {
  --base-dark: #1e293b; /* Deep Industrial Slate */
  --base-dark-rgb: 30, 41, 59;
  --accent-orange: #ea580c; /* High-Velocity Safety Orange */
  --accent-orange-hover: #c2410c;
  --cooling-blue: #0ea5e9; /* Cool Electric Blue */
  --cooling-blue-hover: #0284c7;
  --surface-light: #f8fafc; /* Metallic silver-gray panel */
  --text-main: #0f172a; /* Sharp contrast text */
  --text-muted: #64748b;
  --border-color: #cbd5e1;
  
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-speed: 0.3s;
  --transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--base-dark);
}

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

ul {
  list-style: none;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--surface-light);
}
::-webkit-scrollbar-thumb {
  background: var(--base-dark);
  border-radius: 5px;
  border: 2px solid var(--surface-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* Reusable Utility Classes */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-headings);
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-bezier);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 8px;
}

.btn-orange {
  background-color: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-orange:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
}

.btn-blue {
  background-color: var(--cooling-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(14, 165, 229, 0.3);
}

.btn-blue:hover {
  background-color: var(--cooling-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 165, 229, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--base-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(234, 88, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
  }
}

@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes borderSpark {
  0%, 100% { border-color: var(--cooling-blue); }
  50% { border-color: var(--accent-orange); }
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes checkmarkPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.pulse-animation {
  animation: pulseGlow 2s infinite ease-in-out;
}

.pulse-dot {
  animation: dotPulse 1.5s infinite ease-in-out;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}


/* 1. Sticky Navigation & Utility Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(30, 41, 59, 0.95);
  border-bottom: 3px solid var(--cooling-blue);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
  transition: border-color var(--transition-speed);
}

header.glow-orange {
  border-bottom-color: var(--accent-orange);
}

.utility-bar {
  background-color: #0f172a;
  color: #ffffff;
  padding: 0.35rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.utility-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #cbd5e1;
  white-space: nowrap;
  flex-shrink: 0;
}

.utility-item svg {
  width: 14px;
  height: 14px;
  fill: var(--cooling-blue);
  flex-shrink: 0;
}

.utility-right {
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

/* Dedicated Top Business Ownership Disclosure Bar */
.top-franchise-disclosure-bar {
  background-color: #f1f5f9;
  border-bottom: 1px solid #cbd5e1;
  padding: 8px 16px;
  text-align: center;
  font-size: 0.83rem;
  color: #334155;
  line-height: 1.4;
}

.top-franchise-disclosure-bar .disclosure-tag {
  color: var(--cooling-blue);
  font-weight: 700;
  margin-right: 4px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo-badge {
  background: linear-gradient(135deg, var(--accent-orange), #b45309);
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-text {
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}

.logo-text span {
  color: var(--cooling-blue);
}

.logo-sub {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--border-color);
  font-weight: 400;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: var(--surface-light);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cooling-blue);
  transition: width var(--transition-speed) var(--transition-bezier);
}

.nav-link:hover {
  color: var(--cooling-blue);
}

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

.nav-cta {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
}

/* Mobile Hamburger Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: transform var(--transition-speed), opacity var(--transition-speed);
}

/* 2. Impact Hero Zone */
.hero-section {
  background: radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.15) 0%, rgba(30, 41, 59, 0.98) 70%),
              linear-gradient(rgba(30, 41, 59, 0.95), rgba(30, 41, 59, 0.95)),
              url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2h-4c-1 0-2 1-2 2s1 2 2 2h4c3 0 5-2 5-5v-3c1-1 2-2 4-2s3 1 4 2v3c0 3-2 5-5 5h-4c-3 0-5-2-5-5v-1c-1-1-2-2-4-2h-3c-1 0-2-1-2-2s1-2 2-2h3c3 0 5 2 5 5v1h1c1 0 2-1 2-2v-4c0-3 2-5 5-5h3c1 0 2-1 2-2s-1-2-2-2h-3zm-36 0c-2 0-3 1-4 2v4c0 1-1 2-2 2h-4c-1 0-2 1-2 2s1 2 2 2h4c3 0 5-2 5-5v-3c1-1 2-2 4-2s3 1 4 2v3c0 3-2 5-5 5h-4c-3 0-5-2-5-5v-1c-1-1-2-2-4-2h-3c-1 0-2-1-2-2s1-2 2-2h3c3 0 5 2 5 5v1h1c1 0 2-1 2-2v-4c0-3 2-5 5-5h3c1 0 2-1 2-2s-1-2-2-2h-3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  color: #ffffff;
  padding: 6rem 0 5rem 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hero-content h1 span.highlight-orange {
  color: var(--accent-orange);
  display: inline-block;
}

.hero-content h1 span.highlight-blue {
  color: var(--cooling-blue);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.brand-highlight {
  color: #ffffff;
  font-weight: 700;
  background: rgba(249, 115, 22, 0.15);
  border-bottom: 2px solid var(--accent-orange);
  padding: 0 4px;
  border-radius: 2px;
  display: inline-block;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.brand-highlight:hover {
  background: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-1px);
  cursor: default;
}

.hero-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-tag {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--border-color);
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--cooling-blue);
}

/* Interactive Parts Search Simulation Box */
.search-simulator {
  background: rgba(15, 23, 42, 0.7);
  border: 2px solid var(--cooling-blue);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.search-simulator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cooling-blue), var(--accent-orange));
}

.simulator-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-family: var(--font-headings);
}

.simulator-title svg {
  width: 20px;
  height: 20px;
  fill: var(--cooling-blue);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.sim-field-full {
  grid-column: span 2;
}

@media (max-width: 576px) {
  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sim-field-full {
    grid-column: span 1 !important;
  }
}

@media (max-width: 480px) {
  .simulator-grid label[for="sim-dont-know"] {
    white-space: normal !important;
  }
}

.simulator-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.simulator-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #e2e8f0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.simulator-field select, .simulator-field input[type="text"] {
  width: 100%;
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid #475569;
  color: #ffffff;
  padding: 0.7rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-speed), opacity var(--transition-speed);
  outline: none;
}

.simulator-field select {
  cursor: pointer;
}

.simulator-field select:focus, .simulator-field input[type="text"]:focus {
  border-color: var(--cooling-blue);
}

/* Hide placeholders instantly when focused globally */
input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent !important;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent !important;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent !important;
}

.simulator-field input[type="text"]:disabled {
  background-color: rgba(15, 23, 42, 0.5);
  border-color: #334155;
  color: #64748b;
  cursor: not-allowed;
}

.simulator-btn {
  width: 100%;
  margin-top: 10px;
  position: relative;
}

/* Gear loading effect */
.simulator-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-orange-hover);
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-headings);
  color: #ffffff;
}

.simulator-loader svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  animation: rotateGear 1.5s linear infinite;
}

/* 3. Value Metric Counter Badges */
.metrics-section {
  background-color: var(--surface-light);
  padding: 4rem 0;
  position: relative;
  margin-top: -3rem;
  z-index: 10;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.metric-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 15px rgba(30, 41, 59, 0.05);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--cooling-blue);
  transition: all var(--transition-speed) var(--transition-bezier);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(30, 41, 59, 0.1);
  border-left-color: var(--accent-orange);
  border-top: 1px solid rgba(234, 88, 12, 0.2);
  border-right: 1px solid rgba(234, 88, 12, 0.2);
  border-bottom: 1px solid rgba(234, 88, 12, 0.2);
}

.metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.metric-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(14, 165, 233, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-speed);
}

.metric-card:hover .metric-icon-box {
  background-color: rgba(234, 88, 12, 0.1);
}

.metric-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--cooling-blue);
  transition: fill var(--transition-speed);
}

.metric-card:hover .metric-icon-box svg {
  fill: var(--accent-orange);
}

.metric-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--base-dark);
  font-family: var(--font-headings);
}

.metric-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--base-dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.metric-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Section Headers */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tagline {
  color: var(--cooling-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--base-dark);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--cooling-blue), var(--accent-orange));
}

/* 4. Product Category Showroom */
.showroom-section {
  background-color: #ffffff;
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.carousel-card {
  background-color: var(--surface-light);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-speed) var(--transition-bezier), transform var(--transition-speed) var(--transition-bezier);
}

.carousel-card:hover {
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.08);
  transform: translateY(-4px);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #0f172a;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-card:hover .product-img {
  transform: scale(1.06);
}

.product-img-wrapper:hover .product-img {
  transform: scale(1.4);
  cursor: zoom-in;
}

.product-img-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-badge {
  background-color: var(--base-dark);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.product-badge.orange-badge {
  background-color: var(--accent-orange);
}

.product-badge.blue-badge {
  background-color: var(--cooling-blue);
}

.product-details {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--base-dark);
}

.product-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.product-specs {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 12px;
  font-size: 0.8rem;
  margin-bottom: 8px;
  align-items: start;
}

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

.spec-val {
  text-align: left;
  color: var(--base-dark);
  font-weight: 700;
  line-height: 1.3;
}

.spec-val-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-val-list-item {
  color: var(--base-dark);
  font-weight: 700;
  font-size: 0.8rem;
  position: relative;
  padding-left: 12px;
  line-height: 1.3;
}

.spec-val-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.product-price {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.product-price span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-orange);
  font-family: var(--font-headings);
  line-height: 1.2;
}

/* 5. Audience Split Panel */
.audience-section {
  background-color: var(--base-dark);
  color: #ffffff;
  padding: 1.8rem 0;
  position: relative;
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.audience-panel {
  padding: 1.5rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #1e293b;
}

.audience-panel.retail-panel {
  border-right: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
}

.audience-panel.commercial-panel {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(10, 17, 30, 0.98) 100%);
}

.audience-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.audience-panel.retail-panel::after {
  background-color: var(--cooling-blue);
}

.audience-panel.commercial-panel::after {
  background-color: var(--accent-orange);
}

.audience-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.retail-panel .audience-icon {
  background-color: rgba(14, 165, 233, 0.1);
}

.commercial-panel .audience-icon {
  background-color: rgba(234, 88, 12, 0.1);
}

.retail-panel .audience-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--cooling-blue);
}

.commercial-panel .audience-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-orange);
}

.audience-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.audience-tagline {
  font-size: 0.95rem;
  color: var(--cooling-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.commercial-panel .audience-tagline {
  color: var(--accent-orange);
}

.audience-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.audience-features {
  margin-bottom: 2.5rem;
}

.audience-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.audience-feature-item svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.retail-panel .audience-feature-item svg {
  fill: var(--cooling-blue);
}

.commercial-panel .audience-feature-item svg {
  fill: var(--accent-orange);
}

.audience-action {
  width: 100%;
}

/* 6. High-Conversion Live Validation Inquiry Form */
.inquiry-section {
  background-color: var(--surface-light);
  padding: 5rem 0;
  position: relative;
}

.form-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.08);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.form-header {
  background-color: var(--base-dark);
  color: #ffffff;
  padding: 2.2rem 2.5rem;
  border-bottom: 4px solid var(--cooling-blue);
  position: relative;
}

.form-header h3 {
  color: #ffffff;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 0.3rem;
}

.form-header p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.form-body {
  padding: 2.5rem;
}

/* Account Type Switcher Toggle */
.account-toggle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.8rem;
}

.toggle-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--base-dark);
  letter-spacing: 0.5px;
}

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--surface-light);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 8px;
}

.toggle-btn {
  background: none;
  border: none;
  padding: 10px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-speed);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.toggle-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.toggle-btn.active {
  background-color: var(--cooling-blue);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
}

.toggle-btn.active.orange-active {
  background-color: var(--accent-orange);
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.2);
}

/* Form Fields Styling */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 1.8rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--base-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required-field::after {
  content: " *";
  color: #ef4444;
  font-weight: bold;
}

.required-note {
  font-size: 0.8rem;
  color: var(--base-dark);
  background-color: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #ef4444;
  padding: 0.5rem 0.8rem;
  margin-bottom: 1.2rem;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  display: block;
  box-sizing: border-box;
}

.required-note-asterisk {
  color: #ef4444;
  font-weight: bold;
  margin-right: 3px;
}

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

.input-wrapper svg {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: fill var(--transition-speed);
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  background-color: var(--surface-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-speed);
  outline: none;
}

.form-control::placeholder {
  color: #94a3b8;
}

/* Interactive Focus States */
.form-group:focus-within label {
  color: var(--accent-orange);
}

.form-group:focus-within .input-wrapper svg {
  fill: var(--accent-orange);
}

.form-group:focus-within .form-control {
  border-color: var(--accent-orange);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

/* Error Validation States */
.form-group.has-error .form-control {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-group.has-error label {
  color: #ef4444;
}

.form-error-msg {
  font-size: 0.75rem;
  color: #ef4444;
  font-weight: 500;
  margin-top: 2px;
  display: none;
}

.form-group.has-error .form-error-msg {
  display: block;
}

/* Custom JS Interceptor Confirmation Screen (Overlay inside card) */
.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 41, 59, 0.98);
  z-index: 100;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #ffffff;
}

.quote-success-content {
  width: 100%;
  max-width: 550px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-checkmark-box {
  width: 80px;
  height: 80px;
  background-color: rgba(234, 88, 12, 0.15);
  border: 3px solid var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: checkmarkPop 0.5s ease-out forwards;
}

.success-checkmark-box svg {
  width: 45px;
  height: 45px;
  fill: var(--accent-orange);
}

.quote-overlay-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.quote-overlay-subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Progress steps simulating live dispatch transmission */
.dispatch-steps {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: left;
  margin-bottom: 2rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--cooling-blue);
}

.dispatch-line {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.dispatch-line.done {
  color: #10b981;
}

.dispatch-line.pending {
  color: #64748b;
}

/* Structured Gmail payload text box */
.payload-box-wrapper {
  width: 100%;
  margin-bottom: 2rem;
  text-align: left;
}

.payload-box-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.payload-box {
  width: 100%;
  background-color: #0f172a;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.82rem;
  color: #e2e8f0;
  line-height: 1.4;
  white-space: pre-wrap;
  max-height: 150px;
  overflow-y: auto;
  border-left: 4px solid var(--cooling-blue);
}

.overlay-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 1rem;
}

.overlay-actions button, .overlay-actions a {
  width: 100%;
  padding: 0.8rem 1rem;
}

/* 7. Local Structural Footer */
footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--base-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 4rem;
}

.footer-info-col h4 {
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-info-col p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.contact-detail-item svg {
  width: 18px;
  height: 18px;
  fill: var(--cooling-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-item a:hover {
  color: var(--cooling-blue);
}

/* Hours Column */
.footer-hours-col h4 {
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
  color: #cbd5e1;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 8px 0;
}

.hours-day {
  font-weight: 600;
}

.hours-time {
  text-align: right;
}

.hours-hotshot {
  color: var(--accent-orange);
  font-weight: 700;
}

/* Local Map Directions Layout Placeholder */
.footer-map-col h4 {
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.map-placeholder {
  width: 100%;
  height: 180px;
  background-color: #1e293b;
  border-radius: 8px;
  border: 1px solid #334155;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-speed);
}

.map-placeholder:hover {
  border-color: var(--cooling-blue);
}

/* Custom visual SVG styled roadmap mockup */
.map-vector {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.25;
  stroke: #64748b;
  stroke-width: 2;
}

.map-pin {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-pin svg {
  width: 36px;
  height: 36px;
  fill: var(--accent-orange);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.map-pin-pulse {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulseGlow 1.8s infinite;
  top: 15px;
  z-index: -1;
}

.map-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 6px;
  background-color: rgba(15, 23, 42, 0.85);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--cooling-blue);
}

.map-directions-btn {
  position: absolute;
  bottom: 10px;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Sub Footer Copyright Bar */
.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.sub-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
}

.sub-footer-links a {
  white-space: nowrap;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sub-footer-links a:hover {
  color: var(--accent-orange);
}

/* Accessibility Keyboard Focus Styles */
:focus-visible {
  outline: 3px solid var(--accent-orange) !important;
  outline-offset: 2px !important;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background-color: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 16px;
  z-index: 2500;
  display: none;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(10px);
  animation: cookieSlideUp 0.4s ease-out;
}

.cookie-banner-content p {
  color: #e2e8f0;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner-actions .btn-small {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.btn-optout {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-optout:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 576px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* Legal Policy Modal scroll content overrides */
.legal-modal-scrollable {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.legal-modal-scrollable h4 {
  font-size: 1.05rem;
  color: var(--base-dark);
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.legal-modal-scrollable p {
  margin-bottom: 0.8rem;
}

.legal-modal-scrollable ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}

.legal-modal-scrollable li {
  margin-bottom: 0.4rem;
  list-style-type: disc;
}

.legal-optout-box {
  background-color: rgba(241, 245, 249, 0.6);
  border: 1px dashed var(--border-color);
  padding: 1rem;
  border-radius: 6px;
  margin: 1.2rem 0;
}

.legal-optout-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--base-dark);
  cursor: pointer;
}

.legal-optout-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* 5.8 FAQ Accordion Section */
/* 5.8 FAQ Floating persistent drawer & Accordion */
.faq-floating-trigger {
  position: fixed;
  left: 0;
  right: auto;
  top: 35%;
  transform: translateY(-50%);
  background-color: var(--base-dark);
  color: #ffffff;
  border: 1px solid var(--border-color);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 0.6rem;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 2px 0 15px rgba(0,0,0,0.15);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.faq-floating-trigger:hover {
  background-color: var(--cooling-blue);
  color: #ffffff;
  padding-left: 0.9rem;
  padding-right: 0.6rem;
}

.faq-floating-trigger span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.faq-floating-trigger svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.floating-call-trigger {
  position: fixed;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  background-color: #10b981;
  color: #ffffff;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 1.25rem 0.6rem;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: -2px 0 15px rgba(0,0,0,0.15);
  transition: all var(--transition-speed) var(--transition-bezier);
  text-decoration: none;
  border-left: 3px solid #059669;
}

.floating-call-trigger:hover {
  background-color: #059669;
  color: #ffffff;
  padding-right: 0.9rem;
  padding-left: 0.6rem;
}

.floating-call-trigger span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.floating-call-trigger svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .faq-floating-trigger {
    padding: 1rem 0.5rem;
  }
  .floating-call-trigger {
    padding: 1rem 0.5rem;
  }
}

.faq-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 460px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 5px 0 25px rgba(15,23,42,0.15);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition-bezier);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
}

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

.faq-drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.faq-search-wrapper {
  position: relative;
  width: 100%;
}

.faq-search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--surface-light);
  transition: border-color var(--transition-speed), background-color var(--transition-speed);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--cooling-blue);
  background-color: #ffffff;
}

.faq-search-wrapper svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  pointer-events: none;
}

.faq-support-card {
  background-color: var(--surface-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  border-left: 4px solid var(--cooling-blue);
  margin-top: 1rem;
}

.faq-support-card h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  color: var(--base-dark);
  margin-bottom: 0.3rem;
}

.faq-support-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.faq-support-card .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--base-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-speed);
}

.faq-question:hover {
  color: var(--cooling-blue);
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--base-dark);
  transition: transform 0.3s var(--transition-bezier), background-color var(--transition-speed);
}

.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
  background-color: var(--cooling-blue);
}

.faq-item.active .faq-question {
  color: var(--cooling-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--transition-bezier);
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    margin: 0 auto 2rem auto;
  }
  .hero-tags {
    justify-content: center;
  }
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .metric-card {
    padding: 1.5rem;
  }
  .metric-number {
    font-size: 1.5rem;
  }
  .metric-title {
    font-size: 1rem;
  }
  .showroom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 1150px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 110px; /* Below utility + nav */
    left: -100%;
    width: 100%;
    height: calc(100vh - 110px);
    background-color: rgba(30, 41, 59, 0.98);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .nav-link {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* Mobile Input Font Size Fix (Prevents iOS Safari auto-zoom) */
  .simulator-field select,
  .simulator-field input[type="text"],
  .form-control,
  select.form-control,
  input[type="text"].form-control,
  input[type="tel"].form-control,
  input[type="email"].form-control {
    font-size: 16px !important;
  }

  /* Optimize Touch Targets & Prevent Tab Wrapping on Mobile Devices */
  .showroom-tabs-container {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .showroom-tabs-container::-webkit-scrollbar {
    display: none;
  }
  .showroom-tabs {
    flex-wrap: nowrap;
    display: inline-flex;
  }
  .tab-btn {
    padding: 0.8rem 1.4rem;
    min-height: 44px;
    white-space: nowrap;
  }

  .drawer-close-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-control {
    width: 44px;
    height: 44px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metrics-section {
    margin-top: 0;
  }

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

  .audience-split {
    grid-template-columns: 1fr;
  }
  
  .audience-panel.retail-panel {
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  }

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

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

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

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

  .sub-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Showroom Tabs Styling */
.showroom-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.showroom-tabs {
  display: inline-flex;
  background-color: var(--base-dark);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  background: transparent;
  color: #94a3b8;
  border: none;
  padding: 0.6rem 1.6rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.tab-btn:hover {
  color: #ffffff;
}

.tab-btn.active {
  background-color: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
}

/* Customer Reviews / Testimonials Section */
.reviews-section {
  background-color: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  position: relative;
  margin-top: 2rem;
}

/* Blur/Fade effect overlays on left and right edges */
.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 20%, rgba(255, 255, 255, 0));
}
.reviews-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 20%, rgba(255, 255, 255, 0));
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  gap: 25px;
  animation: scrollMarquee 35s linear infinite;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12.5px));
  }
}

.review-card {
  width: 380px;
  flex-shrink: 0;
  background-color: var(--surface-light);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--cooling-blue);
  transition: all var(--transition-speed) var(--transition-bezier);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.08);
  border-left-color: var(--accent-orange);
}

.review-rating {
  color: var(--accent-orange);
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.review-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 700;
  color: var(--base-dark);
  font-size: 0.95rem;
}

.review-company {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
}

.review-verified svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Google Reviews Summary Banner */
.google-reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: var(--container-max-width);
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.summary-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.google-g-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0.6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-score {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-headings);
  color: var(--text-main);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars svg {
  width: 20px;
  height: 20px;
  fill: #f59e0b; /* Gold star color */
}

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

.summary-actions {
  display: flex;
  gap: 12px;
}

/* Review Card Avatar and Google Icon */
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0.8rem;
}

.review-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-headings);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
}

.google-review-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.google-review-badge svg {
  width: 12px;
  height: 12px;
}

.review-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 8px;
}

@media (max-width: 768px) {
  .google-reviews-summary {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .summary-meta {
    flex-direction: column;
    gap: 1rem;
  }
  .summary-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Quick Quote Drawer Styles */
.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  height: 100vh;
  height: 100dvh;
  background-color: #ffffff;
  box-shadow: -5px 0 35px rgba(15, 23, 42, 0.25);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
}

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

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  background-color: var(--base-dark);
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--cooling-blue);
  position: sticky;
  top: 0;
  z-index: 10;
}

.drawer-header h3 {
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 0;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-speed);
}

.drawer-close-btn:hover {
  color: var(--accent-orange);
}

.drawer-close-btn svg {
  fill: currentColor;
}

.quote-drawer .form-wrapper {
  border: none !important;
  box-shadow: none !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  background: transparent !important;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px;
}

.quote-drawer .form-body {
  padding: 1.5rem !important;
}

/* Floating Action Trigger Button (FAB) */
.floating-quote-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-orange);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
  z-index: 1500;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all var(--transition-speed) var(--transition-bezier);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-quote-trigger svg {
  fill: currentColor;
}

.floating-quote-trigger:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
}

.floating-quote-trigger.trigger-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-support-card {
    margin-top: 1.5rem;
  }

/* Mobile responsive drawer adjustment */
@media (max-width: 480px) {
  .quote-drawer {
    width: 100vw;
  }
  .faq-drawer {
    width: 100vw;
  }
  .floating-quote-trigger {
    bottom: 20px;
    right: 20px;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .overlay-actions {
    grid-template-columns: 1fr;
  }
}

/* Language Switcher Toggle Styles */
.language-switcher {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}

.lang-radio-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.lang-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.lang-radio-label span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #94a3b8;
  transition: all var(--transition-speed);
  text-transform: none;
  line-height: 1;
}

.lang-radio-label input[type="radio"]:checked + span {
  background-color: var(--cooling-blue);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.lang-radio-label:hover span {
  color: #ffffff;
}

.lang-divider {
  display: none;
}

.mobile-lang-switcher {
  display: none !important;
}

@media (max-width: 1300px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .nav-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1150px) {
  .mobile-lang-switcher {
    display: flex !important;
    order: -1;
    margin-bottom: 2.5rem;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.05);
  }
  .mobile-lang-switcher .lang-radio-label span {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .desktop-lang-switcher {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .reviews-section,
  .audience-section,
  .nav-menu a[href="#audience-split"] {
    display: none !important;
  }
}

/* Product Detail Lightbox Modal Styles */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.product-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.product-modal-container {
  background-color: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 1100px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-modal-overlay.active .product-modal-container {
  transform: scale(1);
}

.product-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(15, 23, 42, 0.5);
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
}

.product-modal-close:hover {
  background-color: rgba(15, 23, 42, 0.8);
  transform: scale(1.05);
}

.product-modal-content-simplified {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.product-modal-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  color: var(--base-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.product-modal-img-wrapper-simplified {
  background-color: #0f172a;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-modal-details-simplified {
  margin-top: 1.5rem;
}

.product-modal-desc {
  font-family: var(--font-body);
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .product-modal-content-simplified {
    padding: 1.5rem;
  }
  .product-modal-img-wrapper-simplified {
    height: 45vh;
    min-height: 250px;
    max-height: 340px;
  }
  .product-modal-title {
    font-size: 1.3rem;
  }
  .product-modal-desc {
    font-size: 0.95rem;
  }
}
