/* ===================================================
   LALO'S WINDOW TINT — Premium CSS
   Color Scheme: Crimson Red + Jet Black + White
   Font: Bebas Neue (display) + Rajdhani + Nunito Sans
   =================================================== */

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

:root {
  --red:        #c0000a;
  --red-dark:   #8a0007;
  --red-light:  #e8000d;
  --black:      #0d0d0d;
  --black-2:    #161616;
  --black-3:    #1e1e1e;
  --black-4:    #2a2a2a;
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --gray-light: #e0e0e0;
  --gray:       #888888;
  --gray-dark:  #444444;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.18);
  --shadow-md:  0 6px 24px rgba(0,0,0,.28);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.38);
  --shadow-red: 0 4px 20px rgba(192,0,10,.4);

  --radius:    6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

/* ─── Utility ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.center { text-align: center; }

section { position: relative; }

/* ─── Typography ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--gray-dark);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0.75rem auto 0;
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Dark background button-outline variant */
.dark-bg .btn-outline,
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); }

/* ─── Top Bar ───────────────────────────────────── */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.45rem 0;
  border-bottom: 1px solid #222;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-inner span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-inner a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar-inner a:hover { color: var(--red-light); }
.topbar-hrs { margin-left: auto; }

/* ─── Header ────────────────────────────────────── */
.site-header {
  background: var(--black-2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--red);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.logo-img-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Footer logo slightly smaller */
.footer-brand .logo-img {
  height: 34px;
}

/* ─── Font Awesome Icon Utilities ─── */
.service-icon i,
.why-icon i,
.value-icon i,
.contact-card-icon i {
  color: var(--red);
  font-size: inherit;
}
.map-icon i { color: var(--red); font-size: 1rem; }
.footer-contact-info a i { color: var(--red); margin-right: 0.15rem; }
.google-badge i { margin-right: 0.2rem; }
.google-profile-btn i { margin-right: 0.3rem; }
.btn i { font-size: 0.95em; }

/* Desktop Nav */
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 0.25rem; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.5px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--red); }

.cta-call { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--black-3);
  padding: 1.5rem;
  border-top: 1px solid #333;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #333;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }

/* ─── Hero Section ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-bg-img.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(10,0,0,0.7) 50%,
    rgba(192,0,10,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem 4rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}
.hero-title .accent { color: var(--red); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── About Strip ───────────────────────────────── */
.about-strip { padding: 6rem 0; background: var(--white); }

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

.about-strip-text h2 { margin-bottom: 1rem; }
.about-strip-text p { color: var(--gray-dark); margin-bottom: 1rem; }
.about-strip-text .btn { margin-top: 0.5rem; }

.about-strip-imgs {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* ─── Services Preview ──────────────────────────── */
.services-preview {
  padding: 6rem 0;
  background: var(--black-2);
}
.services-preview .section-header h2,
.services-preview .section-header .section-subtitle { color: var(--white); }

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

.service-card {
  background: var(--black-3);
  border: 1px solid #2e2e2e;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { background: var(--black-4); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 1.25rem; }

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.service-link:hover { color: var(--red-light); }

/* ─── Why Us ────────────────────────────────────── */
.why-us { padding: 6rem 0; background: var(--off-white); overflow: hidden; }

.why-us-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c0000a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.why-us .section-header { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--red); }

.why-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.why-card h3 { color: var(--black); margin-bottom: 0.5rem; font-size: 1.15rem; }
.why-card p { color: var(--gray-dark); font-size: 0.9rem; line-height: 1.65; }

/* ─── Gallery ───────────────────────────────────── */
.gallery-section { padding: 6rem 0; background: var(--black); }
.gallery-section .section-header h2,
.gallery-section .section-header .section-subtitle { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.span-2 { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(192,0,10,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ─── Testimonials ──────────────────────────────── */
.testimonials { padding: 6rem 0; background: var(--off-white); }

.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;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }

.review-author { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-family: var(--font-heading); font-weight: 700; color: var(--black); }
.review-source { font-size: 0.78rem; color: var(--gray); display: block; }

/* ─── CTA Banner ────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(192,0,10,0.65));
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}
.cta-banner-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-banner-content .hero-ctas { justify-content: center; }

/* ─── Contact + Map ─────────────────────────────── */
.contact-map-section { padding: 6rem 0; background: var(--white); }

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

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.contact-form { 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: 0.3rem; }

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,0,10,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.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='%23888' 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; }

/* Map */
.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-info-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--black-2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--red);
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
}
.map-info-item a { color: var(--white); transition: color var(--transition); }
.map-info-item a:hover { color: var(--red-light); }
.map-icon { font-size: 1rem; }

