:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --accent: #FFE66D;
  --dark: #2C3E50;
  --light: #F8F9FA;
  --gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  --gradient-2: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  --gradient-3: linear-gradient(135deg, #FFE66D 0%, #F7B733 100%);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 80px;
}

section {
  padding: 80px 0;
  position: relative;
}

.hero-section {
  background: var(--gradient-1);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-20deg);
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.decorative-circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
}

.decorative-circle-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
}

.decorative-circle-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
}

.btn-custom {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-secondary-custom {
  background: var(--gradient-2);
  color: white;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.btn-secondary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.5);
}

.card-custom {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-custom img {
  height: 250px;
  object-fit: cover;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.price-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-1);
}

.price-card.featured {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(255, 107, 107, 0.3);
}

.price-card.featured::before {
  background: var(--gradient-2);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.form-control-custom {
  border-radius: 15px;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.navbar-custom {
  background: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.nav-link-custom {
  color: var(--dark);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--primary);
  background: rgba(255, 107, 107, 0.1);
}

.footer-custom {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 10px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.star-rating {
  color: var(--accent);
  font-size: 1.2rem;
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--gradient-2);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(78, 205, 196, 0.4);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.5s ease;
}

.notification.show {
  transform: translateX(0);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 107, 107, 0.05);
}

.faq-answer {
  padding: 0 25px 20px;
  display: none;
  color: #666;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.process-step {
  text-align: center;
  padding: 30px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--gradient-1);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  height: 300px;
  object-fit: cover;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.table-custom {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.table-custom thead {
  background: var(--gradient-1);
  color: white;
}

.table-custom th {
  padding: 20px;
  font-weight: 600;
}

.table-custom td {
  padding: 15px 20px;
  vertical-align: middle;
}

.slider-custom {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

.slider-item {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.slider-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 40px;
}

.blog-content {
  line-height: 1.8;
  color: #333;
}

.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.stat-card {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
}

.bg-gradient-custom {
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  .process-step::after {
    display: none;
  }
}
