/* ============================================================
   RED CLOUD ROOFING LLC — Main Stylesheet
   ============================================================ */

:root {
  --red: #BE2330;
  --red-dark: #9e1a25;
  --dark: #050708;
  --gold: #DEAE52;
  --light-gray: #ECF0F1;
  --text-muted: #989898;
  --body-color: #555555;
  --white: #ffffff;
  --font-heading: 'Akshar', Helvetica, Arial, sans-serif;
  --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
  --font-script: 'Yesteryear', cursive;
  --max-width: 1480px;
  --header-height: 90px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-color);
  line-height: 1.7;
  background: #fff;
}

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

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

ul { list-style: none; }

.hidden { display: none !important; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  width: 82%;
  margin: 0 auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

.script-label {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.script-label--gold { color: var(--gold); }
.script-label--red  { color: var(--red); }

.gold-text { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 30px;
  border: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-block { width: 100%; text-align: center; }

/* ---- Forms ---- */
.form-group { margin-bottom: 12px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: rgba(255,255,255,0.95);
  border: 1px solid #ddd;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: #999; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group select { cursor: pointer; }

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

/* ---- File Upload Zone ---- */
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 18px 16px;
  border: 2px dashed #d0d0d0;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.file-upload-label:hover,
.file-upload-label:focus-within {
  border-color: var(--red);
  background: rgba(190, 35, 48, 0.03);
}
.file-upload-label i {
  font-size: 22px;
  color: var(--text-muted);
  transition: color 0.2s ease;
  pointer-events: none;
}
.file-upload-label:hover i,
.file-upload-label:focus-within i { color: var(--red); }
.file-upload-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  pointer-events: none;
}
.file-upload-optional {
  font-weight: 400;
  color: var(--text-muted);
}
.file-upload-hint {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  pointer-events: none;
}
/* Native input visually hidden but accessible */
.file-upload-label input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
/* State when files are selected */
.file-upload-label.has-files {
  border-style: solid;
  border-color: var(--red);
  background: rgba(190, 35, 48, 0.04);
}
.file-upload-label.has-files i { color: var(--red); }

/* File Upload Helper Text */
.file-upload-helper {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: center;
}

/* File Preview Grid */
.file-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.file-preview-grid:empty { display: none; }

.file-preview-item {
  position: relative;
  width: 76px;
  flex-shrink: 0;
  text-align: center;
}
.file-preview-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  display: block;
}
.file-preview-item__name {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.3;
  word-break: break-all;
  max-width: 76px;
  display: block;
}
.file-preview-item__remove {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}
.file-preview-item__remove:hover { background: var(--red-dark); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background-color: var(--dark);
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__social {
  display: flex;
  gap: 10px;
}

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  transition: var(--transition);
}
.top-bar__social a:hover { background: var(--red); }

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.top-bar__info i { color: var(--gold); margin-right: 5px; }

.top-bar__info a { color: rgba(255,255,255,0.75); }
.top-bar__info a:hover { color: var(--gold); }

/* ============================================================
   MAIN HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  height: var(--header-height);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.site-logo img { max-height: 65px; width: auto; }

/* ---- Main Nav ---- */
.main-nav { flex: 1; }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.main-nav__list > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav__list > li > a:hover,
.main-nav__list > li.has-dropdown:hover > a { color: var(--red); }

/* ---- Dropdowns ---- */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  z-index: 999;
  border-top: 3px solid var(--red);
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-gray); color: var(--red); padding-left: 24px; }

/* ---- Header CTA ---- */
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.header-phone i { margin-right: 5px; }
.header-phone:hover { color: var(--red-dark); }

.site-header__cta .btn { font-size: 13px; padding: 10px 18px; }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV — OVERLAY & DRAWER ELEMENTS
   (hidden on desktop; activated by JS in mobile breakpoint)
   ============================================================ */

/* Backdrop */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer header row — logo + close btn */
.mobile-nav-header {
  display: none; /* shown via media query */
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-nav-logo img { max-height: 48px; width: auto; }

/* X close button inside drawer */
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  padding: 0;
  transition: var(--transition);
}
.mobile-nav-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
}
.mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-nav-close:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* Drawer footer — phone, CTA, social */
.mobile-nav-footer {
  display: none; /* shown via media query */
  flex-direction: column;
  padding: 20px 20px 32px;
  /* Push content above the iPhone home indicator */
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  gap: 16px;
  flex-shrink: 0;
}

.mobile-nav-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.mobile-nav-phone i { color: var(--gold); font-size: 16px; }
.mobile-nav-phone:hover { color: var(--gold); }

.mobile-nav-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.mobile-nav-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}
.mobile-nav-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark); /* fallback while video loads */
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* clicks pass through to form/buttons */
  overflow: hidden;
}

