/* ============================================
   CONSULENZA PAGE STYLES
   ============================================ */

/* Hero Section */
.consulenza-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #1f1144 50%, #302b63 100%);
  padding: 100px 5% 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #6c63ff 0%, #ff6b6b 100%);
  top: -150px;
  left: -100px;
  animation: floatOrb 10s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ffdd57 0%, #6c63ff 100%);
  bottom: -100px;
  right: -50px;
  animation: floatOrb 10s ease-in-out infinite 5s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: #ffdd57;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.consulenza-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.consulenza-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ============================================
   OPTIONS SECTION
   ============================================ */

.consulenza-options {
  padding: 80px 5%;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.container {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.option-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.option-card.featured {
  border: 2px solid #6c5ce7;
  transform: scale(1.02);
}

.option-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #6c5ce7 0%, #5652d4 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

.option-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #eee 100%);
}

.option-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6c63ff 0%, #5652d4 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.option-card:hover .option-icon {
  transform: scale(1.1) rotate(5deg);
}

.option-icon i {
  font-size: 1.8rem;
  color: white;
}

.option-header h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin: 0 0 0.5rem;
}

.option-desc {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.option-body {
  padding: 2rem;
}

.option-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.option-price .price {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6c5ce7;
}

.option-price .duration {
  color: #999;
  font-size: 0.9rem;
}

.option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.option-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: #555;
  font-size: 0.95rem;
}

.option-features li i {
  color: #27ae60;
  font-size: 0.9rem;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-section {
  padding: 80px 5%;
  background: #fff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  font-size: 2rem;
  color: #1a1a2e;
  margin: 0 0 2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #6c5ce7 0%, #5652d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: #1a1a2e;
}

.step-content p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Booking Form Card */
.booking-form-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.booking-form-card h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form-card h3 i {
  color: #6c5ce7;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6c5ce7;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
  background: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'SEGO', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #6c5ce7 0%, #5652d4 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.btn-block {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin: 1rem 0 0;
}

.form-note i {
  color: #27ae60;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 50px;
  color: #6c5ce7;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.text-gradient {
  background: linear-gradient(135deg, #6c63ff 0%, #ff6b6b 50%, #ffdd57 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
  max-width: none;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question i:first-child {
  color: #6c5ce7;
  font-size: 1.1rem;
}

.faq-question h4 {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  color: #1a1a2e;
}

.toggle-icon {
  color: #999;
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .consulenza-hero {
    min-height: 50vh;
    padding: 80px 3% 40px;
  }
  
  .consulenza-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .consulenza-hero p {
    font-size: 0.95rem !important;
  }
  
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .option-header h3 {
    font-size: 1.1rem;
  }
  
  .option-header p {
    font-size: 0.85rem;
  }
  
  .price-display {
    font-size: 1.8rem;
  }
  
  .price-display span {
    font-size: 0.8rem;
  }
  
  .booking-info h2 {
    font-size: 1.4rem;
  }
  
  .booking-form-card h3 {
    font-size: 1.2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .option-card.featured {
    transform: none;
  }
  
  .option-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
