/* ============================================================
   ClearFlow TN — Main Stylesheet
   Brand: Orange (#E87722), Black (#1a1a1a), White (#fff)
   ============================================================ */

:root {
  --orange: #E87722;
  --orange-dark: #c96010;
  --black: #1a1a1a;
  --navy: #1b2a4a;
  --navy-dark: #111e35;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-text: #555555;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

/* top-bar removed */

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  background: #111417;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.45); }

/* Header inner: logo-brand left, nav centered, CTA right */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 0;
  position: relative;
}

/* Logo + wordmark — inside centered group, sits left of nav */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}
.logo-brand img {
  height: 56px;
  width: 56px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: center;
}
.logo-wordmark-top {
  font-family: 'Bebas Neue', var(--font-main);
  font-weight: 400;
  font-size: 24px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.logo-wordmark-bottom {
  font-family: 'Bebas Neue', var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Nav wrapper — centered absolutely */
.header-center {
  display: flex;
  align-items: center;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Legacy .logo img fallback */
.logo:not(.logo-large) img { height: 60px; width: auto; }

/* Hide hero arrows */
.hero-arrows { display: none !important; }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav > li { position: relative; }
.nav > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav > li > a:hover,
.nav > li.active > a { color: var(--orange); }

/* Dropdown */
.nav .dropdown > a::after {
  content: ' ▾';
  font-size: 11px;
}
.nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 6px 6px;
  z-index: 200;
  list-style: none;
}
.nav .dropdown:hover .dropdown-menu { display: block; }
.nav .dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-mid);
  transition: background 0.2s, color 0.2s;
}
.nav .dropdown-menu li:last-child a { border-bottom: none; }
.nav .dropdown-menu li a:hover { background: var(--gray-light); color: var(--orange); }

/* Spacer on left mirrors CTA width so centered group is truly centered */
.header-spacer {
  flex: 0 0 auto;
  width: 220px;
}

