:root {
  --z-bg: #0b0f19;
  --z-surface: rgba(255, 255, 255, 0.04);
  --z-surface-2: #121727;
  --z-burgundy: #2a0a1a;
  --z-gold: #d4af37;
  --z-gold-light: #f0d878;
  --z-text: #f3f0e7;
  --z-muted: #a9b2c2;
  --z-border: rgba(212, 175, 55, 0.22);
  --z-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.45);
}

html{

  overflow-x: hidden;
}

body {
  background: var(--z-bg);
  color: var(--z-text);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--z-text);
}

a {
  color: var(--z-gold);
  text-decoration: none;
}

a:hover {
  color: var(--z-gold-light);
}

.btn-primary {
  background: linear-gradient(135deg, var(--z-gold), #b08d26);
  border: none;
  color: #121212;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e4c45c, var(--z-gold));
  color: #121212;
}

.btn-outline-gold {
  border: 1px solid var(--z-gold);
  color: var(--z-gold);
  background: transparent;
  padding: 0.65rem 1.35rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: var(--z-gold);
  color: #121212;
}

.navbar {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--z-border);
}

.navbar-brand img {
  max-height: 48px;
}

.navbar .nav-link {
  color: var(--z-text);
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--z-gold);
}

.navbar-toggler {
  border: 1px solid var(--z-gold);
  color: var(--z-gold);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(212, 175, 55, 0.35);
}

.glass-card {
  background: var(--z-surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--z-border);
  border-radius: 1rem;
  box-shadow: var(--z-shadow);
  padding: 1.75rem;
}

.glass-section {
  position: relative;
  z-index: 1;
}

.glass-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.06), rgba(42, 10, 26, 0.12));
  z-index: -1;
  pointer-events: none;
}

.section-glow {
  position: relative;
}

.section-glow::after {
  content: '';
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 65%);
  top: -6rem;
  right: -4rem;
  z-index: -1;
  pointer-events: none;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.88), rgba(42, 10, 26, 0.75));
}

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

.gold-rule {
  width: 4rem;
  height: 0.25rem;
  background: var(--z-gold);
  border-radius: 0.25rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--z-surface);
  border: 1px solid var(--z-border);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--z-gold);
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--z-muted);
  max-width: 640px;
}

.service-card {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.55);
}

.service-card .card-img-top {
  height: 220px;
  object-fit: cover;
  background: var(--z-surface-2);
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--z-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--z-gold);
}

.stars {
  color: var(--z-gold);
}

.partner-logo {
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0.95) grayscale(0.25);
  transition: filter 0.2s;
}

.partner-logo:hover {
  filter: brightness(1.1) grayscale(0);
}

.map-frame {
  border: 0;
  border-radius: 1rem;
  width: 100%;
  min-height: 360px;
}

.price-table {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: 1rem;
  overflow: hidden;
}

.price-table thead {
  background: rgba(212, 175, 55, 0.16);
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  color: var(--z-text);
  border-bottom: 1px solid var(--z-border);
}

.accordion-button {
  background: var(--z-surface);
  color: var(--z-text);
  border: 1px solid var(--z-border);
  border-radius: 0.6rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(212, 175, 55, 0.14);
  color: var(--z-text);
  box-shadow: none;
}

.accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--z-gold);
  font-size: 0.9rem;
  width: auto;
  height: auto;
  transition: transform 0.2s ease;
}

.accordion-body {
  background: var(--z-surface);
  color: var(--z-text);
  border: 1px solid var(--z-border);
  border-top: 0;
  border-radius: 0 0 0.6rem 0.6rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--z-border);
  color: var(--z-text);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--z-gold);
  color: var(--z-text);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
  color: var(--z-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 25, 0.96);
  border-top: 1px solid var(--z-border);
  z-index: 1050;
  padding: 1rem 0;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.age-badge {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1040;
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.65rem 1rem;
  font-weight: 800;
  box-shadow: var(--z-shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.responsible-notice {
  background: rgba(185, 28, 28, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #f3f0e7;
  font-size: 0.9rem;
}

.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1060;
}

.toast {
  background: var(--z-surface);
  color: var(--z-text);
  border: 1px solid var(--z-border);
}

.img-rounded {
  border-radius: 1rem;
}

.img-gold-border {
  border: 2px solid var(--z-gold);
  border-radius: 1rem;
}

.diagonal-top {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
}

.diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.gold-gradient-text {
  background: linear-gradient(90deg, var(--z-gold), var(--z-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer {
  background: #070a10;
  border-top: 1px solid var(--z-border);
}

.footer a {
  color: var(--z-muted);
}

.footer a:hover {
  color: var(--z-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
