/* ============================================================
   CABALLERO C&L REMODELING LLC — Stylesheet
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- VARIABLES ---------- */
:root {
  --navy:        #1B2A4A;
  --navy-light:  #2a3f6b;
  --navy-dark:   #0f1929;
  --gold:        #C8922A;
  --gold-light:  #e0a83a;
  --gold-dark:   #9e7220;
  --cream:       #FAFAF7;
  --cream-dark:  #F0EFE8;
  --dark:        #1C1C1A;
  --dark2:       #2C2C28;
  --gray:        #6b7280;
  --gray-light:  #EFEFEA;
  --white:       #ffffff;

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

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  --transition: .3s ease;

  --section-pad: 5rem 0;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--gray); line-height: 1.75; }
.accent { color: var(--gold); }
.white-text { color: var(--white) !important; }

/* ---------- SECTION WRAPPER ---------- */
.section { padding: var(--section-pad); }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark p, .section-dark .section-tag { color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-tag::before { content: '— '; }
.section-tag::after  { content: ' —'; }
.section-desc { color: var(--gray); margin-top: .75rem; font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo span {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  line-height: 1.3;
}
.nav-logo small { font-weight: 500; font-size: .75rem; opacity: .85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-family: 'Raleway', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
}
.nav-links a.nav-cta:hover { background: var(--gold-dark); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
  padding: .45rem .85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-phone:hover { background: rgba(255,255,255,.2); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-dark);
  padding-top: 72px;
}
.hero-left {
  display: flex;
  align-items: center;
  padding: 4rem 3rem 4rem 4rem;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-tagline {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-tagline-es {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,.4) 0%, rgba(27,42,74,.15) 100%);
}
.hero-slide-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.hero-slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-slide-dot.active { background: var(--gold); transform: scale(1.3); }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--gold);
  padding: 1.1rem 1.5rem;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.trust-item svg { flex-shrink: 0; opacity: .9; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,.4); }

/* ---------- SEO INTRO ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { margin-bottom: 1rem; }
.intro-text p:last-of-type { margin-bottom: 1.75rem; }
.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
}
.intro-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
}
.intro-img-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-small { border-radius: var(--radius); overflow: hidden; height: 160px; }
.intro-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- STATS ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
}
.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: .85rem; color: var(--gray); margin-top: .4rem; }

/* ---------- SERVICE CARD CAROUSEL ---------- */
.services-track-wrap { position: relative; }
.services-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: .5rem .25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--gray-light);
  scroll-snap-type: x mandatory;
}
.services-track::-webkit-scrollbar { height: 5px; }
.services-track::-webkit-scrollbar-track { background: var(--gray-light); border-radius: 3px; }
.services-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.service-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  scroll-snap-align: start;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 185px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 20px;
}
.service-card-body { padding: 1.35rem 1.25rem 1.5rem; }
.service-card-body h3 { margin-bottom: .6rem; font-size: 1.05rem; }
.service-card-body p { font-size: .88rem; line-height: 1.55; color: var(--gray); }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: .6rem; color: var(--gold); }

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  font-weight: 600;
}
.gallery-item.hidden { display: none; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-img-wrap img { max-height: 85vh; max-width: 88vw; border-radius: var(--radius); object-fit: contain; }
.lightbox-caption { color: rgba(255,255,255,.75); font-size: .85rem; text-align: center; margin-top: .75rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- WHY US CARDS ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg { color: var(--white); }
.why-card h3 { color: var(--white); margin-bottom: .6rem; }
.why-card p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ---------- SERVICE AREAS ---------- */
.areas-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .6rem;
  margin-top: 2rem;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 20px;
  padding: .45rem 1rem;
  font-size: .85rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,146,42,.05); }
