/* =====================================================
   VACDADDY.COM — Main Stylesheet
   ===================================================== */

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Custom Properties --- */
:root {
  --color-brand:        #005283;
  --color-dark:         #0d2838;
  --color-light:        #f3f3f3;
  --color-accent-green: #6dc563;
  --color-accent-blue:  #88e1f2;
  --font-main:          'Montserrat', sans-serif;
  --max-width:          1200px;
  --section-pad:        5rem 1.5rem;
}

/* --- Base --- */
body {
  font-family: var(--font-main);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  opacity: .85;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}

.btn--light {
  background: #fff;
  color: var(--color-brand);
  border-color: #fff;
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .75rem 1.5rem;
}

.site-header__logo img {
  width: 270px;
  height: auto;
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link,
.nav__link--toggle {
  font-weight: 500;
  font-size: .9rem;
  color: var(--color-dark);
  transition: color .2s;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-main);
}

.nav__link:hover,
.nav__link--toggle:hover {
  color: var(--color-brand);
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  z-index: 200;
  padding: .5rem 0;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown-link {
  display: block;
  padding: .55rem 1rem;
  font-size: .85rem;
  color: var(--color-dark);
  transition: background .15s, color .15s;
}

.nav__dropdown-link:hover {
  background: var(--color-light);
  color: var(--color-brand);
}

/* Phone */
.site-header__phone a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-brand);
  white-space: nowrap;
  text-decoration: none;
}

.site-header__phone a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.site-header__phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__phone-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-dark);
}

.site-header__phone-number {
  font-size: .95rem;
  font-weight: 700;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
  order: 3;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.webp') center / cover no-repeat;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.hero__content {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.hero__eyebrow {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: .75rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero__body {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, .9);
}

/* =====================================================
   PROMO BANNER
   ===================================================== */

.promo {
  background: var(--color-light);
  padding: var(--section-pad);
}

.promo__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promo__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.promo__body {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

.promo__body a {
  color: var(--color-brand);
  text-decoration: underline;
}

.promo__value {
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 1.75rem;
}

.promo__img-wrap img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 380px;
}

/* =====================================================
   ABOUT / WHAT'S IN YOUR AIR DUCTS
   ===================================================== */

.about {
  padding: var(--section-pad);
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img-wrap img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.about__quote {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  color: var(--color-dark);
}

/* =====================================================
   BEFORE / AFTER SLIDER
   ===================================================== */

.before-after {
  padding: var(--section-pad);
  background: var(--color-dark);
}

.ba-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  user-select: none;
  cursor: ew-resize;
}

.ba-slider__img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.ba-slider__img--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}

.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
  z-index: 2;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255, 255, 255, .9);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-slider__knob {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--color-brand);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

/* =====================================================
   SERVICES GRID
   ===================================================== */

.services {
  padding: var(--section-pad);
  background: var(--color-light);
}

.services__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-brand);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.services__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services__card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--color-dark);
  flex: 1;
}

.services__card-link {
  color: var(--color-brand);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: underline;
}

.services__card-link:hover {
  color: var(--color-dark);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials {
  padding: var(--section-pad);
}

.testimonials__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--color-dark);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--color-light);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.testimonial__logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-size: .9rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--color-dark);
  flex: 1;
  margin-bottom: 1rem;
}

.testimonial__name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--color-brand);
  font-style: normal;
}

/* =====================================================
   CTA BANNER
   ===================================================== */

.cta-banner {
  padding: var(--section-pad);
  background: var(--color-brand);
  color: #fff;
  text-align: center;
}

.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner__body {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .9);
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: var(--color-dark);
  color: #fff;
  padding: 3.5rem 1.5rem 1.5rem;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand img {
  height: 90px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer__desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 400px;
}

