/* ============================================
   TAMPA BAY AWNING NETWORK — GLOBAL BASE STYLES
   Version: 1003
   ============================================ */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Variables */
:root {
  --cream: #FAF3E0;
  --orange: #E86A1C;
  --yellow: #F2C94C;
  --chestnut: #8B5A2B;
  --black: #000000;
  --white: #FFFFFF;
}

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--chestnut);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Links */
a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--yellow);
}

/* Buttons */
button,
.btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button:hover,
.btn:hover {
  background-color: var(--chestnut);
}

/* Section Spacing */
section {
  padding: 4rem 1.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.bg-cream { background-color: var(--cream); }
.bg-orange { background-color: var(--orange); }
.bg-yellow { background-color: var(--yellow); }
.bg-chestnut { background-color: var(--chestnut); }
.text-black { color: var(--black); }
.text-chestnut { color: var(--chestnut); }
.text-orange { color: var(--orange); }/* ================================
   Tampa Bay Awning Network
   GLOBAL BASE STYLES
   Version: 1000
   ================================ */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #FAF3E0; /* Cream */
  color: #000000; /* Black */
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #8B5A2B; /* Chestnut Brown */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Links */
a {
  color: #E86A1C; /* Deep Orange */
  text-decoration: none;
}

a:hover {
  color: #F2C94C; /* Golden Yellow */
}

/* Buttons */
button,
.btn {
  background-color: #E86A1C; /* Deep Orange */
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button:hover,
.btn:hover {
  background-color: #8B5A2B; /* Chestnut Brown */
}

/* Section Spacing */
section {
  padding: 3rem 1.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.bg-cream {
  background-color: #FAF3E0;
}

.bg-orange {
  background-color: #E86A1C;
}

.bg-yellow {
  background-color: #F2C94C;
}

.bg-chestnut {
  background-color: #8B5A2B;
}

.text-black {
  color: #000000;
}

.text-chestnut {
  color: #8B5A2B;
}

.text-orange {
  color: #E86A1C;
}
/* ============================================
   SECTION 2 — TYPOGRAPHY + CONTAINERS + GRID
   ============================================ */

/* Typography Scale */
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.3rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

p, li {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Narrow Container (for text-heavy sections) */
.container-narrow {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Layout Grid (Flexible Columns) */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.col-2 {
  flex: 0 0 calc(50% - 2rem);
}

.col-3 {
  flex: 0 0 calc(33.333% - 2rem);
}

.col-4 {
  flex: 0 0 calc(25% - 2rem);
}

/* Centered Content Block */
.center-block {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--chestnut);
  font-size: 2.2rem;
  font-weight: 700;
}

/* Horizontal Divider */
.divider {
  width: 80px;
  height: 4px;
  background-color: var(--orange);
  margin: 1rem auto 2rem auto;
  border-radius: 2px;
}
/* ============================================
   SECTION 3 — NAVIGATION + HEADER + MOBILE MENU
   (Updated for new HTML structure)
   ============================================ */

/* Header Wrapper */
.header {
  width: 100%;
  background-color: var(--cream);
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Header Inner Container */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  max-height: 60px;
}

/* Desktop Navigation */
.nav {
  display: flex;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu > li > a {
  font-weight: 600;
  color: var(--chestnut);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.nav-menu > li > a:hover {
  color: var(--orange);
}

/* Mega Menu Parent */
.has-mega {
  position: relative;
}

/* Mega Menu Panel */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--cream);
  padding: 2rem;
  display: none;
  width: 600px;
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
}

/* Hover Activation */
.has-mega:hover .mega-menu {
  display: flex;
  gap: 2rem;
}

/* Mega Menu Columns */
.mega-column {
  flex: 1;
}

.mega-column h4 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.mega-column a {
  display: block;
  padding: 0.25rem 0;
  color: var(--chestnut);
  font-size: 1rem;
}

.mega-column a:hover {
  color: var(--orange);
}

/* CTA Button in Header */
.header-cta {
  background-color: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.header-cta:hover {
  background-color: var(--chestnut);
}

/* Mobile Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--chestnut);
  transition: 0.3s ease;
}

/* Mobile Navigation Panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--cream);
  padding: 1rem;
  border-top: 2px solid var(--orange);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1.2rem;
  color: var(--chestnut);
  font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================
   SECTION 4 — HERO SECTIONS
   ============================================ */

/* Full-Width Hero Wrapper */
.hero {
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

/* Dark Overlay for Text Readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--white);
}

/* Hero Button Group */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .btn {
  font-size: 1.1rem;
  padding: 0.9rem 1.5rem;
}

/* Hero Variants */
.hero-light {
  background-color: var(--cream);
}

.hero-orange {
  background-color: var(--orange);
}

.hero-chestnut {
  background-color: var(--chestnut);
}
/* ============================================
   SECTION 5 — MULTI-COLUMN SECTIONS + FEATURES
   ============================================ */

/* Generic Content Section */
.content-section {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.content-section .container {
  max-width: 1200px;
}

/* Two-Column Layout (Image + Text) */
.split-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

/* Split Section Image */
.split-section img {
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Split Section Text */
.split-text {
  flex: 1;
  min-width: 280px;
}

.split-text h2 {
  margin-bottom: 1rem;
  color: var(--chestnut);
}

.split-text p {
  margin-bottom: 1.25rem;
}

/* Feature Grid (3 or 4 columns) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.feature-item h3 {
  margin-bottom: 0.75rem;
  color: var(--orange);
}

.feature-item p {
  color: var(--black);
}

/* Icon at Top of Feature Item */
.feature-item img.icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

/* Highlighted Feature (Orange Background) */
.feature-highlight {
  background-color: var(--orange);
  color: var(--white);
}

.feature-highlight h3 {
  color: var(--white);
}

/* Wide Image Banner (Full Width) */
.wide-image-banner {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin: 3rem 0;
}

/* Checklist / Bullet Feature List */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1.1rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}
/* ============================================
   SECTION 6 — CTA BLOCKS + PROMO BANNERS
   ============================================ */

/* CTA Section (Full Width) */
.cta-section {
  width: 100%;
  padding: 3.5rem 1.5rem;
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-section .btn {
  background-color: var(--white);
  color: var(--orange);
  font-size: 1.1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* Yellow Highlight CTA */
.cta-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.cta-yellow h2,
.cta-yellow p {
  color: var(--black);
}

.cta-yellow .btn {
  background-color: var(--chestnut);
  color: var(--white);
}

.cta-yellow .btn:hover {
  background-color: var(--orange);
}

/* Chestnut CTA (High Authority Look) */
.cta-chestnut {
  background-color: var(--chestnut);
  color: var(--white);
}

.cta-chestnut .btn {
  background-color: var(--orange);
  color: var(--white);
}

.cta-chestnut .btn:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* Lead Capture Strip (Horizontal Bar) */
.lead-strip {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 6px;
  margin: 3rem 0;
}

.lead-strip h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.lead-strip p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.lead-strip .btn {
  padding: 0.8rem 1.4rem;
  font-size: 1.05rem;
}

/* Promo Banner (Full Width, Centered) */
.promo-banner {
  width: 100%;
  padding: 2.5rem 1.5rem;
  background-color: var(--yellow);
  color: var(--black);
  text-align: center;
  border-radius: 6px;
  margin: 3rem 0;
}

.promo-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.promo-banner p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.promo-banner .btn {
  background-color: var(--chestnut);
  color: var(--white);
}

.promo-banner .btn:hover {
  background-color: var(--orange);
}
/* ============================================
   SECTION 7 — CARDS + PRICING + COMPARISON
   ============================================ */

/* Generic Card */
.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--orange);
}

.card p {
  margin-bottom: 1rem;
}

/* Card Grid (3 or 4 columns) */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.card-grid .card {
  flex: 1 1 calc(33.333% - 2rem);
}

/* Pricing Block */
.pricing-block {
  background-color: var(--cream);
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-block:hover {
  transform: translateY(-6px);
}

.pricing-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--chestnut);
}

.pricing-block .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.pricing-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.pricing-block ul li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comparison-table th {
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem;
  font-size: 1.2rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  font-size: 1.05rem;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--cream);
}

/* Highlighted Row */
.comparison-table .highlight {
  background-color: var(--yellow);
  font-weight: 700;
}

/* Feature Callout Box */
.callout-box {
  background-color: var(--yellow);
  padding: 2rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin: 2rem 0;
}

.callout-box h3 {
  margin-bottom: 0.75rem;
  color: var(--chestnut);
}

.callout-box p {
  font-size: 1.15rem;
}

/* Chestnut Callout (Authority Style) */
.callout-chestnut {
  background-color: var(--chestnut);
  color: var(--white);
  border-left: 6px solid var(--yellow);
}

.callout-chestnut h3,
.callout-chestnut p {
  color: var(--white);
}
/* ============================================
   SECTION 7 — CARDS + PRICING + COMPARISON
   ============================================ */

/* Generic Card */
.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--orange);
}

.card p {
  margin-bottom: 1rem;
}

/* Card Grid (3 or 4 columns) */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.card-grid .card {
  flex: 1 1 calc(33.333% - 2rem);
}

/* Pricing Block */
.pricing-block {
  background-color: var(--cream);
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-block:hover {
  transform: translateY(-6px);
}

.pricing-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--chestnut);
}

.pricing-block .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.pricing-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.pricing-block ul li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comparison-table th {
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem;
  font-size: 1.2rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  font-size: 1.05rem;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--cream);
}

/* Highlighted Row */
.comparison-table .highlight {
  background-color: var(--yellow);
  font-weight: 700;
}

/* Feature Callout Box */
.callout-box {
  background-color: var(--yellow);
  padding: 2rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin: 2rem 0;
}

.callout-box h3 {
  margin-bottom: 0.75rem;
  color: var(--chestnut);
}

.callout-box p {
  font-size: 1.15rem;
}

/* Chestnut Callout (Authority Style) */
.callout-chestnut {
  background-color: var(--chestnut);
  color: var(--white);
  border-left: 6px solid var(--yellow);
}

.callout-chestnut h3,
.callout-chestnut p {
  color: var(--white);
}
/* ============================================
   SECTION 8 — TESTIMONIALS + REVIEWS
   ============================================ */

/* Testimonials Section Wrapper */
.testimonials {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.testimonials .section-title {
  margin-bottom: 3rem;
}

/* Testimonial Grid (3 columns on desktop) */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Quote Icon */
.testimonial::before {
  content: "“";
  font-size: 4rem;
  color: var(--orange);
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
}

/* Testimonial Text */
.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

/* Reviewer Name */
.testimonial .author {
  font-weight: 700;
  color: var(--chestnut);
  font-size: 1.1rem;
}

/* Reviewer Location */
.testimonial .location {
  font-size: 0.95rem;
  color: #555;
}

/* Star Rating */
.stars {
  margin-bottom: 1rem;
}

.stars span {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-right: 2px;
}

/* Testimonial Carousel (Non-JS Fallback) */
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background-color: var(--orange);
  border-radius: 4px;
}

.carousel-item {
  min-width: 300px;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-item p {
  margin-bottom: 1rem;
}

/* Featured Testimonial (Highlighted) */
.testimonial-featured {
  border-left: 6px solid var(--orange);
  background-color: var(--yellow);
}

.testimonial-featured p,
.testimonial-featured .author {
  color: var(--black);
}
/* ============================================
   SECTION 9 — FORMS + INPUT FIELDS + LABELS
   ============================================ */

/* Form Wrapper */
.form-section {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.form-section .section-title {
  margin-bottom: 2rem;
}

/* Form Container */
.form-box {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Labels */
.form-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--chestnut);
}

/* Input Fields */
.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"],
.form-box input[type="number"],
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white);
}