.map-wrap iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.google-profile-btn {
  display: block;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.google-profile-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ─── Page Hero (inner pages) ───────────────────── */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 2px;
  margin: 0.5rem 0;
}
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 1rem; }

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span:last-child { color: var(--red); }

/* ─── Services Page ─────────────────────────────── */
.services-intro { padding: 6rem 0; background: var(--white); }
.services-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.services-intro-text h2 { margin-bottom: 1rem; }
.services-intro-text p { color: var(--gray-dark); margin-bottom: 1rem; }
.services-intro-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 400px;
  width: 100%;
  object-fit: cover;
}

/* Service Details */
.service-detail { padding: 5rem 0; background: var(--white); }
.service-detail.alt { background: var(--off-white); }

.service-detail-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail.alt .service-detail-inner { direction: rtl; }
.service-detail.alt .service-detail-inner > * { direction: ltr; }

.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -1.5rem;
}
.service-detail-text h2 { color: var(--black); margin-bottom: 1rem; }
.service-detail-text p { color: var(--gray-dark); margin-bottom: 1.5rem; }

.service-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-features li {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
}

/* FAQ */
.faq-section { padding: 6rem 0; background: var(--black-2); }
.faq-section .section-header h2 { color: var(--white); }

.faq-grid { display: flex; flex-direction: column; gap: 0; max-width: 860px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid #333; }

.faq-q {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 1rem; }
.faq-a p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }

/* ─── About Page ────────────────────────────────── */
.about-story { padding: 6rem 0; background: var(--white); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-text h2 { margin-bottom: 1rem; }
.about-story-text p { color: var(--gray-dark); margin-bottom: 1rem; }

.about-story-imgs { position: relative; }
.story-img-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--red);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  border: 4px solid var(--white);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.badge-txt {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  opacity: 0.85;
}

/* Milestones */
.milestones { padding: 5rem 0; background: var(--black); overflow: hidden; }
.milestones-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,0,10,0.1) 0%, transparent 60%);
}
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2rem;
  border: 1px solid #222;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
}
.milestone-item:hover { border-color: var(--red); background: rgba(192,0,10,0.06); }
.milestone-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}
.milestone-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

/* Values */
.values-section { padding: 6rem 0; background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--red); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; color: var(--black); }
.value-card p { font-size: 0.9rem; color: var(--gray-dark); }

/* About Gallery */
.about-gallery { padding: 6rem 0; background: var(--black-2); }
.about-gallery .section-header h2 { color: var(--white); }
.about-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.about-gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.about-gallery-strip img:hover { transform: scale(1.04); }

/* CTA Strip */
.cta-strip { padding: 4rem 0; background: var(--black); border-top: 2px solid var(--red); }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-strip p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 0.3rem; }
.cta-strip-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ─── Contact Page ──────────────────────────────── */
.contact-cards-section { padding: 4rem 0 0; background: var(--white); }
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--red); }
.contact-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-card h3 { margin-bottom: 0.5rem; color: var(--black); }
.contact-card p { font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 0.75rem; }
.contact-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-card-link:hover { color: var(--red-dark); }
.contact-hours { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-hours span { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--black); }

.contact-page-main { padding-top: 4rem; }

/* ─── Footer ────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.footer-contact-info a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--red-light); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  display: inline-block;
}
.footer-col li a:hover { color: var(--red-light); transform: translateX(4px); }

.hours-list { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #222;
  gap: 1rem;
}
.hours-list li:last-child { border: none; }
.hours-list li span:last-child { color: rgba(255,255,255,0.9); }

.google-badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.google-badge:hover { background: var(--red-dark); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ─── Scroll Animation ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .cta-call { display: none; }
  .hamburger { display: flex; }

  .topbar-hrs { display: none; }
  .topbar-inner { gap: 1rem; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 8rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; }

  .about-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-float { display: none; }
  .about-img-main { height: 280px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .milestones-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery-strip { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.span-2 { grid-column: span 2; }

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

  .contact-map-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .services-intro-inner { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail.alt .service-detail-inner { direction: ltr; }
  .service-detail-img { display: none; }

  .about-story-inner { grid-template-columns: 1fr; }
  .story-badge { display: none; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }

  .contact-cards-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .milestones-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .about-gallery-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }
}
