/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --red: #A41E29;
  --red-dark: #8a1822;
  --red-gradient: linear-gradient(90deg, #A61D23, #CB3232, #A71E23);
  --black: #111111;
  --dark: #1a1a1a;
  --dark-2: #222;
  --grey: #f5f5f5;
  --grey-2: #e8e8e8;
  --text-muted: #666;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-grey { background: var(--grey); }
.text-center { text-align: center; }
.text-red { color: var(--red); }

.section-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-dark .section-subtitle { color: #aaa; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(164,30,41,0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(164,30,41,0.45); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--red); }
.btn-schedule {
  background: #fff;
  color: var(--dark);
  border: 2px solid #fff;
  font-weight: 700;
}
.btn-schedule svg { margin-right: 6px; }
.btn-schedule:hover { background: transparent; color: #fff; border-color: #fff; }
.hero-quote-btn { background: #fff; color: var(--red); }
.hero-quote-btn:hover { background: #f0f0f0; }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #333; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/fix-it-right-garage-doors-gta.webp');
  background-size: cover;
  background-position: bottom;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.58) 45%, rgba(164,30,41,0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.hero-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-logo-row img.hero-logo { width: 400px; height: auto; }
.hero-logo-row img.hero-canadian { width: 250px; height: auto; border-radius: 6px; }
.hero-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(164,30,41,0.25);
  border: 1px solid rgba(164,30,41,0.5);
  color: #ff8a8a;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: #fff;
}
.hero-sub {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; margin-bottom: 10px; min-height: 58px; }
.hero-cta-row > .btn { min-width: 260px; justify-content: center; }
.hero-trust-wrap { display: flex; align-items: center; margin-top: 16px; min-height: 48px; }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--black);
}
.hero-form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.hero-form-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #444; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: #fafafa;
  color: #111;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.75rem; color: #999; text-align: center; margin-top: 10px; }
.spinner { display: inline-block; width: 18px; height: 18px; border: 3px solid #ddd; border-top-color: var(--red); border-radius: 50%; animation: spin 0.6s linear infinite; margin-right: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: #fff;
  padding: 60px 0 20px;
}
.reviews-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.reviews-section-head .section-tag { display: inline-block; margin-bottom: 12px; }
.reviews-section-head h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.reviews-section-head p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ===== OTTAWA HARDCODED REVIEWS ===== */
.ottawa-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ottawa-review-card {
  background: #fff;
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.ottawa-review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.ottawa-review-stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 10px; }
.ottawa-review-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.ottawa-review-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.ottawa-review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.ottawa-review-meta strong { color: var(--dark); }
.ottawa-review-meta span { color: var(--text-muted); }

/* ===== INSTALLATION SECTION ===== */
.install-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.install-content h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.install-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.install-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.install-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.install-features li svg { flex-shrink: 0; margin-top: 2px; }
.install-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.install-highlight-card {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.install-highlight-icon { font-size: 2rem; margin-bottom: 8px; }
.install-highlight-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.install-highlight-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== ABOUT US ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-left .section-tag { margin-bottom: 12px; display: inline-block; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.about-stat { text-align: center; }
.about-stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.review-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.review-badge-icon { flex-shrink: 0; }
.review-badge strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.review-badge-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 1px; }

/* ===== COUPONS / SPECIALS ===== */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.coupon {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 2px dashed var(--grey-2);
  transition: var(--transition);
}
.coupon:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.coupon-left {
  background: var(--red-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  position: relative;
}
.coupon-left::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}
.coupon-amount {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.coupon-amount span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 4px;
}
.coupon-right {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coupon-right h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.coupon-right p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.coupon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.coupon-code {
  background: var(--grey);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px dashed var(--grey-2);
}
.coupon-expiry {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
}

/* ===== VIDEO TESTIMONIALS ===== */
.video-testimonials { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--grey-2); }
.video-testimonials-head { text-align: center; margin-bottom: 36px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #111;
}
.video-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.video-item:hover img { transform: scale(1.04); }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.18);
  transition: background 0.2s;
}
.video-item:hover .video-play-btn { background: rgba(0,0,0,0.38); }
.video-play-btn svg {
  width: 72px; height: 50px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  transition: transform 0.2s;
}
.video-item:hover .video-play-btn svg { transform: scale(1.1); }
.video-item iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.video-item.video-expanded {
  grid-column: 1 / -1;
  transition: all 0.3s ease;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-2);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background: #1a1a1a;
}
.service-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dark);
}
.service-bullets {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 6px;
  flex-shrink: 0;
}
.service-btn {
  display: block;
  width: 100%;
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.87rem;
  transition: var(--transition);
}
.service-btn:hover { background: var(--red); }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  max-width: 760px;
  margin: 0 auto;
}
.why-image {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-image img { width: 100%; height: 420px; object-fit: cover; }
.why-badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; border-radius: 10px; padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.why-badge-float-icon { color: var(--red); }
.why-badge-float strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--red); }
.why-badge-float span { font-size: 0.78rem; color: #666; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon {
  width: 44px; height: 44px;
  background: #fff0f1; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.why-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 0.87rem; color: var(--text-muted); }

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.stat-item { background: #222; padding: 32px 20px; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: #aaa; }

/* ===== PROBLEMS ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: #222; border: 1px solid #333; border-radius: 12px;
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
}
.problem-card:hover { border-color: var(--red); transform: translateY(-2px); }
.problem-num { font-size: 2rem; font-weight: 900; color: rgba(164,30,41,0.3); line-height: 1; min-width: 48px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.problem-card p { font-size: 0.87rem; color: #aaa; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: #fff; border-radius: 12px; padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--grey-2);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.star { color: #f59e0b; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: #444; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-location { font-size: 0.78rem; color: #999; }
.review-badge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #4285F4; margin-top: 4px; font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--grey-2); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: #fff; border: none;
  padding: 20px 24px; font-size: 0.95rem; font-weight: 600; color: var(--black);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: var(--transition); font-family: inherit;
}
.faq-question:hover { background: var(--grey); }
.faq-question.open { background: #fff0f1; color: var(--red); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; color: var(--red); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: #fff; }
.faq-answer-inner { padding: 16px 24px 20px; font-size: 0.9rem; color: #555; line-height: 1.75; }
.faq-answer.open { max-height: 400px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--black); }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(164,30,41,0.1); border: 1px solid rgba(164,30,41,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.contact-detail a, .contact-detail span { color: var(--black); font-size: 1rem; font-weight: 600; }
.contact-detail a:hover { color: var(--red); }
.contact-form-card { background: #fff; border-radius: 12px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--grey-2); }
.contact-form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.contact-form-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== WE ACCEPT ===== */
.we-accept-block img { max-width: 100%; height: auto; }

/* ===== COVERAGE AREA ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.area-pill {
  background: #fff; border: 1px solid var(--grey-2); border-radius: 8px;
  padding: 12px 16px; font-size: 0.87rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.area-pill:hover { border-color: var(--red); color: var(--red); }
.area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ===== PAYMENT METHODS ===== */
.payment-icons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.payment-icon {
  background: #fff; border: 1px solid var(--grey-2); border-radius: 6px;
  padding: 8px 14px; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 600; color: #444;
}
.payment-icon img { height: 28px; width: auto; }

/* ===== FOOTER ===== */
.footer { background: #0a0a0a; color: #aaa; }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: #777; }
.footer-bottom a:hover { color: var(--red); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark); border-top: 2px solid var(--red);
  padding: 12px 16px; z-index: 200; gap: 10px;
}
.sticky-cta a { flex: 1; text-align: center; font-size: 0.95rem; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.75);
  align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 12px; padding: 32px;
  width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: #999; font-family: inherit;
}
.modal-close:hover { color: var(--red); }
.modal-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; color: var(--black); }
.modal-box > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }


/* ===== ANIMATION ===== */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(164,30,41,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(164,30,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(164,30,41,0); }
}
.pulse { animation: pulse-ring 2.5s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-cols { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { max-width: 500px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-play-btn svg { width: 40px; height: 28px; }
  .problems-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info, .contact-form-card { min-width: 0; overflow: hidden; }
  .contact-form-card { padding: 20px; }
  /* About Us */
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-left .section-title { text-align: center !important; }
  .about-left { text-align: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-badges { grid-template-columns: 1fr 1fr; max-width: 100%; margin: 0 auto; }
  .review-badge { padding: 14px 12px; gap: 10px; }
  .review-badge strong { font-size: 0.85rem; }
  .about-left .btn-lg { width: 100%; justify-content: center; padding: 16px 20px; }
  /* Coupons */
  .coupons-grid { grid-template-columns: 1fr; max-width: 100%; margin-left: auto; margin-right: auto; }
  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-pill { padding: 10px 12px; font-size: 0.82rem; }
  /* Sticky CTA */
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  /* Hero */
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-logo-row { text-align: center; }
  .hero-logo-row img.hero-logo { width: 260px; }
  .hero-logo-row img.hero-canadian { width: 180px; }
  .hero-overlay { background: linear-gradient(105deg, rgba(10,10,10,0.75) 45%, rgba(164,30,41,0.3) 100%); }
  .hero-pills { justify-content: center; margin-bottom: 16px; }
  .hero-trust-wrap { margin-bottom: 12px; margin-top: 8px; }
  .hero-cta-row { justify-content: center; margin-top: 8px; }
  .hero-cta-row > .btn { min-width: 0; width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  /* Installation */
  .install-grid { grid-template-columns: 1fr; }
  .install-highlights { flex-direction: row; flex-wrap: wrap; }
  .install-highlight-card { flex: 1 1 calc(50% - 10px); }
  /* General overflow prevention */
  .btn-lg { padding: 16px 24px; font-size: 1rem; }
  .btn { white-space: normal; text-align: center; }
  .section-title { word-break: break-word; }
  .contact-info h2 { font-size: 1.5rem; }
  .contact-detail a, .contact-detail span { word-break: break-word; overflow-wrap: anywhere; }
  .contact-info p { word-break: break-word; }
}
@media (max-width: 600px) {
  .ottawa-reviews-grid { grid-template-columns: 1fr; }
  .hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-pill { white-space: nowrap; font-size: clamp(0.65rem, 2.8vw, 0.85rem); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-bg { background-image: url('images/Mobile-Background-Fix-It-Right.webp'); opacity: 0.6; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-call-btn { width: 100%; justify-content: center; }
  .btn-schedule { width: 100%; justify-content: center; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .about-badges { grid-template-columns: 1fr; }
  .about-stats { gap: 12px; }
  .about-stat-number { font-size: 1.3rem; }
  .install-highlight-card { flex: 1 1 100%; }
  .coupon-footer { flex-direction: column; align-items: flex-start; }
  .form-row-2col { grid-template-columns: 1fr; }
}