/* Input Focus State */
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 6px rgba(232, 106, 28, 0.4);
  outline: none;
}

/* Textarea */
.form-box textarea {
  min-height: 140px;
  resize: vertical;
}

/* Submit Button */
.form-box button,
.form-box .btn-submit {
  width: 100%;
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.form-box button:hover,
.form-box .btn-submit:hover {
  background-color: var(--chestnut);
}

/* Inline Form Rows (2 columns) */
.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-row .form-col {
  flex: 1;
  min-width: 200px;
}

/* Required Field Indicator */
.required {
  color: var(--orange);
  font-weight: 700;
}

/* Success Message */
.form-success {
  background-color: var(--yellow);
  padding: 1rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

/* Error Message */
.form-error {
  background-color: #ffdddd;
  padding: 1rem;
  border-left: 6px solid #cc0000;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #660000;
}
/* ============================================
   SECTION 10 — BUTTONS + BUTTON GROUPS
   ============================================ */

/* Primary Button (Orange) */
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--chestnut);
  transform: translateY(-3px);
}

/* Secondary Button (Chestnut) */
.btn-secondary {
  background-color: var(--chestnut);
  color: var(--white);
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--orange);
  transform: translateY(-3px);
}

/* Outline Button (Orange Border) */
.btn-outline {
  background-color: transparent;
  color: var(--orange);
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* White Button (Used on Dark Backgrounds) */
.btn-white {
  background-color: var(--white);
  color: var(--orange);
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-white:hover {
  background-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

/* Button Group (Horizontal) */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating Button (Bottom Right) */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-btn:hover {
  background-color: var(--chestnut);
  transform: translateY(-4px);
}
/* ============================================
   SECTION 11 — FOOTER + SOCIAL + BOTTOM BAR
   ============================================ */

/* Footer Wrapper */
footer {
  background-color: var(--chestnut);
  color: var(--white);
  padding: 4rem 1.5rem 2rem 1.5rem;
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Footer Column */
.footer-col {
  flex: 1 1 calc(25% - 3rem);
  min-width: 220px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.footer-col p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Footer Links */
.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--white);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

/* Social Icons Row */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

/* Divider Line */
.footer-divider {
  width: 100%;
  height: 2px;
  background-color: rgba(255,255,255,0.2);
  margin: 2.5rem 0 1.5rem 0;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--white);
}
/* ============================================
   SECTION 12 — UTILITY CLASSES
   ============================================ */

/* -------------------------
   Spacing Utilities
   ------------------------- */

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pt-3 { padding-top: 1.5rem !important; }
.pt-4 { padding-top: 2rem !important; }
.pt-5 { padding-top: 3rem !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.5rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pb-4 { padding-bottom: 2rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

/* -------------------------
   Alignment Utilities
   ------------------------- */

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

/* -------------------------
   Display Utilities
   ------------------------- */

.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; }

/* -------------------------
   Width Utilities
   ------------------------- */

.w-100 { width: 100% !important; }
.w-75 { width: 75% !important; }
.w-50 { width: 50% !important; }
.w-33 { width: 33.333% !important; }
.w-25 { width: 25% !important; }

/* -------------------------
   Background Utilities
   ------------------------- */

.bg-cream { background-color: var(--cream) !important; }
.bg-orange { background-color: var(--orange) !important; }
.bg-yellow { background-color: var(--yellow) !important; }
.bg-chestnut { background-color: var(--chestnut) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-black { background-color: var(--black) !important; }

/* -------------------------
   Text Color Utilities
   ------------------------- */

.text-cream { color: var(--cream) !important; }
.text-orange { color: var(--orange) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-chestnut { color: var(--chestnut) !important; }
.text-white { color: var(--white) !important; }
.text-black { color: var(--black) !important; }

/* -------------------------
   Border Utilities
   ------------------------- */

.border { border: 1px solid #ddd !important; }
.border-orange { border: 2px solid var(--orange) !important; }
.border-yellow { border: 2px solid var(--yellow) !important; }
.border-chestnut { border: 2px solid var(--chestnut) !important; }
.border-none { border: none !important; }

/* Rounded Corners */
.rounded { border-radius: 6px !important; }
.rounded-lg { border-radius: 12px !important; }
.rounded-full { border-radius: 50px !important; }

/* Shadow Utilities */
.shadow-sm { box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important; }
.shadow-md { box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; }
.shadow-lg { box-shadow: 0 6px 18px rgba(0,0,0,0.2) !important; }
.shadow-none { box-shadow: none !important; }
/* ============================================
   SECTION 13 — RESPONSIVE BREAKPOINTS
   ============================================ */

/* --------------------------------------------
   Mobile First (Base styles already mobile-friendly)
   -------------------------------------------- */

/* --------------------------------------------
   Tablets (max-width: 992px)
   -------------------------------------------- */
@media (max-width: 992px) {

  /* Navigation */
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  /* Split Sections */
  .split-section {
    flex-direction: column;
    text-align: center;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .split-section img {
    max-width: 100%;
  }

  /* Feature Grid */
  .feature-item {
    flex: 1 1 calc(50% - 2rem);
  }

  /* Card Grid */
  .card-grid .card {
    flex: 1 1 calc(50% - 2rem);
  }

  /* Testimonial Grid */
  .testimonial {
    flex: 1 1 calc(50% - 2rem);
  }

  /* Footer Columns */
  .footer-col {
    flex: 1 1 calc(50% - 3rem);
  }
}

/* --------------------------------------------
   Mobile (max-width: 768px)
   -------------------------------------------- */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    min-height: 60vh;
    padding: 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  /* Columns collapse */
  .col-2,
  .col-3,
  .col-4 {
    flex: 0 0 100%;
  }

  /* Feature Grid */
  .feature-item {
    flex: 1 1 100%;
  }

  /* Card Grid */
  .card-grid .card {
    flex: 1 1 100%;
  }

  /* Testimonials */
  .testimonial {
    flex: 1 1 100%;
  }

  /* Lead Strip */
  .lead-strip {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Footer */
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* --------------------------------------------
   Small Mobile (max-width: 480px)
   -------------------------------------------- */
@media (max-width: 480px) {

  /* Hero */
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-white {
    width: 100%;
    text-align: center;
  }

  /* Form */
  .form-row {
    flex-direction: column;
  }

  /* Carousel */
  .carousel-item {
    min-width: 260px;
  }
}
/* ============================================
   SECTION 14 — IMAGE HELPERS + RATIOS + SHAPES
   ============================================ */

/* Responsive Image */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

/* Rounded Corners */
.img-rounded {
  border-radius: 8px;
}

.img-rounded-lg {
  border-radius: 16px;
}

.img-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* Image Shadows */
.img-shadow-sm {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.img-shadow-md {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.img-shadow-lg {
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Full-Width Banner Image */
.img-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

/* Square Image Crop */
.img-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

/* 16:9 Ratio (Video-style) */
.img-16-9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

/* 4:3 Ratio */
.img-4-3 {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* Tall Portrait Ratio */
.img-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

/* Centered Image Block */
.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Image with Orange Border */
.img-border-orange {
  border: 4px solid var(--orange);
  border-radius: 8px;
}

/* Image with Chestnut Border */
.img-border-chestnut {
  border: 4px solid var(--chestnut);
  border-radius: 8px;
}

/* Image Overlay Container */
.img-overlay-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.img-overlay-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dark Overlay */
.img-overlay-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

/* Light Overlay */
.img-overlay-light::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
}

/* Overlay Text */
.img-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
/* ============================================
   SECTION 15 — ANIMATIONS + TRANSITIONS
   ============================================ */

/* -------------------------
   Fade-In Animation
   ------------------------- */

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Delayed Fade-In (for staggered elements) */
.fade-in-delay-1 { animation-delay: 0.3s; }
.fade-in-delay-2 { animation-delay: 0.6s; }
.fade-in-delay-3 { animation-delay: 0.9s; }

/* -------------------------
   Slide-Up Animation
   ------------------------- */

.slide-up {
  opacity: 0;
  transform: translateY(25px);
  animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------
   Slide-In From Left
   ------------------------- */

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------------
   Slide-In From Right
   ------------------------- */

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideRight 1s ease forwards;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------------
   Hover Lift (Cards, Features)
   ------------------------- */

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* -------------------------
   Soft Glow Hover (Buttons)
   ------------------------- */

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 12px rgba(232,106,28,0.6);
}

/* -------------------------
   Reveal on Scroll (CSS-only)
   ------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
   Pulse Animation (for special CTAs)
   ------------------------- */

.pulse {
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* -------------------------
   Slow Fade Background (Hero overlays)
   ------------------------- */

.fade-bg {
  animation: fadeBg 2.5s ease forwards;
}

@keyframes fadeBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ============================================
   SECTION 16 — PAGE-SPECIFIC MODULES
   ============================================ */

/* --------------------------------------------
   Dealer Program — Benefit Blocks
   -------------------------------------------- */

.dealer-benefits {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.dealer-benefits .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.dealer-benefits .benefit-item {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.dealer-benefits .benefit-item:hover {
  transform: translateY(-6px);
}

.dealer-benefits .benefit-item h3 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Dealer Program — Step-by-Step Process
   -------------------------------------------- */

.dealer-steps {
  padding: 4rem 1.5rem;
  background-color: var(--white);
}

.dealer-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.dealer-step.reverse {
  flex-direction: row-reverse;
}

.dealer-step-number {
  background-color: var(--orange);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer-step-text h3 {
  color: var(--chestnut);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Product Pages — Specs Table
   -------------------------------------------- */

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.specs-table th {
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-size: 1.2rem;
}

.specs-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.specs-table tr:nth-child(even) {
  background-color: var(--cream);
}

/* --------------------------------------------
   Product Pages — Feature Icons Row
   -------------------------------------------- */

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.product-feature {
  flex: 1 1 calc(25% - 2rem);
  text-align: center;
}

.product-feature img {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.product-feature h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------
   Measurement Guide — Step Cards
   -------------------------------------------- */

.measure-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.measure-step {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.measure-step h3 {
  color: var(--chestnut);
  margin-bottom: 0.75rem;
}

.measure-step p {
  margin-bottom: 1rem;
}

/* --------------------------------------------
   Why Awnings — Highlighted Info Blocks
   -------------------------------------------- */

.info-highlight {
  background-color: var(--yellow);
  padding: 2rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin: 2rem 0;
}

.info-highlight h3 {
  color: var(--black);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Homeowner vs Contractor — Split Choice Blocks
   -------------------------------------------- */

.choice-blocks {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.choice-block {
  flex: 1 1 calc(50% - 2rem);
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.choice-block:hover {
  transform: translateY(-6px);
}

.choice-block h3 {
  color: var(--orange);
  margin-bottom: 1rem;
}

.choice-block p {
  margin-bottom: 1.5rem;
}

/* --------------------------------------------
   Partner Benefits — Icon List
   -------------------------------------------- */

.partner-benefits {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.partner-benefits ul {
  list-style: none;
  padding-left: 0;
}

.partner-benefits li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.15rem;
}

.partner-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}
/* ============================================
   SECTION 16 — PAGE-SPECIFIC MODULES
   ============================================ */

/* --------------------------------------------
   Dealer Program — Benefit Blocks
   -------------------------------------------- */

.dealer-benefits {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.dealer-benefits .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.dealer-benefits .benefit-item {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.dealer-benefits .benefit-item:hover {
  transform: translateY(-6px);
}

.dealer-benefits .benefit-item h3 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Dealer Program — Step-by-Step Process
   -------------------------------------------- */

.dealer-steps {
  padding: 4rem 1.5rem;
  background-color: var(--white);
}

.dealer-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.dealer-step.reverse {
  flex-direction: row-reverse;
}

.dealer-step-number {
  background-color: var(--orange);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer-step-text h3 {
  color: var(--chestnut);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Product Pages — Specs Table
   -------------------------------------------- */

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.specs-table th {
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-size: 1.2rem;
}

.specs-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.specs-table tr:nth-child(even) {
  background-color: var(--cream);
}

/* --------------------------------------------
   Product Pages — Feature Icons Row
   -------------------------------------------- */

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.product-feature {
  flex: 1 1 calc(25% - 2rem);
  text-align: center;
}

.product-feature img {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.product-feature h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------
   Measurement Guide — Step Cards
   -------------------------------------------- */

.measure-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.measure-step {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.measure-step h3 {
  color: var(--chestnut);
  margin-bottom: 0.75rem;
}

.measure-step p {
  margin-bottom: 1rem;
}

/* --------------------------------------------
   Why Awnings — Highlighted Info Blocks
   -------------------------------------------- */

.info-highlight {
  background-color: var(--yellow);
  padding: 2rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin: 2rem 0;
}

.info-highlight h3 {
  color: var(--black);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Homeowner vs Contractor — Split Choice Blocks
   -------------------------------------------- */

.choice-blocks {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.choice-block {
  flex: 1 1 calc(50% - 2rem);
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.choice-block:hover {
  transform: translateY(-6px);
}

.choice-block h3 {
  color: var(--orange);
  margin-bottom: 1rem;
}

.choice-block p {
  margin-bottom: 1.5rem;
}

/* --------------------------------------------
   Partner Benefits — Icon List
   -------------------------------------------- */

.partner-benefits {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.partner-benefits ul {
  list-style: none;
  padding-left: 0;
}

.partner-benefits li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.15rem;
}

.partner-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}
/* ============================================
   SECTION 17 — NAVIGATION MEGA-MENU ENHANCEMENTS
   ============================================ */

/* Mega Menu Container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 2rem 3rem;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border-bottom: 4px solid var(--orange);
  z-index: 999;
}

/* Show Mega Menu on Hover */
.nav-item:hover .mega-menu {
  display: grid;
}

/* Mega Menu Column */
.mega-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--chestnut);
}

.mega-col ul {
  list-style: none;
  padding-left: 0;
}

.mega-col ul li {
  margin-bottom: 0.6rem;
}

.mega-col ul li a {
  color: var(--black);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.mega-col ul li a:hover {
  color: var(--orange);
}

/* Featured Mega Menu Item */
.mega-feature {
  background-color: var(--cream);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mega-feature h4 {
  color: var(--orange);
}

.mega-feature p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Mega Menu Icons */
.mega-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

/* Divider Line Inside Mega Menu */
.mega-divider {
  height: 2px;
  background-color: var(--orange);
  margin: 1rem 0;
  opacity: 0.3;
}

/* --------------------------------------------
   Mobile Mega Menu Behavior
   -------------------------------------------- */

@media (max-width: 992px) {

  .mega-menu {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    padding: 1.5rem;
    box-shadow: none;
    border-bottom: none;
  }

  .nav-item.open .mega-menu {
    display: block;
  }

  .mega-col {
    margin-bottom: 2rem;
  }

  .mega-feature {
    margin-top: 1rem;
  }
}

/* --------------------------------------------
   Mobile Toggle Indicators
   -------------------------------------------- */

.nav-item .toggle-arrow {
  display: none;
}

@media (max-width: 992px) {
  .nav-item .toggle-arrow {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.1rem;
    color: var(--orange);
    transition: transform 0.3s ease;
  }

  .nav-item.open .toggle-arrow {
    transform: rotate(90deg);
  }
}
/* ============================================
   SECTION 18 — DEALER PORTAL STYLING
   ============================================ */

/* --------------------------------------------
   Portal Layout
   -------------------------------------------- */

.portal-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: var(--cream);
}

/* Sidebar */
.portal-sidebar {
  width: 260px;
  background-color: var(--chestnut);
  color: var(--white);
  padding: 2rem 1.5rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.portal-sidebar h3 {
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.portal-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.portal-sidebar li {
  margin-bottom: 1rem;
}

.portal-sidebar a {
  color: var(--white);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.portal-sidebar a:hover {
  color: var(--yellow);
}

/* Active Link */
.portal-sidebar .active {
  font-weight: 700;
  color: var(--yellow);
}

/* Main Content Area */
.portal-content {
  flex: 1;
  padding: 3rem;
}

/* Portal Page Title */
.portal-title {
  font-size: 2rem;
  color: var(--chestnut);
  margin-bottom: 2rem;
}

/* --------------------------------------------
   Dashboard Cards
   -------------------------------------------- */

.dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.dashboard-card {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
}

.dashboard-card h4 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.dashboard-card p {
  font-size: 1.1rem;
}

/* --------------------------------------------
   Resource List (Downloads, Training, Assets)
   -------------------------------------------- */

.resource-list {
  margin-top: 2rem;
}

.resource-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.resource-item h4 {
  color: var(--chestnut);
  margin-bottom: 0.25rem;
}

.resource-item p {
  font-size: 0.95rem;
  color: #555;
}

.resource-item .btn {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
}

/* --------------------------------------------
   Training Modules
   -------------------------------------------- */

.training-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.training-module {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.training-module h4 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.training-module p {
  margin-bottom: 1rem;
}

/* --------------------------------------------
   Portal Tables (Leads, Orders, Assets)
   -------------------------------------------- */

.portal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.portal-table th {
  background-color: var(--orange);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
}

.portal-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.portal-table tr:nth-child(even) {
  background-color: var(--cream);
}

/* Status Tags */
.status-tag {
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.status-new { background-color: var(--orange); }
.status-active { background-color: var(--chestnut); }
.status-complete { background-color: var(--yellow); color: var(--black); }

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 992px) {
  .portal-wrapper {
    flex-direction: column;
  }

  .portal-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .dashboard-card,
  .training-module {
    flex: 1 1 100%;
  }
}
/* ============================================
   SECTION 19 — BLOG + ARTICLE STYLING
   ============================================ */

/* --------------------------------------------
   Blog Article Wrapper
   -------------------------------------------- */

.article-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Article Title */
.article-title {
  font-size: 2.4rem;
  color: var(--chestnut);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Article Meta */
.article-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
}

.article-meta span {
  margin-right: 1rem;
}

/* Featured Image */
.article-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* --------------------------------------------
   Article Body Typography
   -------------------------------------------- */

.article-body h2 {
  font-size: 1.9rem;
  color: var(--orange);
  margin: 2.5rem 0 1rem 0;
}

.article-body h3 {
  font-size: 1.5rem;
  color: var(--chestnut);
  margin: 2rem 0 1rem 0;
}

.article-body p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.article-body ul,
.article-body ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.article-body li {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

/* Inline Image */
.article-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* --------------------------------------------
   Pull Quote
   -------------------------------------------- */

.pull-quote {
  background-color: var(--yellow);
  padding: 1.5rem 2rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin: 2.5rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}

/* --------------------------------------------
   Author Box
   -------------------------------------------- */

.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background-color: var(--cream);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box h4 {
  margin-bottom: 0.25rem;
  color: var(--chestnut);
}

.author-box p {
  font-size: 0.95rem;
  color: #555;
}

/* --------------------------------------------
   Blog Cards (Blog Listing Page)
   -------------------------------------------- */

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.blog-card {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.blog-card-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

/* --------------------------------------------
   Pagination
   -------------------------------------------- */

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination a {
  padding: 0.6rem 1rem;
  background-color: var(--white);
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: var(--orange);
  color: var(--white);
}

.pagination .active {
  background-color: var(--orange);
  color: var(--white);
}
/* ============================================
   SECTION 20 — LANDING PAGE VARIANTS
   ============================================ */

/* --------------------------------------------
   Slim Hero (Shorter, High-Impact)
   -------------------------------------------- */

.slim-hero {
  width: 100%;
  padding: 3rem 1.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  color: var(--white);
}

.slim-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.slim-hero-content {
  position: relative;
  z-index: 2;
}

.slim-hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.slim-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------
   Landing Page Benefit Row (3 Columns)
   -------------------------------------------- */

.lp-benefits {
  padding: 3rem 1.5rem;
  background-color: var(--cream);
}

.lp-benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.lp-benefit {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lp-benefit img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.lp-benefit h3 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Social Proof Strip (Logos or Stars)
   -------------------------------------------- */

.social-proof-strip {
  padding: 2rem 1.5rem;
  background-color: var(--white);
  text-align: center;
}

.social-proof-strip img {
  max-width: 140px;
  margin: 0 1rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.social-proof-strip img:hover {
  opacity: 1;
}

/* --------------------------------------------
   Landing Page CTA Bar (Full Width)
   -------------------------------------------- */

.lp-cta-bar {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  margin: 3rem 0;
}

.lp-cta-bar h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lp-cta-bar .btn {
  padding: 0.9rem 1.6rem;
  font-size: 1.1rem;
}

/* --------------------------------------------
   Minimalist Section (White, Clean, Direct)
   -------------------------------------------- */

.minimal-section {
  padding: 3rem 1.5rem;
  background-color: var(--white);
  text-align: center;
}

.minimal-section h2 {
  color: var(--chestnut);
  margin-bottom: 1rem;
}

.minimal-section p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.15rem;
}

/* --------------------------------------------
   Landing Page Testimonial Strip
   -------------------------------------------- */

.lp-testimonials {
  padding: 3rem 1.5rem;
  background-color: var(--cream);
}

.lp-testimonial {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lp-testimonial p {
  margin-bottom: 0.75rem;
}

.lp-testimonial .author {
  font-weight: 700;
  color: var(--chestnut);
}

/* --------------------------------------------
   Landing Page Guarantee Box
   -------------------------------------------- */

.guarantee-box {
  background-color: var(--yellow);
  padding: 2rem;
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  margin: 3rem 0;
  text-align: center;
}

.guarantee-box h3 {
  color: var(--black);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Landing Page FAQ (Simple Accordion)
   -------------------------------------------- */

.lp-faq {
  margin: 3rem 0;
}

.lp-faq-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.lp-faq-item h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.lp-faq-item p {
  display: none;
  margin-top: 0.75rem;
  color: var(--black);
}

.lp-faq-item.open p {
  display: block;
}
/* ============================================
   SECTION 21 — FORM ENHANCEMENTS
   ============================================ */

/* --------------------------------------------
   Floating / Animated Labels
   -------------------------------------------- */

.form-floating {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-floating input,
.form-floating textarea {
  width: 100%;
  padding: 1.2rem 1rem 0.6rem 1rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1.05rem;
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-floating label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: #777;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* When typing */
.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.8rem;
  background-color: var(--white);
  padding: 0 0.3rem;
  font-size: 0.85rem;
  color: var(--orange);
}

/* --------------------------------------------
   Input Icons (Left-Aligned)
   -------------------------------------------- */

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.2rem;
}

.input-icon input {
  padding-left: 2.5rem;
}

/* --------------------------------------------
   Inline Validation States
   -------------------------------------------- */

.input-valid {
  border-color: #4CAF50 !important;
  box-shadow: 0 0 6px rgba(76,175,80,0.4) !important;
}

.input-error {
  border-color: #cc0000 !important;
  box-shadow: 0 0 6px rgba(204,0,0,0.4) !important;
}

/* Validation Message */
.validation-msg {
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.validation-msg.error {
  color: #cc0000;
}

.validation-msg.success {
  color: #4CAF50;
}

/* --------------------------------------------
   Progress Indicator (Top of Form)
   -------------------------------------------- */

.form-progress {
  width: 100%;
  height: 8px;
  background-color: #eee;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.form-progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--orange);
  transition: width 0.4s ease;
}

/* --------------------------------------------
   Micro-Interaction: Shake on Error
   -------------------------------------------- */

.shake {
  animation: shakeAnim 0.4s ease;
}

@keyframes shakeAnim {
  0% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-6px); }
  100% { transform: translateX(0); }
}

/* --------------------------------------------
   Micro-Interaction: Success Pulse
   -------------------------------------------- */

.success-pulse {
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* --------------------------------------------
   Disabled State
   -------------------------------------------- */

input:disabled,
textarea:disabled,
select:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
  opacity: 0.7;
}

/* --------------------------------------------
   Submit Button Loading State
   -------------------------------------------- */

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}
/* ============================================
   SECTION 22 — PRODUCT GALLERY + LIGHTBOX
   ============================================ */

/* --------------------------------------------
   Product Gallery Grid
   -------------------------------------------- */

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.product-gallery img {
  width: calc(33.333% - 1rem);
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* --------------------------------------------
   Thumbnail Strip (Below Main Image)
   -------------------------------------------- */

.thumbnail-strip {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.thumbnail-strip img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumbnail-strip img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.thumbnail-strip .active {
  opacity: 1;
  border: 3px solid var(--orange);
}

/* --------------------------------------------
   Lightbox Overlay
   -------------------------------------------- */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-overlay.active {
  display: flex;
}

/* Lightbox Image */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  animation: lightboxFade 0.4s ease;
}

@keyframes lightboxFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------
   Lightbox Close Button
   -------------------------------------------- */

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--yellow);
}

/* --------------------------------------------
   Lightbox Navigation Arrows
   -------------------------------------------- */

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.lightbox-arrow:hover {
  color: var(--yellow);
}

.lightbox-arrow.left {
  left: 30px;
}

.lightbox-arrow.right {
  right: 30px;
}

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {

  .product-gallery img {
    width: calc(50% - 1rem);
  }

  .thumbnail-strip img {
    width: 60px;
    height: 60px;
  }

  .lightbox-arrow {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {

  .product-gallery img {
    width: 100%;
  }

  .thumbnail-strip {
    justify-content: center;
  }
}
/* ============================================
   SECTION 23 — FULL FAQ ACCORDION SYSTEM
   ============================================ */

/* FAQ Wrapper */
.faq-section {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
}

.faq-section .section-title {
  margin-bottom: 2rem;
}

/* FAQ Item */
.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* FAQ Question Row */
.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--chestnut);
}

/* FAQ Icon */
.faq-icon {
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

/* FAQ Answer (hidden by default) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--black);
}

/* --------------------------------------------
   FAQ Variants
   -------------------------------------------- */

/* Orange Highlight Variant */
.faq-item.orange {
  border-left: 6px solid var(--orange);
}

.faq-item.orange .faq-question h4 {
  color: var(--orange);
}

/* Yellow Highlight Variant */
.faq-item.yellow {
  border-left: 6px solid var(--yellow);
}

.faq-item.yellow .faq-question h4 {
  color: var(--chestnut);
}

/* Minimal Variant */
.faq-item.minimal {
  box-shadow: none;
  border: 1px solid #ddd;
}

/* --------------------------------------------
   FAQ Grid Layout (2 Columns)
   -------------------------------------------- */

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.faq-grid .faq-item {
  flex: 1 1 calc(50% - 2rem);
}

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {
  .faq-grid .faq-item {
    flex: 1 1 100%;
  }

  .faq-question h4 {
    font-size: 1.15rem;
  }
}
/* ============================================
   SECTION 24 — DATA TABLES + CHARTS
   ============================================ */

/* --------------------------------------------
   Data Table Wrapper
   -------------------------------------------- */

.data-table-wrapper {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --------------------------------------------
   Data Table (General Purpose)
   -------------------------------------------- */

.data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  min-width: 700px;
}

.data-table th {
  background-color: var(--chestnut);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  font-size: 1.05rem;
}

.data-table tr:nth-child(even) {
  background-color: var(--cream);
}

/* Hover Row Highlight */
.data-table tr:hover {
  background-color: var(--yellow);
}

/* --------------------------------------------
   Sortable Table Indicators
   -------------------------------------------- */

.sortable {
  cursor: pointer;
  position: relative;
}

.sortable::after {
  content: "↕";
  position: absolute;
  right: 10px;
  color: var(--yellow);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* --------------------------------------------
   Status Tags (Reusable)
   -------------------------------------------- */

.tag {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
}

.tag-orange { background-color: var(--orange); }
.tag-chestnut { background-color: var(--chestnut); }
.tag-yellow { background-color: var(--yellow); color: var(--black); }
.tag-green { background-color: #4CAF50; }
.tag-red { background-color: #cc0000; }

/* --------------------------------------------
   Chart Containers (CSS-Only Layout)
   -------------------------------------------- */

.chart-container {
  width: 100%;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Chart Title */
.chart-title {
  font-size: 1.4rem;
  color: var(--chestnut);
  margin-bottom: 1rem;
}

/* --------------------------------------------
   Bar Chart (CSS-Only)
   -------------------------------------------- */

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 250px;
  padding: 1rem 0;
}

.bar {
  flex: 1;
  background-color: var(--orange);
  border-radius: 6px 6px 0 0;
  transition: height 0.4s ease, background-color 0.3s ease;
}

.bar:hover {
  background-color: var(--chestnut);
}

/* Bar Labels */
.bar-label {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--black);
}

/* --------------------------------------------
   Line Chart (CSS-Only Grid)
   -------------------------------------------- */

.line-chart {
  position: relative;
  height: 260px;
  border-left: 3px solid #ccc;
  border-bottom: 3px solid #ccc;
  margin-top: 2rem;
}

.line-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.line-connector {
  position: absolute;
  height: 3px;
  background-color: var(--orange);
  transform-origin: left center;
}

/* --------------------------------------------
   Legend
   -------------------------------------------- */

.chart-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.chart-legend .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dot-orange { background-color: var(--orange); }
.dot-chestnut { background-color: var(--chestnut); }
.dot-yellow { background-color: var(--yellow); }

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {
  .bar-chart {
    height: 200px;
  }

  .line-chart {
    height: 220px;
  }

  .data-table {
    min-width: 500px;
  }
}
/* ============================================
   SECTION 25 — HEADER VARIANTS
   Sticky • Transparent • Scroll‑Shrink
   ============================================ */

/* --------------------------------------------
   Base Header
   -------------------------------------------- */

.header {
  width: 100%;
  background-color: var(--white);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease, background-color 0.3s ease,
              box-shadow 0.3s ease;
  z-index: 999;
  position: relative;
}

/* Logo */
.header .logo img {
  height: 55px;
  transition: height 0.3s ease;
}

/* --------------------------------------------
   Sticky Header
   -------------------------------------------- */

.header-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

/* Add shadow when stuck */
.header-sticky.scrolled {
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --------------------------------------------
   Transparent Header (Hero Overlay)
   -------------------------------------------- */

.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 1.8rem 2rem;
}

.header-transparent .nav a {
  color: var(--white);
}

.header-transparent.scrolled {
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 1rem 2rem;
}

.header-transparent.scrolled .nav a {
  color: var(--black);
}

/* --------------------------------------------
   Scroll‑Shrink Header
   -------------------------------------------- */

.header-shrink {
  position: sticky;
  top: 0;
  transition: all 0.3s ease;
}

.header-shrink.scrolled {
  padding: 0.6rem 2rem;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-shrink.scrolled .logo img {
  height: 42px;
}

/* --------------------------------------------
   Mobile Header Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {

  .header,
  .header-transparent,
  .header-shrink {
    padding: 1rem 1.2rem;
  }

  .header.scrolled,
  .header-transparent.scrolled,
  .header-shrink.scrolled {
    padding: 0.7rem 1.2rem;
  }

  .header .logo img {
    height: 48px;
  }

  .header-shrink.scrolled .logo img {
    height: 38px;
  }
}
/* ============================================
   SECTION 26 — HERO VARIANTS
   Video • Split • Angled • Overlay
   ============================================ */

/* --------------------------------------------
   VIDEO HERO (Autoplay Background)
   -------------------------------------------- */

.video-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.video-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.video-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.video-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------
   SPLIT HERO (Image Left, Text Right)
   -------------------------------------------- */

.split-hero {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  gap: 3rem;
}

.split-hero .split-hero-text {
  flex: 1;
}

.split-hero .split-hero-text h1 {
  font-size: 2.6rem;
  color: var(--chestnut);
  margin-bottom: 1rem;
}

.split-hero .split-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.split-hero .split-hero-img {
  flex: 1;
}

.split-hero .split-hero-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Reverse layout */
.split-hero.reverse {
  flex-direction: row-reverse;
}

/* --------------------------------------------
   ANGLED HERO (Diagonal Bottom Edge)
   -------------------------------------------- */

.angled-hero {
  position: relative;
  padding: 5rem 2rem;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.angled-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.angled-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.angled-hero p {
  font-size: 1.25rem;
}

/* --------------------------------------------
   DARK OVERLAY HERO (Static Image)
   -------------------------------------------- */

.overlay-hero {
  position: relative;
  padding: 6rem 2rem;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.overlay-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.overlay-hero-content {
  position: relative;
  z-index: 2;
}

.overlay-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------
   MINIMAL HERO (Clean, White, Direct)
   -------------------------------------------- */

.minimal-hero {
  padding: 4rem 2rem;
  background-color: var(--white);
  text-align: center;
}

.minimal-hero h1 {
  font-size: 2.4rem;
  color: var(--chestnut);
  margin-bottom: 1rem;
}

.minimal-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

/* --------------------------------------------
   MOBILE ADJUSTMENTS
   -------------------------------------------- */

@media (max-width: 768px) {

  .video-hero {
    height: 55vh;
  }

  .video-hero-content h1 {
    font-size: 2.2rem;
  }

  .split-hero {
    flex-direction: column;
    text-align: center;
  }

  .split-hero.reverse {
    flex-direction: column;
  }

  .angled-hero h1,
  .overlay-hero-content h1 {
    font-size: 2.2rem;
  }
}
/* ============================================
   SECTION 27 — CALLOUT BOXES + NOTICE BARS
   ============================================ */

/* --------------------------------------------
   Standard Callout Box
   -------------------------------------------- */

.callout-box {
  padding: 2rem;
  background-color: var(--cream);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  margin: 2rem 0;
}

.callout-box h3 {
  color: var(--chestnut);
  margin-bottom: 0.75rem;
}

.callout-box p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --------------------------------------------
   Success Callout (Green)
   -------------------------------------------- */

.callout-success {
  background-color: #e8f7e8;
  border-left: 6px solid #4CAF50;
}

.callout-success h3 {
  color: #2e7d32;
}

/* --------------------------------------------
   Warning Callout (Yellow)
   -------------------------------------------- */

.callout-warning {
  background-color: var(--yellow);
  border-left: 6px solid var(--orange);
}

.callout-warning h3 {
  color: var(--black);
}

/* --------------------------------------------
   Danger Callout (Red)
   -------------------------------------------- */

.callout-danger {
  background-color: #ffe5e5;
  border-left: 6px solid #cc0000;
}

.callout-danger h3 {
  color: #cc0000;
}

/* --------------------------------------------
   Notice Bar (Full‑Width)
   -------------------------------------------- */

.notice-bar {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 6px;
  margin: 2rem 0;
}

.notice-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

/* --------------------------------------------
   Notice Bar — Yellow Variant
   -------------------------------------------- */

.notice-bar-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.notice-bar-yellow a {
  color: var(--black);
}

/* --------------------------------------------
   Urgency Bar (Countdown / Promo)
   -------------------------------------------- */

.urgency-bar {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--chestnut);
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  margin: 2rem 0;
  animation: pulseUrgency 2.5s infinite ease-in-out;
}

@keyframes pulseUrgency {
  0% { opacity: 1; }
  50% { opacity: 0.75; }
  100% { opacity: 1; }
}

/* --------------------------------------------
   Icon Callout (Icon + Text)
   -------------------------------------------- */

.icon-callout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.icon-callout img {
  width: 60px;
  height: 60px;
}

.icon-callout h3 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {
  .icon-callout {
    flex-direction: column;
    text-align: center;
  }

  .icon-callout img {
    margin: 0 auto;
  }
}
/* ============================================
   SECTION 28 — ADVANCED CARDS 2.0
   Pricing • Comparison • Feature • Tier Cards
   ============================================ */

/* --------------------------------------------
   Pricing Cards (3‑Column)
   -------------------------------------------- */

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.pricing-card h3 {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--chestnut);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.pricing-card ul li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.pricing-card .btn {
  margin-top: 1.5rem;
}

/* Highlighted “Best Value” Card */
.pricing-card.featured {
  border: 3px solid var(--orange);
  transform: scale(1.03);
}

/* --------------------------------------------
   Comparison Cards (Side‑by‑Side)
   -------------------------------------------- */

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.comparison-card {
  flex: 1 1 calc(50% - 2rem);
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comparison-card h3 {
  color: var(--chestnut);
  margin-bottom: 1rem;
}

.comparison-card .compare-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.compare-row strong {
  color: var(--orange);
}

/* --------------------------------------------
   Feature Cards (Icon + Text)
   -------------------------------------------- */

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------
   Tier Cards (Good / Better / Best)
   -------------------------------------------- */

.tier-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.tier-card {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border-top: 6px solid var(--chestnut);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tier-card.good { border-top-color: var(--yellow); }
.tier-card.better { border-top-color: var(--orange); }
.tier-card.best { border-top-color: var(--chestnut); }

.tier-card h3 {
  margin-bottom: 0.75rem;
  color: var(--chestnut);
}

.tier-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.tier-card ul li {
  margin-bottom: 0.75rem;
}

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {

  .pricing-card,
  .comparison-card,
  .tier-card {
    flex: 1 1 100%;
  }
}
/* ============================================
   SECTION 29 — FORMS 3.0
   Multi‑Step • Conditional • Progress‑Driven
   ============================================ */

/* --------------------------------------------
   Multi‑Step Form Wrapper
   -------------------------------------------- */

.multi-step-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 2rem auto;
}

/* Hide steps by default */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* --------------------------------------------
   Step Indicator (Top Navigation)
   -------------------------------------------- */

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.step-indicator .step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-indicator .step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ddd;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.step-indicator .step.active .step-number {
  background-color: var(--orange);
  color: var(--white);
}

.step-indicator .step.completed .step-number {
  background-color: var(--chestnut);
  color: var(--white);
}

/* Step labels */
.step-indicator .step-label {
  font-size: 0.95rem;
  color: var(--black);
}

/* --------------------------------------------
   Progress Bar (Animated)
   -------------------------------------------- */

.step-progress {
  width: 100%;
  height: 8px;
  background-color: #eee;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.step-progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--orange);
  transition: width 0.4s ease;
}

/* --------------------------------------------
   Conditional Reveal Fields
   -------------------------------------------- */

.conditional-field {
  display: none;
  margin-top: 1rem;
}

.conditional-field.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* --------------------------------------------
   Step Navigation Buttons
   -------------------------------------------- */

.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.step-nav .btn {
  padding: 0.9rem 1.6rem;
  font-size: 1.1rem;
}

/* Disabled state */
.step-nav .btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* --------------------------------------------
   Review Step (Summary)
   -------------------------------------------- */

.review-box {
  background-color: var(--cream);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.review-box h4 {
  color: var(--chestnut);
  margin-bottom: 0.5rem;
}

.review-box p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* --------------------------------------------
   Completion Screen
   -------------------------------------------- */

.form-complete {
  text-align: center;
  padding: 3rem 1rem;
}

.form-complete h2 {
  color: var(--orange);
  margin-bottom: 1rem;
}

.form-complete p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------
   Mobile Adjustments
   -------------------------------------------- */

@media (max-width: 768px) {

  .step-indicator {
    flex-direction: column;
    gap: 1rem;
  }

  .step-indicator .step {
    text-align: left;
  }

  .step-indicator .step-number {
    margin: 0 0.5rem 0 0;
  }

  .step-indicator .step-label {
    display: inline-block;
  }

  .step-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
/* ============================================
   SECTION 30 — ANIMATIONS 2.0
   Scroll‑Trigger • Staggered • Parallax
   ============================================ */

/* --------------------------------------------
   Scroll‑Trigger Base Class
   -------------------------------------------- */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------
   Staggered Reveal (Children)
   -------------------------------------------- */

.stagger-parent {
  opacity: 1;
}

.stagger-parent .stagger-item {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.stagger-parent.visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item.delay-1 { transition-delay: 0.15s; }
.stagger-item.delay-2 { transition-delay: 0.3s; }
.stagger-item.delay-3 { transition-delay: 0.45s; }
.stagger-item.delay-4 { transition-delay: 0.6s; }

/* --------------------------------------------
   Fade + Slide Combo
   -------------------------------------------- */

.fade-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.fade-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.fade-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------
   Parallax Background (CSS‑Only)
   -------------------------------------------- */

.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* --------------------------------------------
   Depth Motion (Subtle Zoom)
   -------------------------------------------- */

.depth-zoom {
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

.depth-zoom.visible {
  transform: scale(1);
}

/* --------------------------------------------
   Fade‑Up Soft
   -------------------------------------------- */

.fade-up-soft {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease;
}

.fade-up-soft.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------
   Fade‑In Slow
   -------------------------------------------- */

.fade-in-slow {
  opacity: 0;
  transition: opacity 1.4s ease;
}

.fade-in-slow.visible {
  opacity: 1;
}

/* --------------------------------------------
   Zoom‑In Reveal
   -------------------------------------------- */

.zoom-in {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.7s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------
   Rotate‑In (Subtle)
   -------------------------------------------- */

.rotate-in {
  opacity: 0;
  transform: rotate(-4deg) scale(0.98);
  transition: all 0.8s ease;
}

.rotate-in.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
/* ============================================
   SECTION 31 — PAGE‑SPECIFIC OVERRIDES
   Home • Dealer • Product • Landing • Blog
   ============================================ */

/* --------------------------------------------
   HOME PAGE OVERRIDES
   -------------------------------------------- */

.home-hero {
  padding: 6rem 2rem 5rem 2rem;
}

.home-hero h1 {
  font-size: 3rem;
}

.home-feature-row {
  margin-top: 3rem;
}

.home-feature-row .feature-card {
  padding: 2.2rem;
}

/* Tighten spacing on mobile */
@media (max-width: 768px) {
  .home-hero {
    padding: 4rem 1.5rem;
  }

  .home-hero h1 {
    font-size: 2.2rem;
  }
}

/* --------------------------------------------
   DEALER PROGRAM PAGE OVERRIDES
   -------------------------------------------- */

.dealer-page .dealer-benefits {
  padding-top: 5rem;
}

.dealer-page .dealer-step {
  margin-bottom: 4rem;
}

.dealer-page .dealer-step-number {
  width: 80px;
  height: 80px;
  font-size: 2.2rem;
}

/* Highlight CTA section */
.dealer-page .lp-cta-bar {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* --------------------------------------------
   PRODUCT PAGE OVERRIDES
   -------------------------------------------- */

.product-page .product-hero {
  padding: 5rem 2rem;
}

.product-page .product-hero h1 {
  font-size: 2.8rem;
  color: var(--chestnut);
}

.product-page .specs-table {
  margin-top: 3rem;
}

.product-page .product-features {
  margin-top: 3rem;
}

/* Gallery spacing */
.product-page .product-gallery {
  margin-top: 2.5rem;
}

/* --------------------------------------------
   LANDING PAGE OVERRIDES
   -------------------------------------------- */

.landing-page .slim-hero {
  padding: 4rem 1.5rem;
}

.landing-page .lp-benefits {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.landing-page .lp-cta-bar {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

/* Reduce spacing for high‑conversion funnels */
.landing-page .minimal-section {
  padding: 2.5rem 1.5rem;
}

/* --------------------------------------------
   BLOG PAGE OVERRIDES
   -------------------------------------------- */

.blog-page .blog-grid {
  margin-top: 4rem;
}

.blog-page .blog-card img {
  height: 220px;
}

.blog-page .article-wrapper {
  padding: 3.5rem 2rem;
}

.blog-page .article-title {
  font-size: 2.6rem;
}

/* --------------------------------------------
   DEALER PORTAL OVERRIDES
   -------------------------------------------- */

.portal-page .portal-content {
  padding-top: 4rem;
}

.portal-page .dashboard-cards {
  margin-top: 2rem;
}

.portal-page .portal-table {
  margin-top: 2.5rem;
}

/* --------------------------------------------
   MOBILE PAGE‑SPECIFIC TUNING
   -------------------------------------------- */

@media (max-width: 768px) {

  /* Home */
  .home-feature-row {
    margin-top: 2rem;
  }

  /* Dealer */
  .dealer-page .dealer-step {
    flex-direction: column;
    text-align: center;
  }

  /* Product */
  .product-page .product-hero h1 {
    font-size: 2.2rem;
  }

  /* Landing */
  .landing-page .lp-benefit {
    padding: 1.5rem;
  }

  /* Blog */
  .blog-page .article-title {
    font-size: 2.2rem;
  }
}
/* ============================================
   SECTION 32 — PRINT STYLES
   Clean • Ink‑Safe • Professional
   ============================================ */

@media print {

  /* Remove non‑essential elements */
  nav,
  .header,
  .footer,
  .btn,
  .btn-primary,
  .btn-secondary,
  .notice-bar,
  .urgency-bar,
  .lp-cta-bar,
  .video-hero video,
  .lightbox-overlay,
  .mega-menu,
  .portal-sidebar {
    display: none !important;
  }

  /* Reset background colors for ink savings */
  * {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Body text */
  body {
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
    page-break-after: avoid;
  }

  /* Links become plain text */
  a {
    color: #000 !important;
    text-decoration: none !important;
  }

  /* Images scale properly */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Tables print cleanly */
  table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 1.5rem !important;
  }

  th, td {
    border: 1px solid #000 !important;
    padding: 6px !important;
  }

  /* Remove animations */
  .scroll-reveal,
  .fade-up-soft,
  .zoom-in,
  .rotate-in,
  .fade-slide-left,
  .fade-slide-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Page breaks for long content */
  .article-wrapper,
  .product-page,
  .dealer-page,
  .landing-page {
    page-break-inside: avoid;
  }

  /* Print‑friendly spacing */
  .section,
  .content,
  .article-body,
  .portal-content {
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
  }
}
/* Sticky Header Shadow */
.header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Menu Slide Animation Support */
.mobile-nav {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
/* RESET HEADER LAYOUT AFTER FILE REPLACEMENT */
header, .site-header, #masthead {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 20px !important;
}

/* FIX NAV MENU JAMMING LEFT */
header nav, .site-header nav, #masthead nav {
    margin-left: auto !important;
    display: flex !important;
}

/* ENSURE LOGO STAYS LEFT, MENU STAYS RIGHT */
.header-logo, .site-branding {
    margin-right: auto !important;
}

/* PREVENT FULL-WIDTH COLLAPSE */
header * {
    text-align: left !important;
}
/* FORCE HORIZONTAL HEADER ROW */
header .container, 
#masthead .container, 
.site-header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}
