.dropdown-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background-color: #161616;
    color: white;
}

.training-details-header {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 75vh;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.training-details-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.training-details-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
    max-width: 1000px;
    text-align: center;
}

/* TYPOGRAPHY */
.display-3 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

.lead-description {
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* CONTENT WRAPPER */
.content-wrapper {
  background-color: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CONTENT TEXT */
.content-text,
.section-content {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

.content-text p,
.section-content p {
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
}

.content-text ul, 
.content-text ol,
.section-content ul, 
.section-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-text li,
.section-content li {
  margin-bottom: 0.5rem;
  text-align: left;
}

/* BADGES */
.category-badge {
  background-color: rgba(227, 178, 90, 0.8);
  color: #000;
  padding: 8px 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-radius: 25px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.deadline-badge {
  background-color: #1a1a1a;
  color: #E3B25A;
  padding: 6px 16px;
  font-size: 0.85rem;
  border-radius: 20px;
  border: 1px solid #E3B25A;
  font-weight: 500;
  display: inline-block;
}

/* META INFORMATION */
.training-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  color: #aaa;
}

.highlight-text {
  color: #E3B25A;
  font-weight: 600;
}

/* SECTIONS */
.content-section,
.training-details-section,
.requirements-section,
.testimonials-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.section-title {
  color: #E3B25A;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #E3B25A, transparent);
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
}

/* DETAIL CARDS */
.detail-card {
  background: linear-gradient(135deg, rgba(227, 178, 90, 0.1), rgba(227, 178, 90, 0.05));
  border-left: 4px solid #E3B25A;
  border-radius: 8px !important;
  height: 100%;
}

.detail-row {
  margin-bottom: 1.5rem;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: #E3B25A;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.detail-content {
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}

/* REQUIREMENTS */
.requirements-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.requirements-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.5;
}

.requirements-list li::before {
  content: "▶";
  color: #E3B25A;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
}

/* TESTIMONIALS */
.testimonial-card {
  background: linear-gradient(135deg, rgba(227, 178, 90, 0.1), rgba(227, 178, 90, 0.05));
  border-left: 4px solid #E3B25A;
  border-radius: 8px !important;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-text {
  font-style: italic;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.author-name {
  color: #E3B25A;
  font-weight: 600;
}

.author-role {
  color: #ccc;
  font-size: 0.9rem;
}

/* CTA SECTION */
.cta-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  color: #E3B25A;
  font-size: 1.3rem;
  font-weight: 500;
}

.btn-outline-light {
  border-color: #E3B25A;
  color: #E3B25A;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #E3B25A;
  border-color: #E3B25A;
  color: #000;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .training-details-header {
    min-height: 60vh;
    margin-top: 80px;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .lead-description {
    font-size: 1.1rem;
  }
  
  .category-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
  
  .section-title {
    font-size: 1.4rem;
    text-align: center !important;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  h4 {
    font-size: 1.2rem;
    text-align: center !important;
  }
  
  .content-text p,
  .section-content p {
    text-align: left;
  }
  
  .content-wrapper {
    padding: 1.5rem !important;
  }
  
  .detail-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .training-details-header {
    min-height: 50vh;
  }
  
  .display-3 {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .lead-description {
    font-size: 1rem;
  }
  
  .requirements-list li {
    padding-left: 1.5rem;
  }
  
  .content-wrapper {
    padding: 1rem !important;
  }
  
  .training-meta .row {
    text-align: center;
  }
  
  .deadline-badge {
    margin-top: 0.5rem;
  }
  
  .cta-title {
    font-size: 1.1rem;
  }
}
