/*--------------------------------------------------------------
    HERO SECTION - MATCHING YOUR EXISTING DESIGN
--------------------------------------------------------------*/

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 120px 0 80px;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 0;
  text-align: left;
}

.hero-title {
  font-size: var(--fs-xxl);
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.1;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  font-weight: 300;
  margin-bottom: 2rem;
  color: white;
  opacity: 0.95;
  font-family: var(--font-body);
}

.hero-description {
  font-size: var(--fs-md);
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: white;
  opacity: 0.9;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Course Metrics - White Cards with Borders */
.course-metrics {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 500px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  padding: 0.75rem 1.25rem;
  text-align: left;
  min-width: auto;
  border-right: 1px solid rgba(138, 24, 26, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-item:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.metric-item:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-right: none;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
  opacity: 0.8;
  font-family: var(--font-heading);
}

.metric-value {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

/* Hero Actions - Professional Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
  box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.btn-primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: white;
  color: var(--color-heading);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: 60vh;
    padding: 60px 0 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: var(--fs-xl);
  }

  .course-metrics {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .metric-item {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 40px 0 30px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .course-metrics {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .metric-item {
    max-width: 100%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(138, 24, 26, 0.2);
    border-radius: 0;
    text-align: center;
  }

  .metric-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }

  .metric-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 0;
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle,
  .hero-description {
    font-size: 1rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .metric-value {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    min-width: auto;
  }
}

/*--------------------------------------------------------------
    COURSE OVERVIEW SECTION - MODERN UX-FOCUSED DESIGN
--------------------------------------------------------------*/

/* Course Overview Section - Dynamic Layout */
.course-overview {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.course-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ed1c24' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

.container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Content Grid - Two Column Approach */
.course-overview__content {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 992px) {
  .course-overview__content {
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
  }
}

/* Main Course Description - Hero Content Style */
.course-overview__description {
  position: relative;
}

.course-overview__description h2 {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-heading) 0%,
    var(--color-primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.course-overview__description h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

/* Enhanced RTE Styling */
.course-overview__description .rte {
  position: relative;
}

.course-overview__description .rte p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.course-overview__description .rte p:first-of-type {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-heading);
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(237, 28, 36, 0.05);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}

.course-overview__description .rte ul {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.course-overview__description .rte li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

.course-overview__description .rte li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Target Audience - Interactive Card */
.course-overview__audience {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.course-overview__audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary),
    #fbbf24
  );
  border-radius: 20px 20px 0 0;
}

.course-overview__audience::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(237, 28, 36, 0.05) 0%,
    transparent 70%
  );
  transition: all 0.4s ease;
  transform: scale(0);
}

.course-overview__audience:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(237, 28, 36, 0.15);
  border-color: rgba(237, 28, 36, 0.2);
}

.course-overview__audience:hover::after {
  transform: scale(1);
}

.course-overview__audience h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-heading);
  text-align: center;
}

.course-overview__audience h3::before {
  content: '🎯';
  font-size: 2rem;
  padding: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(237, 28, 36, 0.3);
}

.course-overview__audience p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Interactive Elements */
.course-overview__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(237, 28, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(237, 28, 36, 0.4);
  color: white;
  text-decoration: none;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button::after {
  content: '→';
  transition: transform 0.3s ease;
}

.cta-button:hover::after {
  transform: translateX(4px);
}

/* Stats/Highlights Section */
.course-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(237, 28, 36, 0.1);
}

.highlight-item {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
}

