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

body {
  background: #0b0b0b;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(208,0,0,0.28), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(208,0,0,0.18), transparent 30%),
    linear-gradient(135deg, #050505 0%, #111 45%, #050505 100%);
}

.site-wrapper {
  position: relative;
  z-index: 1; /* all content above the 3D background */
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(700px) rotateX(60deg) scale(1.8);
  transform-origin: center bottom;
  opacity: 0.22;
  pointer-events: none;
}

.nav {
  position: relative;
  margin: 25px auto 0;
  width: 96%;
  padding: 28px 45px;
  border: 2px solid #d00000;
  border-radius: 14px;
  background: #151515;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  width: 210px;
}

.book-btn,
.btn,
.small-btn,
.phone-btn {
  background: #d00000;
  color: white;
  padding: 16px 35px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}

.hero {
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero h1,
.hero p {
  transform: translateZ(30px);
}

.hero h1 {
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow:
    0 5px 0 #000,
    0 0 28px rgba(255,0,0,0.35);
}

.hero h1 span {
  color: #d00000;
}

.hero p {
  font-size: 34px;
  margin-bottom: 35px;
  color: #f5f5f5;
  letter-spacing: 1px;
}

.badge {
  margin: 0 auto 45px;
  padding: 22px 55px;
  background: linear-gradient(145deg, #191919, #070707);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 60px;
  width: fit-content;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.badge span {
  display: block;
  font-size: 18px;
}

.badge strong {
  color: #ff0000;
  font-size: 24px;
  text-shadow: 0 0 18px rgba(255,0,0,0.45);
}

.hero-buttons .btn {
  font-size: 20px;
  padding: 20px 50px;
  border-radius: 10px;
}

.btn.outline {
  background: transparent;
  border: 2px solid white;
}

.btn.red {
  background: linear-gradient(145deg, #ff0000, #9f0000);
  box-shadow: 0 15px 35px rgba(208,0,0,0.45);
}

.section {
  padding: 90px 6%;
  text-align: center;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
    rgba(208,0,0,0.06),
    transparent 60%);
  pointer-events: none;
}

.section h2 {
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 25px rgba(255,0,0,0.25);
}

.underline {
  width: 110px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  margin: 18px auto 60px;
  box-shadow: 0 0 18px rgba(255,0,0,0.65);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.card {
  background: #181818;
  border-top: 5px solid #d00000;
  border-radius: 16px;
  padding: 55px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.card h3 {
  font-size: 36px;
  margin-bottom: 28px;
}

.card li {
  list-style: none;
  margin: 18px 0;
  font-size: 20px;
}

.card li::before {
  content: "✓";
  color: #d00000;
  margin-right: 14px;
}

.small-btn {
  margin-top: 35px;
}

.extras {
  position: relative;
}

.extra-grid div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #202020, #101010);
  padding: 38px 34px;
  border-radius: 18px;
  font-size: 26px;
  font-weight: 800;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 35px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: 0.3s ease;
}

.extra-grid div::before {
  content: "✦";
  color: #d00000;
  font-size: 22px;
  margin-right: 12px;
}

.extra-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.10), transparent 35%, rgba(208,0,0,0.12));
  opacity: 0;
  transition: 0.3s ease;
}

.extra-grid div:hover {
  transform: translateY(-7px);
  border-color: #d00000;
  color: #fff;
  box-shadow:
    0 22px 45px rgba(0,0,0,0.65),
    0 0 24px rgba(208,0,0,0.35);
}

.extra-grid div:hover::after {
  opacity: 1;
}

.service-area {
  padding: 110px 6%;
}

.area-box {
  position: relative;
  overflow: hidden;
  max-width: 1150px;
  background:
    linear-gradient(145deg, #252525, #111 55%, #060606);
  margin: auto;
  padding: 85px 70px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 0 2px rgba(208,0,0,0.65),
    0 30px 70px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.area-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 7px;
  background: linear-gradient(90deg, transparent, #ff0000, #ffffff, #ff0000, transparent);
  box-shadow: 0 0 24px rgba(255,0,0,0.75);
}

.area-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.07), transparent 35%, rgba(208,0,0,0.10));
  pointer-events: none;
}

.area-box h2,
.area-box h3,
.area-title,
.phone-btn,
.area-note {
  position: relative;
  z-index: 2;
}

.area-box h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow:
    0 4px 0 #050505,
    0 0 24px rgba(255,0,0,0.28);
}

.area-box h3 {
  color: #ff0000;
  font-size: clamp(34px, 4vw, 56px);
  margin: 10px 0 45px;
  text-shadow: 0 0 22px rgba(255,0,0,0.45);
}

.area-title {
  display: inline-block;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
  margin-bottom: 28px;
  font-size: 18px;
}