/* Scale the iframe to always cover the container — same as object-fit: cover */
.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Minimum size: fill width or height, whichever is larger */
  width: 100vw;
  height: 56.25vw;   /* 16:9 based on viewport width */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 based on viewport height */
  transform: translate(-50%, -50%);
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.72);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
}

.hero__text { flex: 1; }

.hero__script {
  font-family: var(--font-script);
  font-size: 40px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.8;
}

/* ---- Hero Form Card ---- */
.hero__form-card {
  background: rgba(5,7,8,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  width: 360px;
  flex-shrink: 0;
}

.hero__form-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background-color: var(--dark);
  padding: 40px 0;
  border-top: 3px solid var(--red);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.feature-item img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ============================================================
   FAMILY OWNED BAND
   ============================================================ */
.family-band {
  background-color: #0d1114;
  padding: 60px 0;
}

.family-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.family-band__text h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.family-band__badge img { max-width: 160px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--light-gray); }

.services-section__intro {
  text-align: center;
  padding: 70px 0 50px;
}

.services-section__intro h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.services-section__intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---- Service Card Backgrounds ---- */
.service-card--commercial    { background-image: url('../images/commerical-roofing.jpg'); }
.service-card--residential   { background-image: url('../images/residential-roofing.webp'); }
.service-card--skylights     { background-image: url('../images/skylights.jpg'); }
.service-card--gutters       { background-image: url('../images/gutters.jpg'); }
.service-card--roof-repair   { background-image: url('../images/roof-repair.webp'); }
.service-card--storm-damage  { background-image: url('../images/storm-damage.jpg'); }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px;
  background: var(--light-gray);
}

.service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,8,0.88) 0%, rgba(5,7,8,0.15) 55%, transparent 100%);
  transition: var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(190,35,48,0.92) 0%, rgba(190,35,48,0.35) 55%, transparent 100%);
}

.service-card__content {
  position: relative;
  z-index: 1;
  padding: 24px 28px;
  width: 100%;
}

.service-card__content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.service-card:hover .service-card__more {
  opacity: 1;
  transform: translateY(0);
}

.service-card__more img { width: 18px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background-image: url('../images/cta-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.82);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-band__inner h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

.cta-band__phone {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.cta-band__phone i { margin-right: 10px; }
.cta-band__phone:hover { color: var(--white); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 500px;
}

.about-col { display: flex; flex-direction: column; }

.about-col--text {
  background: var(--light-gray);
  padding: 70px 50px;
  justify-content: center;
}

.about-col--text .script-label { margin-bottom: 4px; }

.about-col--text h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.about-col--text p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-col--text .btn { margin-top: 10px; align-self: flex-start; }

.about-col--image {
  overflow: hidden;
}
.about-col--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-col--bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.about-col--bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(190,35,48,0.3);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  position: relative;
  background-image: url('../images/testimonials-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
  text-align: center;
}

.testimonials-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.88);
}

.testimonials-section__inner {
  position: relative;
  z-index: 1;
}

.testimonials-section h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.testimonials-section__sub {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 50px;
}

/* ---- Slider ---- */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  position: relative;
  overflow: hidden;
  min-height: 180px; /* fallback until JS sets real height */
  /* Height is set and animated by JS to match the active slide */
  transition: height 0.4s ease;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  /* Inactive: invisible, not interactive */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  animation: none; /* cleared when leaving active state */
}

/* Active slide fades + drifts up into view */
.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  animation: testimonialFadeIn 0.45s ease forwards;
}

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

.testimonial-card {
  max-width: 720px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 48px;
}

.testimonial-card__quote {
  width: 40px;
  margin: 0 auto 16px;
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__stars {
  width: 110px;
  margin: 0 auto 12px;
}

.testimonial-card strong {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

/* ---- Slider Buttons ---- */
.testimonials-prev,
.testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(190,35,48,0.8);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  z-index: 10;
}
.testimonials-prev { left: 0; }
.testimonials-next { right: 0; }
.testimonials-prev:hover,
.testimonials-next:hover { background: var(--red); }

/* ---- Dots ---- */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testimonials-dots .dot.active { background: var(--gold); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}

.why-section__inner .script-label { margin-bottom: 4px; }

.why-section__inner h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}

/* ============================================================
   FREE INSPECTION BANNER
   ============================================================ */
.inspection-banner {
  position: relative;
  background-image: url('../images/inspection-banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 70px 0;
  text-align: center;
}

.inspection-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.85);
}

.inspection-banner__inner {
  position: relative;
  z-index: 1;
  border-top: 2px dashed rgba(222,174,82,0.4);
  border-bottom: 2px dashed rgba(222,174,82,0.4);
  padding: 40px 80px;
}

.inspection-banner__content h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.inspection-banner__content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.inspection-banner__content .btn {
  padding: 14px 80px;
  font-size: 16px;
}

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.areas-section {
  background: var(--light-gray);
  padding: 90px 0;
  text-align: center;
}

