:root {
  --bs-font-sans-serif: 'Inter', system-ui, sans-serif;
  --shop-red: #e81512;
  --shop-dark: #111827;
  --shop-blue: #1f2a44;
  --shop-yellow: #f9d949;
  --shop-muted: #6b7280;
}

body {
  overflow-x: hidden;
  background: #f6f7fb;
}

a {
  text-decoration: none;
}

.custom-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--shop-blue);
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a:not(.btn) {
  color: var(--shop-dark);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--shop-red);
}

.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(8, 13, 28, 0.95), rgba(31, 42, 68, 0.75)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: 70px;
  background: radial-gradient(circle, rgba(249, 217, 73, 0.35), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.min-vh-75 {
  min-height: 78vh;
}

.hero h1 {
  letter-spacing: -0.06em;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--shop-dark);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-top: 7px solid var(--shop-yellow);
}

.small-title,
.section-label {
  display: inline-block;
  color: var(--shop-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.section-label.light {
  color: var(--shop-yellow);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.status-row strong {
  color: var(--shop-red);
  text-align: right;
}

.section {
  padding: 5.5rem 0;
}

.service-card {
  height: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 1.8rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 15px 35px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(17, 24, 39, 0.14);
  border-color: rgba(232, 21, 18, 0.25);
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--shop-dark);
}

.service-card p {
  color: var(--shop-muted);
  margin-bottom: 0;
}

.icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff4b8, #ffe066);
  font-size: 1.9rem;
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.08);
}

.about-section {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 217, 73, 0.18), transparent 30%),
    linear-gradient(135deg, #111827, #374162);
}

.stat {
  padding: 2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  min-height: 150px;
}

.stat strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--shop-yellow);
}

.stat span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-box,
.booking-form {
  background: #fff;
  border-radius: 1.8rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 15px 35px rgba(17, 24, 39, 0.08);
}

.contact-box {
  padding: 1.6rem;
}

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

.booking-form {
  padding: 2rem;
}

.form-control,
.form-select {
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--shop-yellow);
  box-shadow: 0 0 0 .25rem rgba(249, 217, 73, .28);
}

.btn {
  border-radius: 999px;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.btn-primary {
  --bs-btn-bg: #374162;
  --bs-btn-border-color: #374162;
  --bs-btn-hover-bg: #252d46;
  --bs-btn-hover-border-color: #252d46;
}

.btn-secondary {
  --bs-btn-color: #111827;
  --bs-btn-bg: #f9d949;
  --bs-btn-border-color: #f9d949;
  --bs-btn-hover-bg: #ffe56a;
  --bs-btn-hover-border-color: #ffe56a;
}

.footer {
  padding: 1.5rem 0;
  background: #0b1020;
  color: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .nav-wrap,
  .nav-links,
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .hero-card {
    margin-top: 1.5rem;
  }

  .section,
  .about-section {
    padding: 4rem 0;
  }
}

/* Updated black header */
.custom-nav {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(232, 21, 18, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.brand img,
.hero-logo {
  max-height: 82px;
  width: auto;
}

.nav-links a:not(.btn),
.nav-link-button {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-links a:not(.btn):hover,
.nav-link-button:hover {
  color: var(--shop-red);
}

.btn-outline-light {
  border-width: 2px;
}

.prices-teaser {
  background:
    radial-gradient(circle at top left, rgba(232, 21, 18, 0.12), transparent 34%),
    #f6f7fb;
}

.price-teaser-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 25px 70px rgba(17, 24, 39, 0.10);
}

.services-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.services-modal.is-open {
  display: flex;
}

.services-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.services-modal__dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 2rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  color: #fff;
}

.services-modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}

.services-modal__close:hover {
  background: var(--shop-red);
}

.services-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.services-modal__head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: .5rem;
}

.services-modal__head p {
  color: rgba(255,255,255,.70);
  max-width: 620px;
  margin: 0;
}

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

.modal-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: .85rem 1rem;
  border-radius: .95rem;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
}

.modal-service-row span {
  color: rgba(255,255,255,.92);
  font-weight: 650;
  line-height: 1.25;
}