.phone-btn {
  background: linear-gradient(145deg, #ff0000, #9f0000);
  padding: 20px 48px;
  border-radius: 12px;
  font-size: 24px;
  box-shadow:
    0 14px 35px rgba(208,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 45px rgba(255,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.area-note {
  max-width: 900px;
  margin: 42px auto 0;
  color: #c9c9c9;
  font-size: 22px;
  line-height: 1.45;
}

.gallery {
  position: relative;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.comparison-card {
  background: linear-gradient(145deg, #202020, #0d0d0d);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 5px solid #d00000;
  box-shadow:
    0 20px 45px rgba(0,0,0,0.6),
    0 0 20px rgba(208,0,0,0.18);
  transition: 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.75),
    0 0 28px rgba(208,0,0,0.35);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after div {
  position: relative;
  overflow: hidden;
}

.before-after span {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}

.before-after div:last-child span {
  background: #d00000;
}

.before-after img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.comparison-card:hover img {
  transform: scale(1.04);
}

.featured-comparison {
  grid-column: 1 / -1;
}

.featured-comparison .before-after img {
  height: 420px;
}

.testimonials {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #202020, #101010);
  padding: 42px;
  border-radius: 18px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 4px solid #d00000;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 25px;
  font-size: 120px;
  color: rgba(208,0,0,0.22);
  font-family: Georgia, serif;
}

.review-card:hover {
  transform: translateY(-7px);
  border-color: #ff0000;
  box-shadow:
    0 22px 55px rgba(0,0,0,0.7),
    0 0 25px rgba(208,0,0,0.35);
}

.review-card p {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: #f5f5f5;
}

.review-bottom {
  position: relative;
  z-index: 2;
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.review-card strong {
  color: #ff0000;
  font-size: 20px;
}

.review-card span {
  color: #ff0000;
  font-size: 22px;
  letter-spacing: 2px;
}

.featured-review {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(208,0,0,0.18), transparent 35%),
    linear-gradient(145deg, #252525, #0b0b0b);
}

.final-cta {
  position: relative;
  margin: 90px auto;
  width: 92%;
  overflow: hidden;
  padding: 85px 70px;
  text-align: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 0, 0, 0.22), transparent 35%),
    linear-gradient(145deg, #242424 0%, #111 45%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 2px rgba(208, 0, 0, 0.75),
    0 25px 60px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #ff0000, #ffffff, #ff0000, transparent);
  box-shadow: 0 0 25px rgba(255,0,0,0.9);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 35%, transparent 65%, rgba(255,0,0,0.08));
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 42px;
  color: #fff;
  text-shadow:
    0 4px 0 #050505,
    0 0 22px rgba(255,0,0,0.35);
}

.cta-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.cta-features div {
  background: linear-gradient(145deg, #2b2b2b, #141414);
  padding: 34px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
  font-size: 24px;
  font-weight: 700;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: 0.3s ease;
}

.cta-features div:hover {
  transform: translateY(-6px);
  border-color: #d00000;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),
    0 0 22px rgba(208,0,0,0.35);
}

.final-cta .btn.red {
  position: relative;
  z-index: 2;
  padding: 22px 70px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ff0000, #9f0000);
  box-shadow:
    0 14px 35px rgba(208,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);
  font-size: 20px;
}

.final-cta .btn.red:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 45px rgba(255,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.price {
  color: #ff0000;
  font-size: 36px;
  font-weight: 900;
  margin: 10px 0 30px;
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}

.price span {
  display: block;
  color: #b8b8b8;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer {
  padding: 85px 6% 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 80px;
  color: #b8b8b8;
}

.footer-logo {
  width: 360px;
  margin-bottom: 35px;
}

footer p {
  font-size: 22px;
  line-height: 1.9;
}

footer h4 {
  font-size: 38px;
  margin-bottom: 30px;
}

footer div:nth-child(2) p {
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-socials {
  justify-self: center;
}

.footer-socials h4 {
  font-size: 30px;
  margin-bottom: 25px;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 58px);
  gap: 18px 16px;
}

.social-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d00000;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #d00000;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(208,0,0,0.55);
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 35px;
  margin-top: 45px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #9b9b9b;
  font-size: 18px;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.dropdown {
  position: relative;
}

.dropbtn {
  background: transparent;
  color: #f5f5f5;
  border: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  padding: 14px 10px;
  letter-spacing: 0.5px;
}

.dropbtn i {
  color: #d00000;
  font-size: 12px;
  margin-left: 7px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid #d00000;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.65);
  z-index: 10000;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  color: #f5f5f5;
  text-decoration: none;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: 0.25s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: #d00000;
  color: white;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

.about-section,
.policies-section {
  position: relative;
}

.about-box {
  max-width: 1050px;
  margin: 0 auto;
  background: linear-gradient(145deg, #202020, #101010);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  border-bottom: 4px solid #d00000;
  padding: 55px;
  text-align: left;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.about-box p {
  font-size: 23px;
  line-height: 1.7;
  color: #d6d6d6;
  margin-bottom: 22px;
}

.about-box p:last-child {
  margin-bottom: 0;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-card {
  background: linear-gradient(145deg, #202020, #101010);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 5px solid #d00000;
  padding: 40px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.policy-card h3 {
  color: #ff0000;
  font-size: 28px;
  margin-bottom: 18px;
}

.policy-card p {
  color: #d6d6d6;
  font-size: 20px;
  line-height: 1.55;
}

.featured-policy {
  grid-column: 1 / -1;
}

.card,
.review-card,
.policy-card,
.about-box,
.area-box,
.final-cta,
.comparison-card {
  transform-style: preserve-3d;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.75),
    0 0 25px rgba(208,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.review-card:hover,
.policy-card:hover,
.comparison-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.scroll-element {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-element.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 22px;
  }

  .service-grid,
  .extra-grid,
  .cta-features,
  footer {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 20px;
  }

  .logo {
    width: 150px;
  }

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

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after img,
  .featured-comparison .before-after img {
    height: 280px;
  }

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

  .review-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta {
    padding: 60px 25px;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .final-cta .btn.red {
    width: 100%;
    padding: 18px 25px;
  }

  .footer-logo {
  width: 260px;
}

.nav {
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.nav-menu {
  order: 3;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.dropbtn {
  font-size: 15px;
  padding: 10px 8px;
}

.dropdown-content {
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
}

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

.about-box {
  padding: 32px;
}

.about-box p,
.policy-card p {
  font-size: 18px;
}

.policy-card {
  padding: 30px;
}
}