.areas-section__inner .script-label { margin-bottom: 4px; }

.areas-section__inner h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 20px;
}

.area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.area-item img { width: 36px; opacity: 0.7; margin: 0 auto; }

.area-item a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.area-item a:hover { color: var(--red); }

/* ============================================================
   GOOGLE MAP FULL WIDTH
   ============================================================ */
.map-fullwidth iframe { display: block; width: 100%; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: #fff; }

.gallery-section__intro {
  text-align: center;
  padding: 70px 0 50px;
}

.gallery-section__intro h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(190,35,48,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.location-col { display: flex; flex-direction: column; }

.location-col--text {
  background: var(--light-gray);
  padding: 70px 60px;
  justify-content: center;
}

.location-col--text .script-label { margin-bottom: 4px; }

.location-col--text h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--body-color);
}

.location-details li i {
  color: var(--red);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.location-details a { color: var(--dark); font-weight: 600; }
.location-details a:hover { color: var(--red); }

.location-col--photo {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
.location-col--photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.15);
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.bottom-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bottom-cta__inner h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bottom-cta__phone {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  display: block;
  margin: 6px 0 10px;
}
.bottom-cta__phone:hover { color: var(--red-dark); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 70px 0 50px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

/* ---- Brand Column ---- */
.footer-col--brand .footer-logo { margin-bottom: 16px; }

.footer-col--brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-badge { width: 100px; margin-bottom: 18px; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); }

/* ---- Contact Column ---- */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--gold); }

/* ============================================================
   COPYRIGHT BAR
   ============================================================ */
.copyright-bar {
  background: #070707;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.copyright-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-bar p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.copyright-bar__cards { height: 24px; width: auto; }

.copyright-bar nav {
  display: flex;
  gap: 16px;
}

.copyright-bar nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.copyright-bar nav a:hover { color: var(--gold); }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,7,8,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 520px;
  padding: 40px 36px;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: var(--transition);
}
.modal-close:hover { color: var(--red); }

.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 6px;
}

.modal-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col--map { grid-column: 1 / -1; }

  .hero__heading { font-size: 42px; }
  .hero__form-card { width: 320px; }

  .about-section__grid { grid-template-columns: 1fr 1fr; }
  .about-col--bg { display: none; }
}

/* ============================================================
   RESPONSIVE — 980px
   ============================================================ */
@media (max-width: 980px) {
  :root { --header-height: 70px; }

  .hamburger { display: flex; }

  /* ── Slide-in drawer from right ── */
  .main-nav {
    flex: none;                          /* detach from header flexbox */
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;                       /* fallback for older browsers */
    height: 100dvh;                      /* dynamic viewport — hides behind Safari toolbar correctly */
    background: var(--dark);            /* #050708 */
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex !important;
    flex-direction: column;
    padding: 0;
    /* Hidden: slid off-screen to the right */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.35s;
  }

  /* Open: slide into view */
  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s;
  }

  /* Overlay is active on mobile */
  .mobile-nav-overlay { display: block; }

  /* Show drawer-only elements */
  .mobile-nav-header { display: flex; }
  .mobile-nav-footer { display: flex; }

  /* Nav list stacks vertically inside drawer */
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 1;
  }

  .main-nav__list > li > a {
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
  }
  .main-nav__list > li > a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Dropdown accordion on mobile */
  .dropdown {
    position: static;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--red);
    margin-left: 0;
    display: none;
  }
  .dropdown li a {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    padding: 10px 24px 10px 32px;
    font-size: 12px;
  }
  .dropdown li a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 38px;
  }
  .has-dropdown.open .dropdown { display: block; }

  .site-header__cta .btn { display: none; }
  .header-phone { font-size: 14px; }

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
  }

  .hero__form-card { width: 100%; max-width: 480px; }
  .hero__heading { font-size: 36px; }

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

  .family-band__inner { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }

  .about-section__grid { grid-template-columns: 1fr; }
  .about-col--image { min-height: 300px; }

  .why-grid { grid-template-columns: repeat(3, 1fr); }

  .areas-grid { grid-template-columns: repeat(3, 1fr); }

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

  .location-section__grid { grid-template-columns: 1fr; }
  .location-col--photo { min-height: 300px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }

  .inspection-banner__inner { padding: 40px 20px; }
  .inspection-banner__content .btn { padding: 14px 40px; }

  .cta-band__inner h2 { font-size: 30px; }
  .cta-band__phone { font-size: 26px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .container { width: 92%; }

  .top-bar__info { display: none; }

  .hero__heading { font-size: 28px; }
  .hero__script { font-size: 30px; }

  .testimonial-slide { padding: 0 10px; }
  .testimonial-card { padding: 28px 24px; }

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

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

  .about-col--text { padding: 50px 28px; }
  .location-col--text { padding: 50px 28px; }

  .bottom-cta__phone { font-size: 32px; }
  .bottom-cta__inner h2 { font-size: 28px; }

  .site-footer__grid { grid-template-columns: 1fr; }

  .copyright-bar__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  /* Full-width drawer on small phones */
  .main-nav { width: 100vw; }

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

  .hero__heading { font-size: 24px; }

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

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

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

  .cta-band__inner h2 { font-size: 24px; }

  .testimonials-prev { left: 0; }
  .testimonials-next { right: 0; }
}

