/* ============================================
   ALLISON AIR COMFORT SOLUTIONS
   Color Theme: Dark + Golden Amber
   with Fire & Ice accents
   ============================================ */

/* CSS Variables */
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #999999;
  --gold: #c8952e;
  --gold-light: #e0ad3e;
  --gold-dark: #a07520;
  --fire: #e85d26;
  --fire-light: #ff7b3a;
  --fire-dark: #c44515;
  --ice: #3ba4d9;
  --ice-light: #5bc0f0;
  --ice-dark: #2681ad;
  --border-color: #2a2a2a;
  --gradient-fire: linear-gradient(135deg, #e85d26, #ff9a3c);
  --gradient-ice: linear-gradient(135deg, #2681ad, #5bc0f0);
  --gradient-gold: linear-gradient(135deg, #a07520, #e0ad3e);
  --gradient-hero: linear-gradient(135deg, rgba(232, 93, 38, 0.15), rgba(59, 164, 217, 0.15));
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(200, 149, 46, 0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--gold-light);
  transition: var(--transition);
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg-darker);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--gold-light);
}

.top-bar .license {
  color: var(--text-muted);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 2px solid var(--gold-dark);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .company-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-logo-text .company-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(200, 149, 46, 0.15);
  color: var(--gold-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.7em;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 0.85rem;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: rgba(200, 149, 46, 0.1);
  color: var(--gold-light);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero h1 .fire-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .ice-text {
  background: var(--gradient-ice);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero .tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--bg-dark);
}

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

.btn-outline:hover {
  background: rgba(200, 149, 46, 0.15);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn-fire {
  background: var(--gradient-fire);
  color: var(--text-white);
}

.btn-fire:hover {
  box-shadow: 0 4px 20px rgba(232, 93, 38, 0.4);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-ice {
  background: var(--gradient-ice);
  color: var(--text-white);
}

.btn-ice:hover {
  box-shadow: 0 4px 20px rgba(59, 164, 217, 0.4);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-darker);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header .accent-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 15px auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-icon.fire {
  background: rgba(232, 93, 38, 0.15);
  color: var(--fire);
}

.service-icon.ice {
  background: rgba(59, 164, 217, 0.15);
  color: var(--ice);
}

.service-icon.gold {
  background: rgba(200, 149, 46, 0.15);
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ===== FEATURE BOXES (MFG PAGES) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: var(--transition);
  overflow: hidden;
}

.feature-box:hover {
  border-color: var(--gold-dark);
}

.feature-box .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-box h3 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 5px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.feature-box h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 5px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ===== BRANDS ===== */
.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.brand-logo-link {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  min-width: 200px;
}

.brand-logo-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.brand-logo-link span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-logo-link .brand-logo-img {
  height: 50px;
  width: auto;
  max-width: 160px;
}

.brand-logo-link .brand-logo-svg {
  height: 50px;
  width: auto;
  max-width: 160px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-card blockquote {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card .author {
  color: var(--gold-light);
  font-weight: 600;
}

.testimonial-card .source {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(232, 93, 38, 0.1), rgba(59, 164, 217, 0.1));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta-banner .phone-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--gold-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 149, 46, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), var(--bg-dark));
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-header .breadcrumb a {
  color: var(--gold);
}

/* ===== CONTENT LAYOUT ===== */
.content-section {
  padding: 60px 0;
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-white);
}

.content-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.content-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.content-text ul {
  margin-bottom: 20px;
}

.content-text ul li {
  padding: 6px 0;
  padding-left: 20px;
  color: var(--text-muted);
  position: relative;
}

.content-text ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.content-image {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image .placeholder-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-image.has-photo {
  padding: 0;
  overflow: hidden;
}

/* ===== GALLERY REAL PHOTOS ===== */
.gallery-item .gallery-img.has-photo {
  opacity: 1;
}

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.photo-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.photo-grid-item:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid-item p {
  padding: 10px 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

/* ===== PRICING TOOL ===== */
.pricing-tool {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-result {
  background: var(--bg-darker);
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  margin-top: 25px;
  display: none;
}

.pricing-result.show {
  display: block;
}

.pricing-result .price-range {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 10px 0;
}

.pricing-result .disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-item .gallery-img {
  width: 100%;
  height: 280px;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
  opacity: 0.3;
  overflow: hidden;
}

.gallery-item .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item .gallery-caption {
  padding: 15px 20px;
}

.gallery-item .gallery-caption h4 {
  color: var(--text-white);
  margin-bottom: 4px;
}

.gallery-item .gallery-caption p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== INFO CARDS (MFG PAGES - TEXT FITTING FIX) ===== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
}

.info-card h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.6;
}

.info-card ul {
  margin-bottom: 20px;
}

.info-card ul li {
  padding: 4px 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.info-card ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ===== TABLE ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  table-layout: fixed;
}

.spec-table th,
.spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.spec-table th {
  background: var(--bg-darker);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.spec-table td {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.spec-table tr:hover td {
  background: rgba(200, 149, 46, 0.05);
}

/* ===== STAT COUNTERS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  text-align: center;
  padding: 40px 0;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== APPOINTMENT CALENDAR ===== */
.appointment-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.time-slot {
  padding: 10px;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
  font-size: 0.9rem;
}

.time-slot:hover,
.time-slot.selected {
  border-color: var(--gold);
  background: rgba(200, 149, 46, 0.15);
  color: var(--gold-light);
}

/* ===== BADGE / TAG ===== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-fire {
  background: rgba(232, 93, 38, 0.15);
  color: var(--fire);
}

.badge-ice {
  background: rgba(59, 164, 217, 0.15);
  color: var(--ice);
}

.badge-gold {
  background: rgba(200, 149, 46, 0.15);
  color: var(--gold);
}

/* Badge styles when used as inline elements */
span.badge-fire,
span.badge-ice,
span.badge-gold {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

span.badge-fire {
  background: rgba(232, 93, 38, 0.15);
  color: var(--fire);
}

span.badge-ice {
  background: rgba(59, 164, 217, 0.15);
  color: var(--ice);
}

span.badge-gold {
  background: rgba(200, 149, 46, 0.15);
  color: var(--gold);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.success-page .checkmark {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-page h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--gold-light);
}

.success-page p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--gold-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding-left: 20px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-grid.reverse {
    direction: ltr;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner .phone-number {
    font-size: 1.4rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-table {
    font-size: 0.8rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .brands-row {
    gap: 20px;
  }

  .brand-logo-link {
    min-width: 150px;
    padding: 20px;
  }
}