/* ============================================================
   All Dade Plumbing Inc. — Main Stylesheet
   alldadeplumbinginc.com
   Mobile-first, fully responsive
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --red:        #c0392b;
  --red-dark:   #962d22;
  --red-light:  #e74c3c;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --dark-bg:    #1a1a2e;
  --dark-bg2:   #16213e;

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);

  --transition: 0.25s ease;
  --container:  1200px;
  --header-h:   80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* clip (not hidden) so position:sticky still works */
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip; /* clip (not hidden) so position:sticky still works */
}

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

iframe, embed, object, video {
  max-width: 100%;
}

/* Prevent long unbreakable strings (phone numbers, URLs, licence codes) from
   causing horizontal overflow on narrow viewports */
p, li, address, blockquote, figcaption, label, td, th {
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red-dark); }
a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--gray-900);
  line-height: 1.25;
}

address { font-style: normal; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  padding: .75rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

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

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

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

.btn-emergency {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: .85rem;
  padding: .6rem 1.1rem;
}
.btn-emergency:hover {
  background: var(--red-dark);
  color: var(--white);
  border-color: var(--red-dark);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .45rem .9rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* ── Section Helpers ── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-header--light h2,
.section-header--light p { color: var(--white); }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,.1);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,.2);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: .75rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; }

/* Nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(192,57,43,.07);
}

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

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-chevron {
  width: 10px;
  height: 6px;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  min-width: 220px;
  max-width: min(280px, calc(100vw - 2rem));
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1000;
  list-style: none;
}
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: .55rem 1.1rem;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.dropdown-item:first-child {
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: .25rem;
  padding-bottom: .7rem;
  color: var(--red);
}
.dropdown-item:hover {
  color: var(--red);
  background: rgba(192,57,43,.06);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Trust bar */
.trust-bar {
  background: var(--red);
  padding: .35rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 34px);
  display: flex;
  align-items: center;
  overflow-x: clip;
  background:
    linear-gradient(135deg, rgba(26,10,8,.82) 0%, rgba(140,30,20,.7) 100%),
    url('../images/hero-bg.webp') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 4rem;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero h1 .accent { color: #ff8a80; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.1);
  padding: .4rem .9rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.feat-icon { font-size: 1rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1em;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  animation: scroll-bob 1.6s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%        { transform: translateX(-50%) translateY(8px); opacity: .4; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 5rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.04), transparent 60%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--gray-900);
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: .6rem; color: var(--red-dark); }

.services-cta {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.services-cta p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--gray-700);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image-col {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  padding-top: 3.5rem;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img { width: 100%; height: auto; display: block; }

.about-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-txt {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  line-height: 1.3;
}

.about-content-col { display: flex; flex-direction: column; gap: 1rem; }
.about-content-col .section-tag { align-self: flex-start; }
.about-content-col h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: .5rem;
}
.about-content-col p { color: var(--gray-600); font-size: .97rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: .5rem 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(192,57,43,.12);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  margin-top: .15rem;
}
.about-list li > div { display: flex; flex-direction: column; gap: .15rem; }
.about-list li strong { font-size: .95rem; color: var(--gray-900); }
.about-list li span { font-size: .88rem; color: var(--gray-600); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 3rem 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.stat-label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: .2rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 5rem 0;
  background: var(--gray-50);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item--wide {
  grid-column: span 1;
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

figcaption {
  padding: .85rem 1rem;
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.gallery-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: .4rem;
}

/* Placeholder gallery items */
.gallery-placeholder .gallery-placeholder-inner {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-600);
  text-align: center;
}
.placeholder-icon { font-size: 2.5rem; }

.gallery-cta { text-align: center; }

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  padding: 5rem 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
}
.blog-img-1 {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #ff8a80 100%);
}
.blog-img-2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #c0392b 100%);
}
.blog-img-3 {
  background: linear-gradient(135deg, #962d22 0%, #c0392b 60%, #e74c3c 100%);
}
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.blog-date {
  font-size: .78rem;
  color: var(--gray-400);
  font-family: var(--font-head);
}
.blog-content h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.blog-content h3 a {
  color: var(--gray-900);
}
.blog-content h3 a:hover { color: var(--red); }
.blog-content p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-200);
}
.read-time {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: var(--red);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg2));
  color: var(--white);
}

.aggregate-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
}
.stars {
  font-size: 1.4rem;
  color: #fbbf24;
  letter-spacing: .1em;
}
.rating-score {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}
.rating-count {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

.review-stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: .1em;
}

.review-card blockquote {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  quotes: "\201C" "\201D";
  position: relative;
}
.review-card blockquote::before {
  content: open-quote;
  font-size: 3rem;
  color: rgba(192,57,43,.5);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: .15rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
}
.review-author span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

.review-card time {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-head);
}

.reviews-cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 5rem 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.faq-item.open { border-color: rgba(192,57,43,.3); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .97rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: left;
  transition: color var(--transition), background var(--transition);
}
.faq-question:hover,
.faq-item.open .faq-question {
  color: var(--red);
  background: rgba(192,57,43,.04);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-600);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-answer p + p { margin-top: .75rem; }
