/* ===== OFERTA PAGE STYLES ===== */

.consultation-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.consultation-section h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: #623838;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.highlighted-title {
  background: linear-gradient(135deg, #fdf6f0 0%, #f5eee9 100%);
  border: 3px solid #cfa7a7;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.highlighted-title h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  color: #623838;
  font-weight: 700;
}

.intro-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  color: #623838;
  margin-bottom: 25px;
  font-weight: 600;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.intro-text h3 {
  font-size: 20px;
  color: #623838;
  margin: 30px 0 20px;
  font-weight: 600;
}

.intro-text ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.intro-text li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.intro-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #cfa7a7;
  font-weight: bold;
  font-size: 16px;
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

/* Full width packages */
.consultation-type.full-width {
  grid-column: 1 / -1;
}

/* Premium package special styling */
.consultation-type.full-width h2 {
  background: linear-gradient(135deg, #8c5d5d, #623838);
  color: white;
  padding: 20px;
  margin: -35px -35px 25px -35px;
  border-radius: 16px 16px 0 0;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 24px);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(140, 93, 93, 0.3);
}

.cooperation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.cooperation-section {
  background: rgba(245, 238, 233, 0.5);
  border: 1px solid #e6d5c1;
  border-radius: 12px;
  padding: 20px;
}

.cooperation-section h4 {
  color: #623838;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 2px solid #cfa7a7;
  padding-bottom: 8px;
}

.consultation-type {
  background: linear-gradient(135deg, #fdf6f0 0%, #f5eee9 100%);
  border: 2px solid #e6d5c1;
  border-radius: 16px;
  padding: 35px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.consultation-type .consultation-cta {
  align-self: center;
}

.consultation-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cfa7a7, #8c5d5d);
}

.consultation-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #cfa7a7;
}

.consultation-type h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 20px;
  color: #623838;
  font-weight: 700;
  position: relative;
}

.consultation-type h3 {
  font-size: 18px;
  color: #623838;
  margin: 25px 0 15px;
  font-weight: 600;
}

.consultation-type ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.consultation-type li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #333;
}

.consultation-type li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #cfa7a7;
  font-weight: bold;
  font-size: 18px;
}

.consultation-type b,
.consultation-type strong {
  font-weight: 700;
  color: #623838;
}

.price-highlight {
  background: linear-gradient(135deg, #cfa7a7, #8c5d5d);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 25px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(207, 167, 167, 0.3);
}

.consultation-cta {
  display: inline-block;
  margin: 25px auto 0 auto;
  background: linear-gradient(135deg, #cfa7a7, #8c5d5d);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 167, 167, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

/* Center the CTA button */
.consultation-type {
  background: linear-gradient(135deg, #fdf6f0 0%, #f5eee9 100%);
  border: 2px solid #e6d5c1;
  border-radius: 16px;
  padding: 35px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.consultation-type .consultation-cta {
  align-self: center;
}

.consultation-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 167, 167, 0.4);
  background: linear-gradient(135deg, #8c5d5d, #623838);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: #623838;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  background-color: #fdf6f0;
  border: 2px solid #e6d5c1;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-item:hover {
  border-color: #cfa7a7;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
  background: linear-gradient(135deg, #f5eee9, #fdf6f0);
  padding: 20px 25px;
  font-weight: 700;
  color: #623838;
  font-size: 18px;
  border-bottom: 1px solid #e6d5c1;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f0e7dc, #f8f1ec);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #cfa7a7;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 30px;
  text-align: center;
}

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

.faq-answer {
  padding: 0;
  line-height: 1.7;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .consultation-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .consultation-type {
    padding: 25px 20px;
  }
  
  .consultation-type.full-width h2 {
    margin: -25px -20px 25px -20px;
    padding: 15px;
    font-size: clamp(16px, 3vw, 20px);
  }
  
  .cooperation-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cooperation-section {
    padding: 15px;
  }
  
  .intro-text ul,
  .consultation-type ul {
    padding-left: 0;
  }
  
  .price-highlight {
    font-size: 18px;
    padding: 12px 15px;
  }
  
  .consultation-cta {
    padding: 12px 25px;
    font-size: 13px;
  }
  
  .faq-question {
    padding: 18px;
    font-size: 17px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(207, 167, 167, 0.2);
    touch-action: manipulation;
  }
  
  .faq-toggle {
    font-size: 26px;
    min-width: 35px;
  }
  
  .faq-item:not(.active) .faq-answer {
    padding: 0;
  }
  
  .faq-item.active .faq-answer {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .consultation-section {
    padding: 0 10px;
  }
  
  .consultation-type {
    padding: 20px 15px;
  }
  
  .consultation-type.full-width h2 {
    margin: -20px -15px 20px -15px;
    padding: 12px;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.3;
  }
  
  .cooperation-details {
    gap: 15px;
  }
  
  .cooperation-section {
    padding: 12px;
  }
  
  .cooperation-section h4 {
    font-size: 15px;
  }
  
  .intro-text p {
    font-size: 16px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(207, 167, 167, 0.2);
    touch-action: manipulation;
  }
  
  .faq-answer {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .faq-item:not(.active) .faq-answer {
    padding: 0;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
  }
  
  .faq-toggle {
    font-size: 28px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
  }
}