.area-chip svg { color: var(--gold); flex-shrink: 0; }
@media (max-width: 480px) {
  .areas-chips { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 4px solid var(--gold);
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { color: var(--gold); }
.review-text { font-size: .92rem; color: var(--dark); line-height: 1.65; flex: 1; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .9rem; color: var(--navy); }
.review-date { font-size: .78rem; color: var(--gray); }
.reviews-loading { text-align: center; padding: 2rem; color: var(--gray); }
.reviews-summary {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.reviews-rating {
  font-family: 'Raleway', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.reviews-meta { text-align: left; }
.reviews-meta-stars { display: flex; gap: 3px; }
.reviews-meta-total { font-size: .82rem; color: var(--gray); margin-top: .25rem; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cta-phone-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}
.cta-phone-link:hover { color: var(--gold-light); transform: scale(1.05); }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- CONTACT FORM SECTION ---------- */
.contact-section {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--white); }
.contact-detail-text strong { display: block; font-family: 'Raleway', sans-serif; font-size: .85rem; color: var(--navy); margin-bottom: .2rem; }
.contact-detail-text span, .contact-detail-text a { color: var(--gray); font-size: .92rem; display: block; }
.contact-detail-text a:hover { color: var(--gold); }
.contact-social-row {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-icon-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-icon-btn:hover { background: var(--gold); transform: translateY(-2px); }

/* ---------- FORM ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-subtitle { font-size: .9rem; color: var(--gray); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.required { color: var(--gold); }

/* ---------- SERVICE DETAIL SECTIONS (services.html) ---------- */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-detail-content p { margin-bottom: 1.25rem; }
.service-bullets { list-style: none; margin: 1rem 0 1.5rem; }
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .95rem;
  color: var(--dark);
}
.service-bullets li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.service-group-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin: 3rem 0 0;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.service-group-header h2 { color: var(--white); font-size: 1.2rem; }

/* ---------- ABOUT ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-img-main {
  grid-column: 1 / -1;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm { height: 180px; border-radius: var(--radius); overflow: hidden; }
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-values { margin-top: 2rem; }
.about-values li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .95rem;
  color: var(--dark);
}
.about-values li span:first-child {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.team-card-img { height: 260px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-info { padding: 1.25rem; }
.team-card-info h3 { font-size: 1rem; margin-bottom: .3rem; }
.team-card-info span { font-size: .85rem; color: var(--gray); }

/* ---------- SERVICE AREAS PAGE ---------- */
.areas-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.area-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.area-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.area-card p { font-size: .85rem; }

/* ---------- PAGE HERO BANNER ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-family: 'Raleway', sans-serif;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.35); }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* ---------- HOURS TABLE ---------- */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table td { padding: .6rem 0; font-size: .92rem; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); font-family: 'Raleway', sans-serif; }
.hours-table td:last-child { text-align: right; color: var(--gray); }
.hours-table .today td { color: var(--gold); }
.open-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-left: .5rem;
  font-family: 'Raleway', sans-serif;
}
.closed-badge {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-left: .5rem;
  font-family: 'Raleway', sans-serif;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; object-fit: contain; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-tagline {
  font-style: italic;
  color: var(--gold);
  font-size: .82rem;
  margin-top: .75rem;
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .85rem;
  font-size: .88rem;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- FLOATING CALL BUTTON ---------- */
.call-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,146,42,.5);
  animation: callpulse 2.5s infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.call-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
  box-shadow: 0 8px 28px rgba(200,146,42,.7);
}
.call-float svg { color: var(--white); }
@keyframes callpulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,146,42,.5); }
  50% { box-shadow: 0 4px 32px rgba(200,146,42,.8), 0 0 0 10px rgba(200,146,42,.1); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-group > * { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal-group.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .1s; }
.reveal-group.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .2s; }
.reveal-group.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .3s; }
.reveal-group.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .4s; }
.reveal-group.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .5s; }

/* ---------- PRIVACY PAGE ---------- */
.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.privacy-content h2 { font-size: 1.4rem; margin: 2.5rem 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--cream-dark); }
.privacy-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.privacy-content p, .privacy-content li { color: var(--gray); margin-bottom: .75rem; }
.privacy-content ul { padding-left: 1.5rem; list-style: disc; }
.privacy-content a { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 1.2rem; color: var(--gray); font-size: .95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 2.5rem; }
  .hero-right { min-height: 380px; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid.reverse { direction: ltr; }
  .areas-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; border-radius: var(--radius); font-size: .95rem; }
  .nav-links a.nav-cta { text-align: center; margin-top: .5rem; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .hero-right { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .areas-page-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 1rem; flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .hero-btns { flex-direction: column; }
  .cta-phones { flex-direction: column; gap: 1rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 1.5rem; }
  .service-card { flex: 0 0 240px; }
}
