/* ============================================================
   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 { color: #999; }

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

.form-group select { cursor: pointer; }

/* ============================================================
   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); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-image: url('../images/header-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  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;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,8,0.85) 0%, rgba(5,7,8,0.2) 60%);
  transition: var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(190,35,48,0.9) 0%, rgba(190,35,48,0.4) 60%);
}

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

.service-card__content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.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.jpg');
  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.jpg');
  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 {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.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.jpg');
  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; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow-y: auto;
    z-index: 999;
    padding: 20px 0;
  }

  .main-nav.open { display: block; }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav__list > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--red);
    margin-left: 24px;
    display: none;
  }
  .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) {
  .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; }
}
