/* =========================
   RESET / BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #97734A;
  --primary-dark: #7A5E3C;
  --text: #111;
  --light: #F5F5F5;
  --border: #E5E5E5;
  --dark: #1A1A1A;
}

body {
  font-family: Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  padding-top: 132px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
}

.btn-white {
  background: white;
  color: var(--text);
}

/* =========================
   STICKY HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.top-bar {
  background: var(--primary);
  color: white;
  font-size: 14px;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar a {
  color: white;
  font-weight: 500;
}

.top-phone {
  font-weight: 600;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
  display: block;
}

.social-icon:hover svg {
  opacity: 0.8;
}

.main-header {
  position: relative;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo img {
  height: 70px;
}

.main-nav ul {
  list-style: none;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

.header-cta {
  display: flex;
  gap: 18px;
  align-items: center;
}

.phone-link {
  color: var(--text);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}

/* =========================
   DESKTOP NAV / DROPDOWN
========================= */

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-dropdown .dropdown-menu,
.nav-dropdown-services .dropdown-menu,
.nav-dropdown-areas .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 14px;
  list-style: none;
  display: none;
  z-index: 999;
  margin-top: 0;
  gap: 4px 10px;
}

.nav-dropdown-services .dropdown-menu {
  min-width: 560px;
  grid-template-columns: 1fr 1fr;
}

.nav-dropdown-services:hover .dropdown-menu {
  display: grid;
}

.nav-dropdown-areas .dropdown-menu {
  min-width: 260px;
  grid-template-columns: 1fr;
}

.nav-dropdown-areas:hover .dropdown-menu {
  display: grid;
}

.nav-dropdown .dropdown-menu li,
.nav-dropdown-services .dropdown-menu li,
.nav-dropdown-areas .dropdown-menu li {
  display: block;
  width: 100%;
}

.nav-dropdown .dropdown-menu a,
.nav-dropdown-services .dropdown-menu a,
.nav-dropdown-areas .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-dropdown .dropdown-menu a:hover,
.nav-dropdown-services .dropdown-menu a:hover,
.nav-dropdown-areas .dropdown-menu a:hover {
  background: #f5f5f5;
}

/* =========================
   HOMEPAGE HERO
========================= */

.hero {
  min-height: calc(92vh - 132px);
  background-color: #1f1f1f;
  background: url("../images/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  min-height: calc(92vh - 132px);
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}

.hero-subtext {
  margin-bottom: 30px;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading-light {
  color: white;
}

/* =========================
   HOMEPAGE SECTIONS
========================= */

.section {
  padding: 84px 0;
}

.services-snapshot,
.service-areas-section,
.reviews-section {
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 10px;
  transition: 0.2s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.section-button {
  text-align: center;
  margin-top: 32px;
}

.trust-section {
  background: var(--light);
  padding: 90px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-card {
  background: white;
  padding: 24px;
  border-radius: 10px;
  transition: 0.2s;
}

.trust-card:hover {
  transform: translateY(-4px);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.area-link {
  border: 1px solid var(--border);
  padding: 22px;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  transition: 0.2s;
}

.area-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-section {
  background: var(--dark);
  padding: 90px 0;
  color: white;
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.gallery-item {
  min-width: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 10px;
}

.review-stars {
  color: gold;
  margin-bottom: 12px;
}

.review-carousel {
  max-width: 760px;
  margin: 0 auto;
}

.review-slide {
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  padding: 30px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-carousel-stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 14px;
}

.review-carousel-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-carousel-name {
  margin-bottom: 2px;
}

.review-carousel-location {
  color: #666;
}

.review-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.review-carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.review-carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.review-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.review-carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d4d4d4;
  cursor: pointer;
}

.review-carousel-dot.active {
  background: var(--primary);
}

.cta-section {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  margin-bottom: 16px;
}

/* =========================
   PAGE HERO / SERVICE LAYOUT
========================= */

.page-hero {
  padding: 80px 0 50px;
  background: #f8f8f8;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  color: #666;
}

.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-content h2 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.service-content p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-content p + p {
  margin-top: 14px;
}

.check-list {
  margin-top: 15px;
}

.check-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.sidebar-card {
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  margin-bottom: 10px;
}

.sidebar-card ul li {
  margin-bottom: 10px;
}

.sidebar-card ul a {
  display: inline-block;
  padding: 4px 0;
}

.sidebar-card .btn {
  margin-top: 10px;
  width: 100%;
}

.site-footer ul a {
  display: inline-block;
  padding: 4px 0;
}

/* =========================
   INTERNAL SERVICE HERO
========================= */

.service-hero {
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #1f1f1f;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero-dryer {
  background: url("../images/services/dryer-vent-cleaning-hero.jpg") center/cover no-repeat;
}

.service-hero-overlay {
  width: 100%;
  min-height: 420px;
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  align-items: center;
}

.service-hero-content {
  text-align: center;
  color: white;
  max-width: 760px;
  padding: 120px 0 70px;
}

.service-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 16px;
}

.service-hero-subtext {
  font-size: 18px;
  margin: 0 auto 30px;
  max-width: 700px;
}

.service-hero .eyebrow {
  color: white;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: white;
  color: var(--text);
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.site-footer h4 {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 118px;
  }

  .top-bar {
    font-size: 13px;
  }

  .top-bar-inner {
    min-height: 38px;
  }

  .top-bar-right a:nth-child(n+2) {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    display: none;
    z-index: 1000;
  }

  .main-nav.active {
    display: block;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    display: block;
    padding: 16px 0;
    color: var(--text);
  }

  .nav-dropdown .dropdown-menu,
  .nav-dropdown-services .dropdown-menu,
  .nav-dropdown-areas .dropdown-menu {
    position: static;
    min-width: 100%;
    width: 100%;
    margin-top: 0;
    padding: 0 0 8px 16px;
    border: none;
    box-shadow: none;
    background: transparent;
    grid-template-columns: 1fr !important;
    gap: 0;
    display: none !important;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown-services:hover .dropdown-menu,
  .nav-dropdown-areas:hover .dropdown-menu {
    display: none !important;
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown-services.open .dropdown-menu,
  .nav-dropdown-areas.open .dropdown-menu {
    display: grid !important;
  }

  .nav-dropdown .dropdown-menu a,
  .nav-dropdown-services .dropdown-menu a,
  .nav-dropdown-areas .dropdown-menu a {
    padding: 12px 0;
    white-space: normal;
    color: var(--text);
    background: transparent;
  }

  .hero {
    min-height: calc(80vh - 118px);
  }

  .hero-overlay {
    min-height: calc(80vh - 118px);
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .service-hero-overlay {
    min-height: 360px;
  }

  .service-hero-content {
    padding: 110px 0 55px;
  }

  .service-hero-subtext {
    font-size: 16px;
  }

  .review-slide {
    min-height: 220px;
    padding: 24px;
  }

  .review-carousel-text {
    font-size: 17px;
  }
}

@media (max-width: 650px) {
  body {
    padding-top: 112px;
  }

  .top-bar-left {
    font-size: 12px;
  }

  .top-bar-right {
    gap: 12px;
  }

  .hero {
    min-height: calc(76vh - 112px);
  }

  .hero-overlay {
    min-height: calc(76vh - 112px);
  }

  .services-grid,
  .trust-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-slide {
    min-height: 210px;
    padding: 22px;
  }

  .review-carousel-text {
    font-size: 16px;
  }
}

/* SERVICES HUB GRID */

.services-snapshot .services-grid {
  grid-template-columns: repeat(3, 1fr);
}

