:root {
  --primary: #e63946;
  --secondary: #457b9d;
  --accent: #f4a261;
  --dark: #1d3557;
  --light: #f1faee;
  --gradient-overlay: rgba(0,0,0,0.6);
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
}
body {
  font-family: var(--font-body);
  color: #333;
  background: var(--light);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
.section-padding {
  padding: 100px 0;
}
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-dark-custom { background: var(--dark); }
.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%);
}
.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}
.btn-primary-custom:hover {
  background: #c1121f;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230,57,70,0.4);
}
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--dark);
}
.overlay-section {
  position: relative;
  color: #fff;
}
.overlay-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 1;
}
.overlay-section > * {
  position: relative;
  z-index: 2;
}
.card-premium {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
}
.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.card-premium .card-body {
  padding: 2rem;
}
.card-premium .card-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
}
.star-rating {
  color: #f4a261;
  font-size: 1.2rem;
}
#testimonialCarousel .carousel-item {
  padding: 20px 0;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary);
  border-radius: 50%;
  padding: 20px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 1rem 2rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}
.cookie-banner .btn-cookie {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-banner .btn-cookie:hover {
  background: #c1121f;
}
.form-control-custom {
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 14px 18px;
  transition: var(--transition);
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(230,57,70,0.15);
}
.carousel-item:not(.active) {
  display: none;
}
.hero-slide {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  z-index: 1;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-item .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-item .label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}
.animated-bar {
  height: 4px;
  width: 60px;
  background: var(--primary);
  margin: 20px 0;
}
.footer-custom {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 20px;
}
.footer-custom a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.footer-custom a:hover {
  color: var(--primary);
}
.footer-custom h5 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer-custom .social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: var(--transition);
}
.footer-custom .social a:hover {
  background: var(--primary);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-slide { min-height: 60vh; }
  .section-padding { padding: 60px 0; }
}
.notification {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  background: #2a9d8f;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  font-weight: 600;
  animation: slideIn 0.4s ease;
}
.notification.error {
  background: #e63946;
}
@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}