/* ============================================================
   GALLERY PAGE STYLES
   ============================================================ */

/* ---- Page Hero (reused by gallery + service pages) ---- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-color: var(--dark);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.78);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.4); }

.page-hero__script {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.page-hero__heading {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
  max-width: 800px;
}

/* ---- Gallery Filter Bar ---- */
.gallery-page { background: #f7f7f7; padding: 70px 0 80px; }

.gallery-page__intro {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-page__intro h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.gallery-page__intro p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border: 2px solid #ddd;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  line-height: 1;
}

.gallery-filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.gallery-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ---- Gallery Grid ---- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ---- Individual Gallery Item ---- */
.gallery-page-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  background: #ccc;
  /* Fade transition for filter */
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-page-item.is-hidden {
  display: none;
}

.gallery-page-item.is-fading-out {
  opacity: 0;
  transform: scale(0.97);
}

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

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

/* ---- Hover Overlay ---- */
.gallery-page-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(190,35,48,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-page-item:hover .gallery-page-item__overlay { opacity: 1; }

.gallery-page-item__overlay i {
  font-size: 32px;
  color: #fff;
}

.gallery-page-item__overlay span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 12px;
}

/* ---- Category Badge ---- */
.gallery-page-item__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--red);
  color: #fff;
  padding: 3px 8px;
  z-index: 2;
  pointer-events: none;
}

/* ---- Empty state ---- */
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.gallery-empty.visible { display: block; }

.gallery-empty p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ---- Responsive: Gallery Page ---- */
@media (max-width: 1100px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-page { padding: 50px 0 60px; }
  .page-hero__heading { font-size: 30px; }
  .page-hero__script { font-size: 28px; }
}

@media (max-width: 480px) {
  .gallery-filters { gap: 6px; }
  .gallery-filter-btn { padding: 8px 14px; font-size: 12px; }
  .gallery-page-grid { gap: 6px; }
}

/* ============================================================
   SERVICE / INTERIOR PAGE STYLES
   ============================================================ */

/* ---- Page Hero (static, no video) ---- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-color: var(--dark);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,8,0.78);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.4); }

.page-hero__script {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.page-hero__heading {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
  max-width: 800px;
}

/* ---- Service Intro (2-col: text + form) ---- */
.service-intro {
  background: #fff;
  padding: 80px 0;
}

.service-intro__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.service-intro__text .script-label { margin-bottom: 4px; }

.service-intro__text h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.service-intro__text p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-intro__text ul {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-intro__text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--body-color);
}

.service-intro__text ul li i {
  color: var(--red);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- Sidebar Quote Form ---- */
.sidebar-form {
  background: var(--dark);
  padding: 36px 30px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.sidebar-form h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
  text-align: center;
}

.sidebar-form p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 20px;
}

/* ---- Service Feature Cards ---- */
.service-features {
  background: var(--light-gray);
  padding: 80px 0;
}

.service-features__intro {
  text-align: center;
  margin-bottom: 50px;
}

.service-features__intro .script-label { margin-bottom: 4px; }

.service-features__intro h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.svc-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.svc-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #fff;
}

.svc-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
}

/* ---- Why Choose Us (service page strip) ---- */
.service-why {
  background: var(--dark);
  padding: 80px 0;
}

.service-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-why__text .script-label--gold { margin-bottom: 4px; }

.service-why__text h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.service-why__text p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-why__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.service-why__list-item i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

/* ---- Responsive: service pages ---- */
@media (max-width: 1100px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
  }
  .sidebar-form { position: static; }
  .page-hero__heading { font-size: 34px; }
  .service-why__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .service-cards-grid { grid-template-columns: 1fr; }
  .page-hero__heading { font-size: 26px; }
  .page-hero__script { font-size: 28px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}

/* -- Left: Info column -- */
.contact-info .script-label { margin-bottom: 4px; }

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 14px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-card {
  background: var(--light-gray);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card__icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon i {
  color: #fff;
  font-size: 17px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin: 0;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin: 0;
}

.contact-card a:hover { color: var(--red); }

.contact-map {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* -- Right: Form column -- */
.contact-form-col {
  background: var(--dark);
  padding: 40px 34px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.contact-form-col h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-form-col > p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-col { position: static; }
}

@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-section { padding: 50px 0; }
}