.highlight-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.highlight-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .course-overview__description h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .course-overview {
    padding: 4rem 0;
  }

  .course-overview__content {
    gap: 3rem;
  }

  .course-overview__description h2 {
    font-size: 2.25rem;
    text-align: center;
  }

  .course-overview__description h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .course-overview__audience h3 {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .course-overview {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .course-overview__description h2 {
    font-size: 2rem;
  }

  .course-overview__description .rte p:first-of-type {
    padding: 1rem;
    font-size: 1.125rem;
  }

  .course-overview__audience {
    padding: 2rem 1.5rem;
  }

  .course-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .course-overview__description h2 {
    font-size: 1.75rem;
  }

  .course-overview__audience h3 {
    font-size: 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .course-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-value {
    font-size: 1.5rem;
  }
}

/* Animation System */
.course-overview__description {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.course-overview__audience {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.course-highlights {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .course-overview__description,
  .course-overview__audience,
  .course-highlights {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .course-overview__audience:hover,
  .cta-button:hover,
  .highlight-item:hover {
    transform: none;
  }
}
/*--------------------------------------------------------------
    COURSE STRUCTURE SECTION - COMPACT HORIZONTAL DESIGN
--------------------------------------------------------------*/

/* Course Structure Section */
.course-structure {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.course-structure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ed1c24' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

/* Container - Using 85% width */
.course-structure .container {
  position: relative;
  z-index: 2;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Headers - More Compact */
.course-structure .section__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-heading);
  font-family: var(--font-heading);
  position: relative;
}

.course-structure .section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

.course-structure .section__subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
}

/* Compact Tab Layout */
.course-phases {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  max-width: 100%;
  /* background: white; */
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Left Side - Compact Tab Navigation */
.tab-nav {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  padding: 0;
  border-right: 1px solid #e2e8f0;
  min-width: 280px;
}

.tab-button {
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 60px;
  white-space: normal;
  line-height: 1.4;
}

.tab-button:last-child {
  border-bottom: none;
}

.tab-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s ease;
}

.tab-button:hover {
  background: rgba(138, 24, 26, 0.03);
  color: var(--color-primary);
}

.tab-button.active {
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.tab-button.active::before {
  background: var(--color-primary);
}

.tab-number {
  width: 28px;
  height: 28px;
  background: #e2e8f0;
  color: #64748b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tab-button.active .tab-number {
  background: var(--color-primary);
  color: white;
}

.tab-button-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Right Side - Compact Content */
.tab-content {
  display: none;
  padding: 2rem;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Course Phase Content - Compact with Title and Duration on Same Line */
.course-phase-tab .phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.course-phase-tab h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  flex: 1;
}

.course-phase-tab .phase-duration {
  background: rgba(138, 24, 26, 0.08);
  color: var(--color-primary);
  padding: 0.375rem 0.875rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.course-phase-tab .phase-duration::before {
  content: '⏱️';
  font-size: 0.875rem;
}

.course-phase-tab .phase-description {
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

.course-phase-tab .phase-description p {
  margin-bottom: 1rem;
}

.course-phase-tab .phase-description p:last-child {
  margin-bottom: 0;
}

.course-phase-tab .phase-description ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.course-phase-tab .phase-description li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
}

.course-phase-tab .phase-description li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Compact Progress Indicator */
.phase-progress {
  display: flex;
  gap: 0.375rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.2s ease;
}

.progress-dot.active {
  background: var(--color-primary);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.course-structure .section__title {
  opacity: 0;
  transform: translateY(20px);
  animation: titleReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.course-structure .section__subtitle {
  opacity: 0;
  transform: translateY(15px);
  animation: subtitleReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.course-phases {
  opacity: 0;
  transform: translateY(15px);
  animation: tabsReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabsReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .course-structure .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .course-structure {
    padding: 3rem 0;
  }

  .course-structure .section__title {
    font-size: 1.875rem;
  }

  .course-phases {
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
  }

  .tab-button {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .tab-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .course-structure {
    padding: 2.5rem 0;
  }

  .course-structure .section__subtitle {
    margin-bottom: 2rem;
  }

  .course-phases {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tab-nav {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    min-width: auto;
  }

  .tab-button {
    flex-shrink: 0;
    min-width: 160px;
    padding: 0.75rem 1rem;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.375rem;
    min-height: 80px;
    white-space: normal;
  }

  .tab-button:last-child {
    border-right: none;
  }

  .tab-button::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
  }

  .tab-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .tab-button-text {
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: center;
  }

  .tab-content {
    padding: 1.5rem;
  }

  .course-phase-tab h3 {
    font-size: 1.375rem;
  }

  .course-phase-tab .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .course-structure .container {
    padding: 0 1rem;
  }

  .course-structure .section__title {
    font-size: 1.625rem;
  }

  .course-structure .section__subtitle {
    font-size: 1rem;
  }

  .tab-button {
    min-width: 120px;
    padding: 0.625rem 0.75rem;
    font-size: 0.85rem;
  }

  .tab-content {
    padding: 1.25rem;
  }

  .course-phase-tab h3 {
    font-size: 1.25rem;
  }

  .course-phase-tab .phase-description {
    font-size: 0.95rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .course-structure .section__title,
  .course-structure .section__subtitle,
  .course-phases,
  .tab-content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Focus States */
.tab-button:focus {
  outline: 2px solid rgba(138, 24, 26, 0.4);
  outline-offset: -2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .tab-nav {
    border-right: 2px solid var(--color-heading);
  }

  .tab-button.active {
    border: 2px solid var(--color-primary);
  }
}
/*--------------------------------------------------------------
    REQUIREMENTS & QUALIFICATIONS SECTIONS - MODERN DESIGN
--------------------------------------------------------------*/

/* General Section Styles */
.section {
  padding: 4rem 0;
}

.section .container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-heading);
  font-family: var(--font-heading);
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

/*--------------------------------------------------------------
    REQUIREMENTS SECTION
--------------------------------------------------------------*/

.course-requirements {
  background: white;
  position: relative;
}

.course-requirements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ed1c24' fill-opacity='0.01'%3E%3Cpath d='M20 20m-2 0a2,2 0 1,1 4,0a2,2 0 1,1 -4,0'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

.course-requirements .container {
  position: relative;
  z-index: 2;
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .requirements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Requirement Items */
.requirement-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.requirement-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 16px 16px 0 0;
}

.requirement-item::after {
  content: '✓';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(138, 24, 26, 0.3);
  transition: all 0.3s ease;
}

.requirement-item:hover {
  background: white;
  border-color: rgba(138, 24, 26, 0.2);
  box-shadow: 0 8px 30px rgba(138, 24, 26, 0.12);
  transform: translateY(-4px);
}

.requirement-item:hover::after {
  transform: scale(1.1);
}

.requirement-item__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1rem;
  padding-right: 3rem;
  flex-shrink: 0;
}

.requirement-item__text {
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  flex: 1;
}

/* Rich Text in Requirements */
.requirement-item .rte p {
  margin-bottom: 0.75rem;
  color: #475569;
  line-height: 1.6;
}

.requirement-item .rte p:last-child {
  margin-bottom: 0;
}

.requirement-item .rte ul {
  margin: 0.75rem 0 0;
  padding-left: 0;
  list-style: none;
}

.requirement-item .rte li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.95rem;
}

.requirement-item .rte li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Additional Requirements */
.additional-requirements {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.additional-requirements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 16px 16px 0 0;
}

.additional-requirements .rte h3 {
  color: var(--color-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.additional-requirements .rte p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
    QUALIFICATIONS SECTION
--------------------------------------------------------------*/

.course-qualifications {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.course-qualifications::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 15L45 30L30 45L15 30z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

.course-qualifications .container {
  position: relative;
  z-index: 2;
}

.section__title--white {
  color: white;
}

.section__title--white::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6)
  );
}

/* Qualifications Content Grid */
.qualifications-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .qualifications-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .qualifications-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Qualification Items */
.qualification-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.qualification-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #10b981, #3b82f6);
  border-radius: 16px 16px 0 0;
}

.qualification-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.5s ease;
  transform: scale(0) rotate(45deg);
}

.qualification-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.qualification-item:hover::after {
  transform: scale(1) rotate(45deg);
}

.qualification-item--full {
  grid-column: 1 / -1;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.qualification-item__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.qualification-item__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  flex: 1;
}

/* Rich Text in Qualifications */
.rte--white p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rte--white p:last-child {
  margin-bottom: 0;
}

.rte--white h1,
.rte--white h2,
.rte--white h3,
.rte--white h4,
.rte--white h5,
.rte--white h6 {
  color: white;
  font-family: var(--font-heading);
}

.rte--white h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.rte--white ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
}

.rte--white li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.rte--white li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24;
  font-weight: 700;
}

.rte--white strong {
  color: white;
  font-weight: 600;
}

/* Achievement Icons */
.qualification-item__title::before {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
}

.qualification-item:nth-child(1) .qualification-item__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L13.5 8.5L20 9L14 14L16 22L12 18L8 22L10 14L4 9L10.5 8.5L12 2Z'/%3E%3C/svg%3E");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.qualification-item:nth-child(2) .qualification-item__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12S6.48 22 12 22 22 17.52 22 12 17.48 2 12 2ZM13 17H11V15H13V17ZM13 13H11V7H13V13Z'/%3E%3C/svg%3E");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.qualification-item:nth-child(3) .qualification-item__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 12L11 14L15 10M21 12C21 16.97 17.97 21 12 21C7.03 21 2 16.97 2 12C2 7.03 7.03 2 12 2C17.97 2 21 7.03 21 12Z'/%3E%3C/svg%3E");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section {
    padding: 3rem 0;
  }

  .section__title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .requirement-item,
  .qualification-item {
    padding: 1.5rem;
  }

  .additional-requirements {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }

  .section__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .requirements-grid,
  .qualifications-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .requirement-item,
  .qualification-item {
    padding: 1.25rem;
  }

  .requirement-item__title,
  .qualification-item__title {
    padding-right: 2.5rem;
  }

  .requirement-item::after {
    width: 28px;
    height: 28px;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .section .container {
    padding: 0 1rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .requirement-item,
  .qualification-item,
  .additional-requirements {
    padding: 1rem;
  }
}

/* Animation System */
.requirement-item {
  opacity: 0;
  transform: translateY(30px);
  animation: itemReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.requirement-item:nth-child(1) {
  animation-delay: 0.1s;
}
.requirement-item:nth-child(2) {
  animation-delay: 0.2s;
}
.requirement-item:nth-child(3) {
  animation-delay: 0.3s;
}
.requirement-item:nth-child(4) {
  animation-delay: 0.4s;
}

.qualification-item {
  opacity: 0;
  transform: translateY(30px);
  animation: itemReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.qualification-item:nth-child(1) {
  animation-delay: 0.1s;
}
.qualification-item:nth-child(2) {
  animation-delay: 0.2s;
}
.qualification-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes itemReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .requirement-item,
  .qualification-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .requirement-item:hover,
  .qualification-item:hover {
    transform: none;
  }
}

/* Focus States */
.requirement-item:focus-within,
.qualification-item:focus-within {
  outline: 2px solid rgba(138, 24, 26, 0.4);
  outline-offset: 2px;
}

.course-qualifications .qualification-item:focus-within {
  outline-color: rgba(255, 255, 255, 0.6);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .requirement-item,
  .qualification-item {
    border-width: 2px;
  }

  .requirement-item::after {
    border: 2px solid white;
  }
}
/*--------------------------------------------------------------
    COURSE ENROLLMENT SECTION - FINAL CTA DESIGN
--------------------------------------------------------------*/

/* Course Enrollment Section */
.course-enrollment {
  background: linear-gradient(135deg, #f8fafc 0%, white 50%, #f1f5f9 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.course-enrollment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ed1c24' fill-opacity='0.02'%3E%3Cpath d='M40 10L70 40L40 70L10 40z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

.course-enrollment .container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Enrollment Content Container */
.enrollment-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.enrollment-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary),
    #fbbf24,
    #10b981
  );
  border-radius: 24px 24px 0 0;
}

.enrollment-content::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(237, 28, 36, 0.02) 0%,
    transparent 70%
  );
  transition: all 0.8s ease;
  transform: scale(0) rotate(45deg);
  pointer-events: none;
}

.enrollment-content:hover::after {
  transform: scale(1) rotate(45deg);
}

/* Section Title & Subtitle */
.enrollment-content .section__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-heading) 0%,
    var(--color-primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  position: relative;
  z-index: 2;
}

.enrollment-content .section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

.enrollment-content .section__subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Enrollment Actions */
.enrollment-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .enrollment-actions {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-secondary-dark)
  );
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.4);
  color: white;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(138, 24, 26, 0.1);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 24, 26, 0.3);
  text-decoration: none;
}

