/* ===== CSS Custom Properties ===== */
:root {
  --navy: #0D1B2A;
  --white: #FFFFFF;
  --steel-blue: #2E6DA4;
  --light-gray: #F4F6F8;
  --pale-blue: #E8EDF2;
  --text-dark: #1a1a1a;
  --text-light: #555;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.4rem; }
p { margin-bottom: 1rem; }

/* ===== Utility ===== */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section-padding { padding: 4rem 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-pale { background: var(--pale-blue); }
.text-center { text-align: center; }
.section-heading { margin-bottom: 0.5rem; }
.section-subheading { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }
.text-center .section-subheading,
.section-subheading.text-center { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.btn-primary {
  background: var(--steel-blue);
  color: var(--white);
}
.btn-primary:hover { background: #245a8a; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--steel-blue);
  border: 2px solid var(--steel-blue);
}
.btn-outline:hover { background: var(--steel-blue); color: var(--white); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.header__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__brand-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header__logo-icon {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}
.header__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header__address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  width: 100%;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  color: var(--white);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--steel-blue); }

/* Dropdowns */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: var(--white);
  margin-top: 2px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 220px;
  padding: 0.5rem 0;
  border-radius: 0 0 4px 4px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); }

/* Header CTA */
.header-cta-btn {
  background: var(--steel-blue);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header-cta-btn:hover { background: #245a8a; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--service { min-height: 40vh; }
.hero--service .hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero--service .hero-buttons {
  justify-content: center;
}
.hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 6rem 0;
}
.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0.25rem 0 0.5rem;
  letter-spacing: 0.01em;
}
.hero__address {
  font-size: 1rem;
  margin: 0.5rem 0;
  opacity: 0.9;
}
.hero__tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin: 0.25rem 0;
}
.hero__sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0.5rem 0 0;
  max-width: 550px;
}
.hero__trust {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-bar__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-bar__icon {
  font-size: 1.3rem;
}

/* ===== Review Carousel ===== */
.reviews {
  padding: 4rem 0;
  background: var(--white);
}
.section-heading-line {
  width: 50px;
  height: 3px;
  background: var(--steel-blue);
  margin: 0.75rem auto 0;
}
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.reviews-gallery {
  position: relative;
}
.reviews-gallery__track {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.reviews-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.reviews-gallery__image.active {
  opacity: 1;
}
.reviews-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.reviews-gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.reviews-gallery__dot.active { background: var(--steel-blue); }
.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.review-card {
  border-left: 3px solid var(--steel-blue);
  padding-left: 1.25rem;
}
.review-card__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.review-card__author {
  font-weight: 700;
  color: var(--navy);
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1rem; }
.service-card__link {
  color: var(--steel-blue);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.service-card__link:hover { color: #245a8a; }

/* ===== Photo Break ===== */
.photo-break {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* ===== Why Choose / Benefits ===== */
.benefits-list {
  max-width: 700px;
  margin: 0 auto;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
}
.benefits-list li::before {
  content: '✓';
  color: var(--steel-blue);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== App Section ===== */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.app-features {
  margin: 1.5rem 0;
}
.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.05rem;
}
.app-features li::before {
  content: '📱';
  flex-shrink: 0;
}
.app-mockup {
  background: var(--pale-blue);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}
.app-mockup__icon {
  font-size: 6rem;
  opacity: 0.6;
}

/* ===== Service Area ===== */
.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.cities-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
}
.cities-list li::before {
  content: '📍 ';
}

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== Forms ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none !important; }

/* ===== Rate Cards ===== */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rate-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.rate-card:hover { transform: translateY(-4px); }
.rate-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.rate-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--steel-blue);
  margin: 1rem 0;
}
.rate-card__features { margin: 1.5rem 0; }
.rate-card__features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ===== Hours Table ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1.5rem;
}
.hours-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}
.hours-table td:first-child {
  font-weight: 600;
  padding-right: 1.5rem;
}
.hours-table td:last-child {
  text-align: right;
}
.hours-closed td {
  color: #999;
}

/* ===== Google Map ===== */
.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--white); }
.footer-col ul li { margin-bottom: 0.3rem; }
.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ===== Mobile Sticky CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--steel-blue);
  text-align: center;
}
.mobile-sticky-cta a {
  display: block;
  padding: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===== Service Page Specific ===== */
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.service-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-feature h4 { margin-bottom: 0.25rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.service-feature p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ===== Thank You Page ===== */
.thank-you-content {
  text-align: center;
  padding: 6rem 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thank-you-content h1 { margin-bottom: 1rem; color: var(--navy); }
.thank-you-content p { max-width: 500px; margin: 0 auto 2rem; color: var(--text-light); font-size: 1.1rem; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .rate-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .app-section { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .hamburger { display: flex; }
  .main-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1000;
    transition: all var(--transition);
  }
  .main-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
  }
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .nav-dropdown > a {
    justify-content: center;
  }
  .nav-dropdown > a::after { display: none; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    text-align: center;
  }
  .dropdown-menu a { font-size: 1rem; padding: 0.5rem 1rem; }
  .header-cta-btn { display: none; }

  /* Content */
  .section-padding { padding: 3rem 0; }
  .hero__content { padding: 6rem 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rate-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .photo-break { height: 250px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 56px; }
  .trust-bar__grid { gap: 1rem; }
  .trust-bar__item { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 80%; }
}