.modal-service-row strong {
  color: #ff2a27;
  white-space: nowrap;
  font-weight: 900;
}

.modal-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(232, 21, 18, 0.12);
  border: 1px solid rgba(232, 21, 18, 0.24);
}

.modal-benefits div {
  padding: .75rem;
}

.modal-benefits strong,
.modal-benefits span {
  display: block;
}

.modal-benefits strong {
  color: #fff;
  text-transform: uppercase;
  font-size: .92rem;
  margin-bottom: .25rem;
}

.modal-benefits span {
  color: rgba(255,255,255,.68);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .modal-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand img,
  .hero-logo {
    max-height: 64px;
  }

  .services-modal {
    padding: .8rem;
  }

  .services-modal__dialog {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }

  .services-modal__head {
    display: block;
    padding-right: 0;
  }

  .modal-services-grid {
    grid-template-columns: 1fr;
  }

  .modal-service-row {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
  }
}

body {
  margin: 0;
  padding-top: 0 !important;
}

.site-header {
  position: relative;
  width: 100%;
  background: #000;
  border-bottom: 1px solid #e81512;
  z-index: 1;
}

.site-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 82px;
  width: auto;
  display: block;
}

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

.site-menu a,
.nav-link-button {
  color: #fff;
  background: transparent;
  border: 0;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.call-btn {
  background: #f9d949 !important;
  color: #000 !important;
  padding: 12px 24px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .brand img {
    height: 64px;
  }

  .site-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

.nav-link-button,
.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  body {
    padding-top: 170px;
  }
}

.simple-header {
  background: #000;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 10px;
  color: #f9d949;
  font-weight: 700;
}

.service-category {
  margin-bottom: 50px;
}

.service-category h2 {
  margin-bottom: 20px;
  border-left: 5px solid #e81512;
  padding-left: 12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-row strong {
  color: #e81512;
}

.services-page {
  background: #f6f7fb;
}

.services-hero {
  padding: 70px 0 45px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f6f7fb);
}

.services-label {
  color: #e81512;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.services-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #101827;
  margin-bottom: 14px;
}

.services-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #5b6472;
  font-size: 1.05rem;
}

.services-list-section {
  padding: 30px 0 80px;
}

.services-layout {
  max-width: 980px;
}

.service-category {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.service-category h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #101827;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(232, 21, 18, 0.18);
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row span {
  color: #1f2937;
  font-weight: 600;
}

.service-row strong {
  color: #e81512;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .service-category {
    padding: 22px;
    border-radius: 18px;
  }

  .service-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.services-list-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-page {
  width: 100%;
}

.services-list-section {
  width: 100%;
}

.services-list-section > .container,
.services-layout {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.service-category {
  width: 100%;
}

.map-section {
  padding: 80px 0;
  background: #111827;
  color: #fff;
}

.map-section .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.map-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.map-text p {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.map-box {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.map-box iframe {
  display: block;
  filter: grayscale(20%) contrast(95%);
}

@media (max-width: 900px) {
  .map-section .container {
    grid-template-columns: 1fr;
  }
}

.site-menu a.active {
  color: #e81512;
}

.success-page {
  min-height: calc(100vh - 126px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 21, 18, 0.12), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(249, 217, 73, 0.18), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.success-card {
  width: 100%;
  max-width: 680px;
  background: #fff;
  border-radius: 32px;
  padding: 52px 38px;
  text-align: center;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 75px rgba(17, 24, 39, 0.14);
}

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f9d949;
  color: #111827;
  font-size: 2.7rem;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(249, 217, 73, 0.35);
}

.success-label {
  color: #e81512;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.success-card h1 {
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.success-text {
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

.success-info {
  max-width: 520px;
  margin: 0 auto 24px;
  padding: 18px 22px;
  border-radius: 20px;
  background: #f6f7fb;
  border: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-info strong {
  color: #111827;
  font-weight: 900;
}

.success-info span {
  color: #6b7280;
}

.success-muted {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.success-muted span {
  color: #e81512;
  font-weight: 900;
}

.success-card .btn {
  padding: 13px 28px;
}

@media (max-width: 600px) {
  .success-page {
    padding: 50px 16px;
  }

  .success-card {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
}