.site-footer__hours {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.site-footer__hours strong {
  color: #fff;
}

.footer-nav__title {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-accent-blue);
  margin-bottom: .75rem;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-nav__link {
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.footer-nav__link:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.site-footer__bottom-link {
  color: rgba(255, 255, 255, .4);
  text-decoration: underline;
}

.site-footer__bottom-link:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.site-footer__social-link:hover {
  color: #fff;
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   SERVICE SECTION (two-column image + text, reused across service pages)
   ===================================================== */

.service-section {
  padding: var(--section-pad);
}

.service-section--alt {
  background: var(--color-light);
}

.service-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-section__inner--reverse {
  direction: rtl;
}

.service-section__inner--reverse > * {
  direction: ltr;
}

.service-section__img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.service-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.service-section__body {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.service-section__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-section__list li {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .35rem;
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .service-section__inner,
  .service-section__inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* =====================================================
   PAGE HERO (interior pages)
   ===================================================== */

.page-hero {
  background: var(--color-brand);
  color: #fff;
  padding: 5rem 1.5rem;
}

.page-hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.page-hero__body {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 2rem;
}

/* =====================================================
   PACKAGES
   ===================================================== */

.packages {
  padding: var(--section-pad);
}

.packages__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2.5rem;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.package-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: .75rem;
}

.package-card__desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--color-dark);
  flex: 1;
  margin-bottom: 1.5rem;
}

/* =====================================================
   RELATED SERVICES
   ===================================================== */

.related-services {
  padding: var(--section-pad);
  background: var(--color-dark);
  color: #fff;
}

.related-services__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-services__intro {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.related-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  list-style: none;
}

.related-services__list a {
  color: var(--color-accent-blue);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: underline;
  transition: color .2s;
}

.related-services__list a:hover {
  color: #fff;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
  padding: var(--section-pad);
  background: var(--color-light);
}

.faq__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.faq__list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq__item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--color-brand);
}

.faq__question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: .6rem;
}

.faq__answer {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .packages__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RESPONSIVE (max 768px)
   ===================================================== */

@media (max-width: 768px) {

  :root {
    --section-pad: 3rem 1.25rem;
  }

  /* Header */
  .nav-toggle {
    display: block;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    z-index: 99;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: wrap;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid var(--color-light);
  }

  .nav__link,
  .nav__link--toggle {
    display: block;
    padding: .75rem 0;
    width: 100%;
  }

  .nav__dropdown {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0 0 .5rem 1rem;
    min-width: 0;
  }

  .nav__item--dropdown.is-open .nav__dropdown {
    display: block;
  }

  /* Two-column sections → stack */
  .promo__inner,
  .about__inner {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
  }
}
/* css-c.css — supplemental styles for vacdaddy.com pages */

/* ============================================================
   service-section__subtitle
   Styled inline label (not a heading) used in service sections
   ============================================================ */
.service-section__subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #005283;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================================
   Signs of Blocked Dryer Vent section
   Light background checklist section
   ============================================================ */
.blocked-signs {
  background-color: #f4f8fb;
  padding: 4rem 1.5rem;
}

.blocked-signs .container {
  max-width: 860px;
  margin: 0 auto;
}

.blocked-signs__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.blocked-signs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 0.75rem 2rem;
}

.blocked-signs__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.blocked-signs__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #005283;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   Benefits of Hiring a Professional section
   White background, 4-card grid
   ============================================================ */
.benefits {
  background-color: #fff;
  padding: 4rem 1.5rem;
}

.benefits .container {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 2.5rem;
  text-align: center;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: #f4f8fb;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.benefit-card__icon {
  width: 3rem;
  height: 3rem;
  color: #005283;
  flex-shrink: 0;
}

.benefit-card__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.benefit-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ============================================================
   HVAC Services hub section
   Centered title + services grid using existing packages__grid
   ============================================================ */
.services-hub {
  background-color: #fff;
  padding: 4rem 1.5rem;
}

.services-hub .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-hub__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Service card: compact variant (image + title + link, no long desc) */
.services__card {
  background: #fff;
  border: 1px solid #e0e8ef;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.services__card:hover {
  box-shadow: 0 6px 20px rgba(0, 82, 131, 0.12);
  transform: translateY(-2px);
}

