:root {
  --primary: #e85d26;
  --primary-dark: #c94d1e;
  --secondary: #2b2b2b;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --muted: #6c757d;
  --accent: #f4a261;
  --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
}

body {
  font-family: var(--font-family);
  color: var(--secondary);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
}

#page-root {
  width: 100%;
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  transition: color var(--transition);
}
a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 38, 0.35);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--dark);
}

.section-padding {
  padding: 100px 0;
}

.bg-dark-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-dark-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}
.bg-dark-overlay > * {
  position: relative;
  z-index: 1;
}

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/offerdrift_35baa9a1db50c.60273350.jpg');
  background-size: cover;
  background-position: center;
}

.hero-section .carousel {
  width: 100%;
}

.hero-section .carousel-item {
  width: 100%;
  height: 100%;
}

.slider-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 6px;
  transition: background 0.3s;
}
.slider-indicators .active {
  background: var(--primary);
  width: 36px;
  border-radius: 6px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 15px;
  border-radius: 2px;
}

.card-hover {
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 20px;
  color: #fff;
  font-size: 28px;
  margin-bottom: 1.2rem;
}

.price-card {
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 2.5rem 2rem;
  background: #fff;
  transition: all 0.4s;
  position: relative;
}
.price-card:hover {
  border-color: var(--primary);
  transform: scale(1.03);
}
.price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}
.price-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.testimonial-card .stars {
  color: #f4b942;
  font-size: 1.1rem;
}

#google-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 20px 30px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}
.cookie-banner .btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.cookie-banner .btn-accept:hover {
  background: var(--primary-dark);
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto;
}

.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--primary);
  color: #fff;
  padding: 20px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  font-weight: 600;
}
.notification.show {
  transform: translateX(0);
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
footer h5 {
  color: #fff;
  margin-bottom: 1.2rem;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--primary);
}
footer .contact-info i {
  width: 25px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}