/* ==============================================
   ÉVÉNEMENTS & LOISIRS PAGE STYLES
   Theme: Events and entertainment with vibrant colors
   ============================================== */

/* Service Header - Event themed gradient */
.service-header {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 40%, #c084fc 70%, #e879f9 100%);
  color: var(--white);
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232, 121, 249, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.service-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-header p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Service Overview */
.service-overview {
  padding: 80px 20px;
  background: var(--white);
}

.service-overview h2 {
  font-size: 2.2rem;
  color: var(--gray-dark);
  margin-bottom: 30px;
  text-align: center;
}

.overview-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-dark);
}

.overview-content p {
  margin-bottom: 20px;
}

.overview-content strong {
  color: #7c3aed;
  font-weight: 700;
}

/* Services Grid - Event themed */
.services-included {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #faf5ff, var(--white));
}

.services-included h2 {
  font-size: 2.2rem;
  color: var(--gray-dark);
  margin-bottom: 50px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Cards with Images */
.service-card-image {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 20px;
}

.service-card-content h3 {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #a855f7;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #7c3aed, #a855f7, #e879f9);
  transition: width 0.3s ease;
}

.service-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #7c3aed;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.service-card h3 .icon {
  font-size: 1.8rem;
}

.service-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Event Types Grid */
.event-types {
  padding: 80px 20px;
  background: var(--white);
}

.event-types h2 {
  font-size: 2.2rem;
  color: var(--gray-dark);
  margin-bottom: 50px;
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.type-card {
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.type-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  transition: transform 0.5s ease;
  transform: scale(0);
}

.type-card:hover::after {
  transform: scale(1);
}

.type-card:hover {
  border-color: #a855f7;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.type-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  position: relative;
  z-index: 1;
}

.type-card h3 {
  font-size: 1.3rem;
  color: #7c3aed;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.type-card p {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Performance Capabilities */
.performance-capabilities {
  padding: 80px 20px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: var(--white);
}

.performance-capabilities h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--white);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.capability-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.capability-item .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.capability-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.capability-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Safety & Regulations */
.safety-regulations {
  padding: 80px 20px;
  background: var(--white);
}

.safety-regulations h2 {
  font-size: 2.2rem;
  color: var(--gray-dark);
  margin-bottom: 50px;
  text-align: center;
}

.regulations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.regulation-item {
  background: linear-gradient(to bottom right, #faf5ff, #ffffff);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid #a855f7;
}

.regulation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.regulation-item .icon {
  font-size: 2.5rem;
  color: #a855f7;
  margin-bottom: 15px;
  display: block;
}

.regulation-item h3 {
  font-size: 1.2rem;
  color: #7c3aed;
  margin-bottom: 10px;
  font-weight: 700;
}

.regulation-item p {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process Section */
.service-process {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #faf5ff, var(--white));
}

.service-process h2 {
  font-size: 2.2rem;
  color: var(--gray-dark);
  margin-bottom: 50px;
  text-align: center;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #7c3aed, #a855f7, #e879f9);
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #e879f9);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  color: #7c3aed;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-content p {
  color: var(--gray-medium);
  line-height: 1.6;
}

/* FAQ Section */
.service-faq {
  padding: 80px 20px;
  background: var(--white);
}

.service-faq h2 {
  font-size: 2.2rem;
  color: var(--gray-dark);
  margin-bottom: 50px;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(to right, #faf5ff, #ffffff);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid #a855f7;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #7c3aed;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #a855f7;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 25px 20px;
  color: var(--gray-medium);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Section */
.service-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #e879f9);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.service-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-phone, .btn-whatsapp {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-height: 50px;
}

.btn-phone {
  background: var(--white);
  color: #7c3aed;
}

.btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-header {
    padding: 120px 20px 60px;
  }

  .service-header h1 {
    font-size: 2rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  .service-overview,
  .services-included,
  .event-types,
  .performance-capabilities,
  .safety-regulations,
  .service-process,
  .service-faq,
  .service-cta {
    padding: 60px 20px;
  }

  .service-overview h2,
  .services-included h2,
  .event-types h2,
  .performance-capabilities h2,
  .safety-regulations h2,
  .service-process h2,
  .service-faq h2,
  .service-cta h2 {
    font-size: 1.8rem;
  }

  .services-grid,
  .types-grid,
  .capabilities-grid,
  .regulations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .process-step {
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-phone, .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