.services__card .package-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.services__card .package-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.services__card .package-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 600px) {
  .blocked-signs__list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 400px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   css-d.css  –  VacDaddy supplemental styles
   Pages: contact-us, our-story, news
   ============================================================ */

/* ----------------------------------------------------------
   Page-hero photo variant (overlay + bg-image set inline)
   ---------------------------------------------------------- */
.page-hero--photo {
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark, #1a1a1a);
  position: relative;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}
.page-hero--photo .page-hero__content {
  position: relative;
}

/* ----------------------------------------------------------
   Contact page
   ---------------------------------------------------------- */
.contact-section {
  padding: 4rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info__heading {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-dark, #1a1a1a);
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.contact-info__list li {
  margin-bottom: .6rem;
  font-size: 1rem;
  color: var(--color-body, #444);
}

.contact-info__list li strong {
  color: var(--color-dark, #1a1a1a);
}

.contact-info__list a {
  color: var(--color-primary, #005283);
  text-decoration: none;
  font-weight: 600;
}
.contact-info__list a:hover {
  text-decoration: underline;
}

.contact-info__equip-heading {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  color: var(--color-dark, #1a1a1a);
}

.contact-info__equip-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--color-body, #444);
  margin-bottom: 1.5rem;
}

.contact-info__photo {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  display: block;
}

/* Contact form */
.contact-form__heading {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-dark, #1a1a1a);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.contact-form__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-dark, #1a1a1a);
}

.contact-form__input,
.contact-form__textarea {
  padding: .65rem .9rem;
  border: 1.5px solid #d0d5dd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-dark, #1a1a1a);
  background: #fff;
  transition: border-color .2s;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary, #005283);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__recaptcha {
  margin-top: .25rem;
}

.contact-form__submit {
  align-self: flex-start;
}

/* ----------------------------------------------------------
   Our Story page
   ---------------------------------------------------------- */

/* Page-hero eyebrow */
.page-hero__eyebrow {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: .6rem;
}

/* About section */
.about-section {
  padding: 4.5rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-section__heading {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 1.1rem;
  color: var(--color-dark, #1a1a1a);
}

.about-section__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-body, #444);
}

.about-section__img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

/* Customer service section */
.customer-service-section {
  background: #f7f9fb;
  padding: 4.5rem 1.25rem;
}

.customer-service-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.customer-service-section__heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-dark, #1a1a1a);
}

.customer-service-section__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-body, #444);
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-quote {
  background: #fff;
  border-left: 4px solid var(--color-primary, #005283);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.25rem 1rem;
  margin: 0;
  font-size: .975rem;
  font-style: italic;
  color: var(--color-body, #444);
  line-height: 1.7;
}

.testimonial-quote cite {
  display: block;
  margin-top: .6rem;
  font-style: normal;
  font-weight: 700;
  font-size: .875rem;
  color: var(--color-dark, #1a1a1a);
}

.customer-service-section__more {
  font-size: .95rem;
  color: var(--color-body, #444);
}

.customer-service-section__more a {
  color: var(--color-primary, #005283);
  font-weight: 600;
  text-decoration: none;
}
.customer-service-section__more a:hover {
  text-decoration: underline;
}

/* Offer section */
.offer-section {
  background: var(--color-primary, #005283);
  color: #fff;
  text-align: center;
  padding: 4rem 1.25rem;
}

.offer-section__inner {
  max-width: 680px;
  margin: 0 auto;
}

.offer-section__body {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: .75rem;
  opacity: .95;
}

.offer-section__note {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: .9;
}

/* ----------------------------------------------------------
   News page
   ---------------------------------------------------------- */
.news-empty {
  background: #fff;
  text-align: center;
  padding: 5rem 1.25rem 6rem;
}

.news-empty__inner {
  max-width: 540px;
  margin: 0 auto;
}

.news-empty__icon {
  color: var(--color-primary, #005283);
  margin-bottom: 1.5rem;
}

.news-empty__heading {
  font-size: 1.75rem;
  color: var(--color-dark, #1a1a1a);
  margin-bottom: .75rem;
}

.news-empty__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-body, #444);
  margin-bottom: 2rem;
}

/* =====================================================
   PRIVACY POLICY
   ===================================================== */

.privacy-policy {
  padding: var(--section-pad);
}

.privacy-policy__content {
  max-width: 760px;
}

.privacy-policy__intro {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.privacy-policy__content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.privacy-policy__content p {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.privacy-policy__content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-policy__content ul li {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .3rem;
  color: var(--color-dark);
}

.privacy-policy__content a {
  color: var(--color-brand);
  text-decoration: underline;
}

.privacy-policy__content a:hover {
  color: var(--color-dark);
}

.privacy-policy__content address {
  font-style: normal;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--color-dark);
  margin-top: .5rem;
}

/* =====================================================
   FORM NOTICES
   ===================================================== */

.form-notice {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.form-notice--success {
  background: #e6f4ea;
  color: #1e5c2a;
  border: 1px solid #a8d5b0;
}

.form-notice--error {
  background: #fdecea;
  color: #7c1c1c;
  border: 1px solid #f5a8a8;
}

.form-notice a {
  color: inherit;
  font-weight: 600;
}