.faq-answer a { color: var(--red); font-weight: 600; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas {
  padding: 4rem 0;
  background: var(--white);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1rem;
}
.areas-list li {
  background: var(--gray-100);
  color: var(--gray-700);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.areas-list li:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  cursor: default;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 5rem 0;
  background: var(--gray-50);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-form-row {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.contact-col h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: .75rem;
}
.contact-col > p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  font-size: .97rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-900);
  margin-bottom: .25rem;
}
.contact-item a { color: var(--red); font-weight: 600; font-size: .97rem; }
.contact-item address { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

.hours-table { display: flex; flex-direction: column; gap: .2rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--gray-600);
  gap: 1rem;
}
.hours-highlight { color: var(--red); font-weight: 600; }
.hours-em { color: var(--gray-900); font-weight: 700; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: .04em;
}
.req { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .75rem;
  color: var(--gray-400);
  line-height: 1.5;
  text-align: center;
}

.form-success {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.4rem; color: var(--gray-900); margin-bottom: .5rem; }
.form-success p { color: var(--gray-600); font-size: .95rem; }
.form-success a { color: var(--red); font-weight: 700; }

/* Map */
.map-col { display: flex; flex-direction: column; gap: 1rem; }
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.map-wrapper iframe { display: block; }

.map-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.map-info-card strong {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--gray-900);
}
.map-info-card address {
  font-size: .85rem;
  color: var(--gray-600);
  flex: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
}

.footer-top { padding: 4rem 0 2.5rem; }

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,.6);
}
.footer-logo { height: 60px; width: auto; margin-bottom: .5rem; }
.footer-license {
  margin-top: .75rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: .3rem;
}

.footer-address {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.footer-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: #ff8a80; }
.footer-hours {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.footer-hours .emerg { color: #ff8a80; font-weight: 700; }
.footer-google-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: #fbbf24;
  transition: opacity var(--transition);
}
.footer-google-link:hover { opacity: .8; color: #fbbf24; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
}
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .footer-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  transform: translateY(120px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.floating-cta.visible { transform: translateY(0); }

.floating-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  padding: .85rem 1.4rem;
  border-radius: 100px;
  box-shadow: var(--shadow-xl);
  transition: background var(--transition), transform var(--transition);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.floating-phone:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: scale(1.04);
}
.floating-icon { font-size: 1.1rem; }

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,.5), var(--shadow-xl); }
  50%        { box-shadow: 0 0 0 10px rgba(192,57,43,0), var(--shadow-xl); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.back-to-top:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE — TABLET / NAV BREAKPOINT (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 68px; }

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

  /* About */
  .about-inner { gap: 2.5rem; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* ── Mobile Navigation ── */
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 34px); /* overridden dynamically by JS */
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    z-index: 999;
    max-height: calc(100svh - var(--header-h) - 34px);
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }
  .nav-link {
    font-size: .95rem;
    width: 100%;
    padding: .65rem 1rem;
  }
  .hamburger { display: flex; }

  /* Mobile dropdown */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: var(--radius-sm);
    background: rgba(192,57,43,.04);
    padding: .25rem 0 .25rem .75rem;
    margin-top: .25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    transform: none;
  }
  .dropdown-item { font-size: .9rem; padding: .5rem .75rem; white-space: normal; }

  /* Header CTA — hide phone number, show short label on all mobile widths */
  .header-cta .btn-emergency span:last-child { display: none; }
  .header-cta .btn-emergency::after { content: 'Call Now'; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Trust bar */
  .trust-bar-inner {
    font-size: .65rem;
    gap: .3rem 1rem;
  }

  /* Section spacing */
  .services, .about, .gallery, .blog, .reviews, .faq, .contact { padding: 3.5rem 0; }
  .stats-strip { padding: 2.5rem 0; }
  .areas { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Hero */
  .hero { min-height: 80svh; }
  .hero-content { padding-block: 3rem 4rem; }
  .hero h1 { font-size: clamp(1.4rem, 5.5vw, 2.4rem); }
  .hero-sub { font-size: .95rem; }
  .hero-features { gap: .5rem; }
  .hero-feature { font-size: .75rem; padding: .35rem .75rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Services CTA — allow text to wrap and fill full width */
  .services-cta .btn {
    width: 100%;
    max-width: 380px;
    white-space: normal;
    line-height: 1.4;
  }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-col { order: -1; position: static; padding-top: 0; }
  .about-badge-overlay { bottom: 1rem; left: 1rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-inner { gap: 2rem; }
  .contact-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-row { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Floating CTA */
  .floating-text { display: none; }
  .floating-phone { padding: .9rem; border-radius: 50%; }
  .floating-icon { font-size: 1.3rem; margin: 0; }

  .back-to-top { bottom: 5rem; right: 1rem; }
  .floating-cta { right: 1rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Section spacing */
  .services, .about, .gallery, .blog, .reviews, .faq, .contact { padding: 2.5rem 0; }
  .areas { padding: 2rem 0; }

  /* Trust bar — hide last 2 items to keep a single row */
  .trust-bar-inner span:nth-child(4),
  .trust-bar-inner span:nth-child(5) { display: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-img { height: 200px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

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

  /* Map */
  .map-info-card { flex-direction: column; align-items: flex-start; }

  /* Hero features — each pill takes natural width, wraps cleanly */
  .hero-feature { flex: 0 1 auto; }

  /* Form */
  .contact-form { padding: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL PHONES (max 380px)
   ============================================================ */
@media (max-width: 380px) {
  /* Scale H1 down so 2-part heading never exceeds 3 lines on tiny screens */
  .hero h1 { font-size: 1.2rem; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header, .floating-cta, .back-to-top, .hero-scroll { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  * { background: white !important; color: black !important; box-shadow: none !important; }
  a[href^="tel"]::after { content: " (" attr(href) ")"; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}