/* Header CTA — pinned to right */
.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  white-space: nowrap;
}
.header-phone:hover { color: var(--orange-dark); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO SLIDER (JD Excavation Style)
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: var(--black);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 60px;
  max-width: 680px;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.hero-arrows {
  position: absolute;
  bottom: 30px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.hero-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-light);
  color: var(--navy);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
}
.trust-item .icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
.section { padding: 70px 0; }
.section-sm { padding: 40px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--gray-light); }
.section-orange { background: var(--orange); color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.75); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 22px; }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card .card-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card .card-link:hover { color: var(--orange-dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-section { background: var(--gray-light); }
.reviews-carousel-wrapper { position: relative; overflow: hidden; }
.reviews-carousel { display: flex; transition: transform 0.4s ease; }
.review-card {
  min-width: 100%;
  padding: 0 20px;
}
.review-inner {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.review-stars { color: var(--orange); font-size: 22px; margin-bottom: 14px; }
.review-text {
  font-size: 17px;
  font-style: italic;
  color: var(--gray-text);
  margin-bottom: 18px;
  line-height: 1.7;
}
.review-author {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.review-location { font-size: 13px; color: var(--gray-text); }
.review-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.review-prev, .review-next {
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.review-prev:hover, .review-next:hover { background: var(--orange); }
.review-dots { display: flex; gap: 8px; }
.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-mid);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.review-dot.active { background: var(--orange); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.area-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 14px 18px;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--orange);
  padding: 50px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 38px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.cta-band .btn-white { color: var(--orange) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
/* New footer logo via footer-logo-img class */
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 72px;
  width: 72px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  filter: none;
  flex-shrink: 0;
}
.footer-wordmark .logo-wordmark-top {
  font-size: 22px;
  color: var(--orange);
}
.footer-wordmark .logo-wordmark-bottom {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-phone {
  display: block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer-address { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange); }
.footer-legal { display: flex; gap: 16px; }

/* ============================================================
   FLOATING CALL BUTTON (Mobile Only)
   ============================================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  text-decoration: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,119,34,0.4); }
  50% { box-shadow: 0 4px 28px rgba(232,119,34,0.7); }
}

/* ============================================================
   INTERIOR PAGE LAYOUT
   ============================================================ */
.page-hero {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 70px 0;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,42,74,0.82);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Content + Sidebar */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.main-content h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  margin: 32px 0 14px;
  border-left: 4px solid var(--orange);
  padding-left: 14px;
}
.main-content h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin: 24px 0 10px;
}
.main-content p { margin-bottom: 16px; color: var(--gray-text); line-height: 1.8; }
.main-content ul, .main-content ol {
  margin: 0 0 16px 24px;
  color: var(--gray-text);
  line-height: 1.8;
}
.main-content li { margin-bottom: 6px; }
.main-content img { border-radius: 8px; margin: 20px 0; }

/* Sidebar */
.sidebar { position: sticky; top: 90px; }
.sidebar-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  color: var(--white);
}
.sidebar-box h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
  text-align: center;
}
.sidebar-phone {
  display: block;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 14px;
}
.sidebar-box .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  color: var(--white) !important;
}
.sidebar-form-box {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.sidebar-form-box iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  display: block;
}
.sidebar-links { background: var(--gray-light); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
.sidebar-links h4 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.sidebar-links ul { list-style: none; }
.sidebar-links ul li { border-bottom: 1px solid var(--gray-mid); }
.sidebar-links ul li:last-child { border-bottom: none; }
.sidebar-links ul li a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-links ul li a:hover { color: var(--orange); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  transition: background 0.2s;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-question .faq-icon { font-size: 20px; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 18px 22px;
  background: var(--gray-light);
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ============================================================
   CTA BOX (mid-page)
   ============================================================ */
.cta-box {
  background: var(--orange);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 8px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-box h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}
.cta-box p { font-size: 15px; color: rgba(255,255,255,0.9); }
.cta-box .btn-white { color: var(--orange) !important; white-space: nowrap; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-meta {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-meta .cat { color: var(--orange); font-weight: 700; }
.blog-card h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p { font-size: 14px; color: var(--gray-text); margin-bottom: 14px; }
.blog-card .read-more { font-family: var(--font-main); font-weight: 700; font-size: 13px; color: var(--orange); text-transform: uppercase; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail .text strong {
  display: block;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 2px;
}
.contact-detail .text span { font-size: 14px; color: var(--gray-text); }
.contact-form-wrap { background: var(--gray-light); border-radius: 10px; padding: 30px; }
.contact-form-wrap iframe { width: 100%; min-height: 600px; border: none; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 30px 0 12px;
}
.legal-content p, .legal-content li { font-size: 15px; color: var(--gray-text); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin-left: 24px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-page .error-num {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 120px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.error-page h2 { font-family: var(--font-main); font-weight: 700; font-size: 28px; margin-bottom: 14px; }
.error-page p { font-size: 17px; color: var(--gray-text); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero-slider { height: 500px; }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero-title { font-size: 30px; }
    .header-inner { padding: 0 12px; justify-content: space-between; }
  .header-spacer { display: none; }
  .header-center { position: static; transform: none; flex: 1; justify-content: flex-start; }
  .logo-brand img { height: 48px; width: 48px; }
  .logo-wordmark-top { font-size: 15px; }
  .logo-wordmark-bottom { font-size: 11px; }

  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #111417; box-shadow: 0 8px 24px rgba(0,0,0,0.35); padding: 16px; gap: 0; }
  .nav.open { display: flex; }
  .nav > li > a { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 16px; }
  .nav .dropdown.open .dropdown-menu { display: block; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }

  .trust-bar .container { gap: 16px; }
  .trust-item { font-size: 12px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; text-align: center; }
  .float-call { display: flex; }
}

@media (max-width: 480px) {
  .hero-slider { height: 420px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .btn { padding: 12px 20px; font-size: 13px; }
}

/* ============================================================
   ADDITIONAL BUTTON VARIANTS (aliases)
   ============================================================ */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   HERO SERVICE TABS (replaces plain dots)
   ============================================================ */
.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
}
.hero-tab {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 22px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.hero-tab:hover { color: var(--white); }
.hero-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
@media (max-width: 768px) {
  .hero-tabs { gap: 0; overflow-x: auto; justify-content: flex-start; }
  .hero-tab { font-size: 10px; padding: 10px 12px; letter-spacing: 0.8px; }
}

/* ============================================================
   HERO BRACKET LABEL
   ============================================================ */
.hero-bracket-label {
  display: block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

/* ============================================================
   BRACKET SECTION LABELS (site-wide)
   ============================================================ */
.bracket-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-dark .bracket-label { color: rgba(255,255,255,0.55); }

/* ============================================================
   WHY CHOOSE US — PHOTO BACKGROUND CARDS
   ============================================================ */
.why-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-photo-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s;
}
.why-photo-card:hover { transform: translateY(-4px); }
.why-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s;
}
.why-photo-card:hover .why-photo-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%);
}
.why-card-num {
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.9;
}
.why-photo-overlay h3 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-photo-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.learn-story-link {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: color 0.2s;
}
.learn-story-link:hover { color: #fff; }
@media (max-width: 640px) {
  .why-photo-grid { grid-template-columns: 1fr; }
  .why-photo-card { height: 240px; }
}

/* ============================================================
   STATS COUNTER BAR
   ============================================================ */
.stats-bar {
  background: var(--orange);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-main);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-main);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .stats-grid { gap: 32px; }
  .stat-item { min-width: 40%; }
}

/* ============================================================
   ACTIVE NAV INDICATOR
   ============================================================ */
.nav > li > a.nav-active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

/* ============================================================
   TWO-TONE COUNTY PAGE HEADLINE
   ============================================================ */
.hero-county-name {
  color: var(--orange);
}

/* ============================================================
   HERO SLIDER — push content up to avoid tab overlap
   ============================================================ */
.hero-slider { padding-bottom: 48px; }
.hero-content { top: 45%; }

/* ============================================================
   STAT NUMBER ROW — keeps number + suffix on one line
   ============================================================ */
.stat-number-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--gray-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  border-left: 4px solid var(--orange);
}
.review-quote-icon {
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  margin-bottom: 8px;
  opacity: 0.6;
}
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author strong {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.review-author span {
  font-size: 13px;
  color: var(--gray-text);
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
