:root {
  --black: #0a0a0a;
  --black-soft: #151515;
  --red: #e30613;
  --red-dark: #b00410;
  --white: #ffffff;
  --gray: #b9b9b9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Oswald', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: 'Oswald', 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.header-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: 90px 16px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2rem;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 0 0 16px;
}

.hero-offer {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  margin: 0 0 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  width: 100%;
  max-width: 320px;
  border: 2px solid transparent;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== SECTIONS GENERIC ===== */
section {
  padding: 50px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 30px;
  color: var(--white);
}

/* ===== SERVICES ===== */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--black);
  color: var(--white);
  border: 1px solid #222;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 24px;
}

.service-card h3 {
  color: var(--red);
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--gray);
  margin: 0;
}

.services-extra {
  text-align: center;
  color: var(--gray);
  margin: 24px 0 16px;
  font-size: 0.95rem;
}

.pricing-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 1.05rem;
  margin-top: 8px;
}

.pricing-line strong {
  color: var(--red);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--black-soft);
}

.gallery h2 {
  color: var(--white);
}

.gallery-hint {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin: -16px 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.compare {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid var(--red);
  touch-action: pan-y;
  user-select: none;
}

.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare-after {
  z-index: 1;
}

.compare-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--red);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.compare-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.compare-tag {
  position: absolute;
  top: 10px;
  z-index: 4;
  background: rgba(10, 10, 10, 0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-tag-before {
  left: 10px;
}

.compare-tag-after {
  right: 10px;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  z-index: 5;
}

/* ===== WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-item {
  text-align: center;
  padding: 16px;
}

.why-item h3 {
  color: var(--red);
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.why-item p {
  color: var(--gray);
  margin: 0;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--black-soft);
}

.reviews h2 {
  color: var(--white);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto 30px;
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 12px 18px;
  animation: google-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.google-badge:hover {
  transform: translateY(-2px);
}

.google-badge-icon {
  flex-shrink: 0;
}

.google-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.google-badge-rating {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.google-badge-stars {
  color: #ffc107;
  font-size: 0.85rem;
  margin-left: 4px;
}

.google-badge-label {
  color: var(--gray);
  font-size: 0.8rem;
}

@keyframes google-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
  }
}

.reviews-marquee {
  overflow: hidden;
  margin: 0 -16px;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 40s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 260px;
  background: var(--black);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 20px;
  color: var(--gray);
  animation: review-float 5s ease-in-out infinite;
}

.review-card:nth-child(3n+2) {
  animation-delay: -1.6s;
}

.review-card:nth-child(3n+3) {
  animation-delay: -3.2s;
}

@keyframes review-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    animation: none;
  }
  .reviews-track {
    animation: none;
  }
}

.stars {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.review-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 10px 0 0;
}

/* ===== SERVICE AREA ===== */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-area-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--red);
  border-radius: 8px;
  overflow: hidden;
}

.service-area-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-area-info h3 {
  color: var(--red);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.service-area-info p {
  color: var(--gray);
  margin: 0 0 20px;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  margin: -8px 0 16px;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
}

.directions-link:hover {
  background: var(--red);
}

.service-area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
}

.service-area-list li {
  background: var(--black-soft);
  border: 1px solid #222;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .service-area-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ===== BOOKING FORM ===== */
.booking {
  background: var(--black);
  text-align: center;
}

.booking-sub {
  color: var(--gray);
  margin: 0 0 24px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.booking-form[hidden] {
  display: none;
}

.booking-form label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.booking-form input,
.booking-form select {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 1rem;
  border: 2px solid #333;
  border-radius: 6px;
  width: 100%;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--red);
  outline: none;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: auto;
  min-height: auto;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--red);
}

.consent-label span {
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 400;
}

.form-note {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.btn-submit {
  background: var(--red);
  color: var(--white);
  margin-top: 8px;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--red-dark);
}

.form-success {
  max-width: 420px;
  margin: 16px auto 0;
  background: #1c8a1c;
  color: var(--white);
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== LEGAL PAGE ===== */
.legal-content {
  max-width: 720px;
  padding: 50px 16px 80px;
}

.legal-updated {
  color: var(--gray);
  font-size: 0.85rem;
  margin: -10px 0 30px;
}

.legal-content h1 {
  text-align: left;
  margin: 0 0 8px;
}

.legal-content h2 {
  text-align: left;
  font-size: 1.15rem;
  color: var(--red);
  margin: 30px 0 10px;
}

.legal-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 12px;
}

.legal-back {
  display: inline-flex;
  width: auto;
  margin-top: 20px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px;
}

.thank-you-content {
  max-width: 480px;
}

.thank-you-check {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1c8a1c;
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-sub {
  color: var(--gray);
  font-size: 1.1rem;
  margin: 0 0 12px;
}

.thank-you-offer {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 28px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  max-width: 100%;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .hero-buttons {
  margin-top: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--gray);
  text-align: center;
  padding: 30px 16px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--red);
  font-weight: 700;
}

.footer-tag {
  margin-top: 16px;
  color: #555;
  font-size: 0.8rem;
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    width: auto;
  }

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

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

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

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

  .pricing-line {
    flex-direction: row;
    gap: 30px;
  }
}