.btn--lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  border-radius: 14px;
}

/* Contact Information */
.contact-info {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 16px 16px 0 0;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.contact-info h3::after {
  content: '📞';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.contact-info .rte {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info .rte p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-info .rte p:last-child {
  margin-bottom: 0;
}

.contact-info .rte strong {
  color: var(--color-heading);
  font-weight: 600;
}

.contact-info .rte a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info .rte a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(138, 24, 26, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(138, 24, 26, 0.1);
}

.trust-item {
  text-align: center;
  flex: 1;
}

.trust-item__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.trust-item__text {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .course-enrollment {
    padding: 4rem 0;
  }

  .enrollment-content {
    padding: 3rem 2rem;
  }

  .enrollment-content .section__title {
    font-size: 2.25rem;
  }

  .enrollment-content .section__subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .course-enrollment {
    padding: 3rem 0;
  }

  .enrollment-content {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .enrollment-content .section__title {
    font-size: 2rem;
  }

  .enrollment-content .section__subtitle {
    margin-bottom: 2.5rem;
  }

  .enrollment-actions {
    margin-bottom: 2.5rem;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .contact-info h3::after {
    position: static;
    transform: none;
    margin-right: 0.5rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .course-enrollment .container {
    padding: 0 1rem;
  }

  .enrollment-content {
    padding: 2rem 1.25rem;
  }

  .enrollment-content .section__title {
    font-size: 1.75rem;
  }

  .enrollment-content .section__subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }

  .contact-info {
    padding: 1.5rem;
  }
}

/* Animation System */
.enrollment-content {
  opacity: 0;
  transform: translateY(40px);
  animation: enrollmentReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.enrollment-actions .btn:nth-child(1) {
  opacity: 0;
  transform: translateX(-20px);
  animation: buttonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

.enrollment-actions .btn:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
  animation: buttonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

.contact-info {
  opacity: 0;
  transform: translateY(20px);
  animation: contactReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1s;
}

@keyframes enrollmentReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contactReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .enrollment-content,
  .enrollment-actions .btn,
  .contact-info {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .enrollment-content:hover::after {
    transform: none;
  }
}

/* Focus States */
.btn:focus {
  outline: 3px solid rgba(138, 24, 26, 0.3);
  outline-offset: 3px;
}

.contact-info:focus-within {
  outline: 2px solid rgba(138, 24, 26, 0.3);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .enrollment-content {
    border: 3px solid var(--color-heading);
  }

  .btn {
    border-width: 3px;
  }

  .contact-info {
    border: 2px solid var(--color-heading);
  }
}

/* Print Styles */
@media print {
  .course-enrollment {
    background: white !important;
  }

  .enrollment-content {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .btn {
    display: none;
  }
}
