```css
/* =========================================================
   Eezi-Over Roofing — Shared Stylesheet
   Design language inspired by eezi-roof.com
   ========================================================= */

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

:root {
  /* Eezi-Over Branding Colors (Primary/Accent) */
  --eezi-primary:   #3A4A3A;   /* Vibrant green for CTAs, highlights */
  --eezi-primary-dk: #3A4A3A;   /* Darker green for hover states */
  --eezi-accent:     #86efac;   /* Light green for secondary highlights */
  --eezi-warning:    #f59e0b;   /* For stars or warning messages */

  /* Dark Theme Palette */
  --bg-main:          #050e0a;  /* Very dark green-black main background */
  --bg-section-light: #0a1a10;  /* Dark green panels */
  --bg-section-medium: #0d2115; /* Medium dark green sections */
  --bg-section-dark:  #071209;  /* Deepest dark green sections */
  --bg-section-dark-gradient: #112b18; /* For gradients within dark sections */

  --text-primary:     #f4f7fb;  /* Main light text color */
  --text-muted:       #aab8ca;  /* Muted text color */
  --text-dim:         rgba(255,255,255,.65); /* Even dimmer text */

  --border-color:     rgba(255, 255, 255, 0.1); /* General border/line color */
  --shadow:           0 8px 40px rgba(0, 0, 0, 0.35); /* Consistent dark shadow */
  --shadow-lg:        0 12px 60px rgba(0,0,0,.45); /* Larger dark shadow */

  --radius:           8px;
  --radius-lg:        16px;
  --transition:       all .25s ease;
  --font:             'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w:            1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden; /* Belt-and-braces overflow prevention */
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background:
    radial-gradient(circle at top right, rgba(34,197,94,0.07), transparent 25%),
    radial-gradient(circle at left center, rgba(34,197,94,0.04), transparent 25%),
    linear-gradient(180deg, #040c07 0%, var(--bg-main) 100%);
  line-height: 1.6;
  font-size: 18px;
  -webkit-text-size-adjust: 100%; /* Prevent iOS font scaling on rotate */
  text-size-adjust: 100%;
}

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

a { color: var(--eezi-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--eezi-primary-dk); }

ul { list-style: none; }

/* --- Typography ----------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary); /* Headings are bright */
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.3rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* --- Utility -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 3.5rem 0; }
.section-sm { padding: 1rem 0; }
.section-lg { padding: 5rem 0; }

.text-center { text-align: center; }
.text-orange { color: var(--eezi-primary); }
.text-white  { color: var(--text-primary); }
.text-navy   { color: var(--bg-section-dark); } /* Use the color, not the background variable */

/* Backgrounds */
.bg-white   { background: var(--bg-section-light); }
.bg-gray    { background: var(--bg-section-light); }
.bg-sage    { background: var(--bg-section-medium); }
.bg-navy    { background: var(--bg-section-dark); }
.bg-orange  { background: var(--eezi-primary); } /* Direct use of primary color */
.bg-gradient{ background: linear-gradient(135deg, var(--bg-section-dark) 0%, var(--bg-section-dark-gradient) 100%); }

.section-sm { padding: 1.25rem 0; }
.section-header { max-width: 640px; margin: 0 auto 2rem; }
.hero { padding: 2rem 0 2rem; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eezi-primary);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 50px;
  padding: .3rem .9rem;
  margin-bottom: 1rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 2rem;
}
.section-header p { font-size: 1.1rem; margin-top: .75rem; color: var(--text-dim); }

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--eezi-primary);
  color: var(--text-primary);
  border-color: var(--eezi-primary);
}
.btn-primary:hover {
  background: var(--eezi-primary-dk);
  border-color: var(--eezi-primary-dk);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-section-dark); /* Dark text on light hover */
  border-color: var(--text-primary);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--eezi-primary); /* Primary green text */
  border-color: var(--eezi-primary);
}
.btn-outline-dark:hover {
  background: var(--eezi-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.btn-lg { padding: .95rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* --- Header / Navigation -------------------------------- */
.site-header {
  position: static;
  background: var(--eezi-primary);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.35); /* Darker shadow */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 144px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--eezi-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -.05em;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary); /* Light text */
}
.nav-logo-text span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3d0d;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; background: #0d1f0f !important; border-color: #0d1f0f !important; color: #fff !important; }
.nav-cta:hover { background: #050a06 !important; border-color: #050a06 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — spans full header width */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--eezi-primary);
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 1rem 1.5rem 1.75rem;
  gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .65rem 0;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: .95rem;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--eezi-primary); }
.nav-mobile .btn { margin-top: .75rem; justify-content: center; }

/* Page top padding (header offset) */
.page-top { padding-top: 0; }

/* Hero logo */
.hero-logo {
  margin-bottom: 2rem;
}
.hero-logo-img {
  height: 100px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(34,197,94,0.25));
}

/* --- Hero Sections -------------------------------------- */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--eezi-primary);
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Original pattern, updated opacity for dark theme */
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.hero-content .section-tag { background: rgba(77,139,114,.2); color: var(--eezi-accent); }
.hero-content h1 { color: var(--text-primary); margin-bottom: 1.25rem; }
.hero-content p { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-dim);
}
.hero-badge svg { color: var(--eezi-primary); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media .hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-media-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-section-light); /* Dark panel background */
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-media-badge .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(77,139,114,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eezi-primary);
  flex-shrink: 0;
}
.hero-media-badge strong { display: block; font-size: .9rem; color: var(--text-primary); }
.hero-media-badge span  { font-size: .75rem; color: var(--text-muted); }

/* Smaller page hero */
.page-hero {
  background: linear-gradient(135deg, var(--bg-section-dark) 0%, var(--bg-section-dark-gradient) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--text-primary); margin-bottom: 1rem; }
.page-hero .lead { color: var(--text-dim); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: var(--text-dim); /* Muted light text */
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* --- Stats Bar ------------------------------------------ */
.stats-bar {
  background: var(--bg-section-light); /* Dark panel background */
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--eezi-primary);
  line-height: 1;
}
.stat-item span {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .25rem;
  display: block;
}

/* --- Features / Cards ----------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-section-light); /* Dark panel background */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(34,197,94,.35);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(34,197,94,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eezi-primary);
  margin-bottom: 1.25rem;
}
.feature-card h4 { margin-bottom: .5rem; color: var(--text-primary); }
.feature-card p  { font-size: .9rem; margin: 0; color: var(--text-muted); }

/* --- Two-column content --------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-content .section-tag { display: inline-block; }
.split-content h2 { margin: .5rem 0 1rem; }
.split-content p { margin-bottom: 1.25rem; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* --- Kit Contents --------------------------------------- */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 1rem;
}
.kit-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg-section-light); /* Dark panel background */
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}
.kit-item:hover {
  border-color: var(--eezi-primary);
  background: rgba(77,139,114,.04);
}
.kit-item svg { color: var(--eezi-primary); flex-shrink: 0; }

/* --- Video Section -------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.video-wrapper {
  background: var(--bg-section-dark); /* Dark green background */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.video-caption {
  padding: 1rem 1.25rem;
  background: var(--bg-section-dark);
}
.video-caption p { color: var(--text-dim); font-size: .85rem; margin: 0; }

/* --- Gallery -------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-section-medium); /* Slightly lighter dark background for placeholder */
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,42,.65); /* Darker green overlay */
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 22, 0.88); /* Very dark, slight blur */
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: .5rem;
  opacity: .7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* --- Order Form ----------------------------------------- */
.order-section {
  background: var(--bg-section-medium); /* Slightly lighter dark panel */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text-primary);
  background: var(--bg-main); /* Very dark background for inputs */
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--eezi-primary);
  box-shadow: 0 0 0 3px rgba(77,139,114,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .25rem;
}

.form-success {
  display: none;
  background: rgba(68, 209, 143, 0.1); /* Light green tint */
  border: 1px solid rgba(68, 209, 143, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #6ee7b7; /* Brighter green text */
  font-weight: 500;
  margin-top: 1rem;
}
.form-error {
  display: none;
  background: rgba(255, 80, 80, 0.1); /* Red tint */
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #ff8585; /* Brighter red text */
  font-weight: 500;
  margin-top: 1rem;
}

/* --- Contact Card --------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-section-light); /* Dark panel background */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(77,139,114,.3);
  transform: translateY(-3px);
}
.contact-card .cc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(77,139,114,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eezi-primary);
  margin: 0 auto 1rem;
}
.contact-card h4 { margin-bottom: .5rem; font-size: 1rem; color: var(--text-primary); }
.contact-card p,
.contact-card a { font-size: .9rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--eezi-primary); }

/* --- Testimonials --------------------------------------- */
.testimonial-card {
  background: var(--bg-section-light); /* Dark panel background */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eezi-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text-primary); }
.testimonial-author span  { font-size: .8rem; color: var(--text-muted); }

/* Stars */
.stars { color: var(--eezi-warning); font-size: .9rem; margin-bottom: .5rem; }

/* --- CTA Banner ----------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--eezi-primary) 0%, var(--eezi-primary-dk) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Original pattern, updated opacity for dark theme */
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--text-primary); margin-bottom: 1rem; position: relative; }
.cta-banner p  { color: var(--text-dim); margin-bottom: 2rem; font-size: 1.1rem; position: relative; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* --- Footer --------------------------------------------- */
.site-footer {
  background: var(--eezi-primary);
  color: var(--text-dim);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}
.footer-brand .nav-logo-text strong { color: var(--text-primary); }
.footer-brand .nav-logo-text span  { color: var(--text-muted); }
.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-col h5 {
  color: var(--text-primary);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  color: var(--text-dim);
  font-size: .9rem;
}
.footer-col ul a:hover { color: var(--text-primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .9rem;
  color: var(--text-dim);
}
.footer-contact-item svg { color: var(--eezi-primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-dim); }
.footer-contact-item a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* footer text adjustments on green bg */
.site-footer .footer-brand p,
.site-footer .footer-col ul a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item a { color: rgba(255,255,255,0.85); }
.site-footer .footer-col h5 { color: #ffffff; }
.site-footer .footer-bottom { color: rgba(255,255,255,0.6); }
.site-footer .footer-bottom a { color: rgba(255,255,255,0.6); }
.site-footer .footer-bottom a:hover { color: #ffffff; }
.site-footer .footer-col ul a:hover { color: #ffffff; }
.site-footer .footer-inner { border-bottom: 1px solid rgba(255,255,255,0.25); }
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--eezi-primary), rgba(77,139,114,.1));
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: .4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--eezi-primary);
  border: 3px solid var(--bg-section-light); /* Dark background for border */
  box-shadow: 0 0 0 3px rgba(77,139,114,.3);
}
.timeline-year {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eezi-primary);
  margin-bottom: .35rem;
}
.timeline-item h4 { margin-bottom: .5rem; color: var(--text-primary); }
.timeline-item p  { font-size: .95rem; margin: 0; color: var(--text-muted); }

/* --- Countries Badge ------------------------------------ */
.countries-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg-section-light); /* Dark panel background */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.countries-wrap img { max-width: 480px; }

/* --- Responsive ----------------------------------------- */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-media { display: block; margin-top: 2rem; }
  .hero-logo-img { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-section.reverse { direction: ltr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .video-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 100px; }
  .nav-logo-img { height: 80px; max-width: 60vw; }
  .nav-mobile { padding: 1rem 1.25rem 1.75rem; }

  body { font-size: 17px; }

  .container { padding: 0 1.25rem; }
  .section { padding: 2.5rem 0; }
  .section-lg { padding: 3.5rem 0; }
  .section-header { margin-bottom: 1.75rem; }

  .hero-inner { padding: 2.5rem 0 2rem; }
  .hero-logo-img { height: 80px; }
  .hero-media { margin-top: 1.5rem; }
  .hero-badges { gap: 1rem; }

  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card { padding: 1.5rem; }

  .stats-bar { padding: 1.5rem 1rem; gap: .75rem; }
  .stat-item { padding: .75rem .5rem; }
  .stat-item strong { font-size: 2rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; padding: .85rem 1rem; } /* 16px prevents iOS zoom */

  .cta-banner { padding: 2.5rem 1.5rem; }
  .order-section { padding: 1.75rem 1.25rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }

  .video-wrapper iframe { min-height: 220px; }
  .map-wrapper { height: 280px; }

  .contact-cards { grid-template-columns: 1fr 1fr; }
  .testimonial-card { padding: 1.5rem; }
  .order-intro { flex-direction: column; gap: .5rem; }
}

/* Mobile */
@media (max-width: 520px) {
  .nav-inner { height: 80px; }
  .nav-logo-img { height: 60px; max-width: 55vw; }
  .nav-toggle { padding: 8px; }
  .nav-toggle span { width: 28px; height: 3px; }
  .nav-mobile { padding: 1rem 1rem 1.75rem; }

  body { font-size: 16px; }

  .container { padding: 0 1rem; }
  .section { padding: 2rem 0; }
  .section-lg { padding: 2.75rem 0; }

  h1 { font-size: 2rem; line-height: 1.15; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.1rem; }
  .lead { font-size: 1.1rem; }

  .hero-inner { padding: 1.75rem 0 1.5rem; text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-badges { justify-content: flex-start; }
  .hero-logo-img { height: 60px; max-width: 200px; }
  .hero-media { margin-top: 1.25rem; }
  .hero-media-badge { left: .5rem; bottom: -.75rem; padding: .75rem 1rem; }

  .btn { padding: .75rem 1.4rem; font-size: .95rem; }
  .btn-lg { padding: .9rem 1.6rem; font-size: 1rem; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: .75rem; width: 100%; }

  .stats-bar { grid-template-columns: 1fr 1fr; padding: 1.25rem .75rem; }
  .stat-item strong { font-size: 1.75rem; }
  .stat-item span { font-size: .78rem; }

  .gallery-grid { grid-template-columns: 1fr; gap: .75rem; }
  .kit-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .section-header { text-align: left; }
  .section-header p { font-size: 1rem; }
  .section-tag { font-size: .7rem; }

  .feature-card { padding: 1.25rem; }
  .feature-icon { width: 48px; height: 48px; }

  .split-section { gap: 1.5rem; }
  .split-media img { max-height: 280px; }

  .order-section { padding: 1.25rem 1rem; border-radius: var(--radius); }
  .form-group label { font-size: .9rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; padding: .85rem .9rem; }
  .submit-row { flex-direction: column; gap: 1rem; align-items: flex-start; }

  .cta-banner { padding: 2rem 1.25rem; border-radius: var(--radius); }
  .cta-banner .btn-group { flex-direction: column; align-items: stretch; }
  .cta-banner .btn-group .btn { text-align: center; justify-content: center; }

  .footer-inner { gap: 1.5rem; }
  .footer-col h5 { font-size: .8rem; margin-bottom: 1rem; }
  .footer-col ul { gap: .5rem; }
  .footer-contact-item { font-size: .85rem; }

  .testimonial-card { padding: 1.25rem; }
  .timeline { padding-left: 1.5rem; }
  .page-hero { padding: 3rem 0 2.5rem; }

  .map-wrapper { height: 240px; }
  .video-wrapper iframe { min-height: 200px; }

  .spec-table th,
  .spec-table td { padding: .6rem .75rem; font-size: .85rem; }
}

/* --- Animations ----------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }\
}
.fade-up { animation: fadeUp .5s ease forwards; }
.fade-up-d1 { animation-delay: .1s; opacity: 0; }
.fade-up-d2 { animation-delay: .2s; opacity: 0; }
.fade-up-d3 { animation-delay: .3s; opacity: 0; }

/* Scroll-reveal (toggled by JS) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Page-specific extras (from the-roof-kit.html <style> tag, now in main css) */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  background: rgba(77,139,114,.1);
  border: 1.5px solid rgba(77,139,114,.3);
  border-radius: 50px;
  padding: .4rem 1.1rem;
  margin-bottom: 1.5rem;
}
.price-badge strong { font-size: 1.6rem; color: var(--eezi-primary); font-weight: 800; }
.price-badge span   { font-size: .85rem; color: var(--text-muted); }

.load-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--bg-section-dark);
  color: var(--text-primary);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: .9rem;
}
.load-badge svg { color: var(--eezi-primary); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: .9rem;
}
.spec-table th { background: var(--bg-main); font-weight: 700; color: var(--text-primary); width: 40%; }
.spec-table tr:last-child td,
.spec-table tr:last-child th { border-bottom: none; }
.spec-table tr:hover td,
.spec-table tr:hover th { background: rgba(77,139,114,.04); }

.order-intro {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(77,139,114,.08);
  border: 1px solid rgba(77,139,114,.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.order-intro svg { color: var(--eezi-primary); flex-shrink: 0; }
.order-intro p  { margin: 0; font-size: .9rem; color: var(--text-muted); }

.submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.submit-row p { margin: 0; font-size: .82rem; color: var(--text-muted); }

/* Page-specific extras (from contact.html <style> tag, now in main css) */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =========================================================
   Mobile centering & overflow fixes
   ========================================================= */

/* All elements respect the box model — nothing bleeds out */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }

@media (max-width: 768px) {
  /* Consistent, symmetric horizontal padding for every container */
  .container { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }

  /* Header nav row: logo left, toggle right */
  .nav-inner { padding: 0; justify-content: space-between; width: 100%; }

  /* Mobile drawer matches container padding — no negative margins */
  .nav-mobile {
    margin: 0 !important;
    padding: 1rem 1.25rem 1.75rem !important;
    width: 100%;
  }

  /* Sections and their direct children always fill their container */
  section, header, footer, .section-header,
  .hero-content, .split-content, .cta-banner,
  .footer-brand, .footer-col {
    width: 100%;
    max-width: 100%;
  }

  /* Hero image — show full image, no cropping at tablet too */
  .hero { overflow: visible; }
  .hero-media { overflow: visible; }
  .hero-media .hero-img {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  /* Images never overflow */
  img { max-width: 100%; height: auto; }
}

@media (max-width: 520px) {
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
  .nav-mobile { padding: 1rem 1rem 1.75rem !important; }

  /* Hero image fix — show full image, no cropping */
  .hero { overflow: visible; }
  .hero-media { overflow: visible; }
  .hero-media .hero-img {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    width: 100% !important;
  }
  .hero-media-badge { display: none; } /* hide the badge that pushes layout on tiny screens */

  /* Hard stop on all elements to prevent horizontal overflow */
  * { max-width: 100%; }
  img, iframe, video { max-width: 100%; }
}
.hours-list { display: flex; flex-direction: column; gap: .5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-color);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-muted); font-weight: 500; }
.hours-row span:last-child  { color: var(--text-primary); font-weight: 600; }
.open-badge {
  display: inline-block;
  background: rgba(68, 209, 143, 0.1);
  color: #6ee7b7;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-left: .5rem;
  vertical-align: middle;
}
.split-content blockquote {
    border-left:4px solid var(--eezi-primary);
    padding-left:1.25rem;
    margin:1.5rem 0;
    font-style:italic;
    color:var(--text-primary); /* Adjusted for dark theme readability */
    font-size:1.1rem;
}
.split-content blockquote small {
    font-size:.85rem;
    font-style:normal;
    color:var(--text-muted);
    margin-top:.5rem;
    display:block;
}

```