/* Page-Specific Styles */

/* Page Hero */
.page-hero {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/pattern-overlay.png') repeat;
  opacity: 0.05;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero .lead {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 15px;
}

.page-hero-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Benefit Cards */
.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 24px;
  color: var(--white);
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
}

.benefit-list li i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 18px;
  margin-top: 3px;
}

/* Skill Cards */
.skill-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.skill-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.skill-card h4 {
  font-size: 16px;
  margin: 0;
}

/* Curriculum List */
.curriculum-list {
  margin-top: 30px;
}

.curriculum-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.curriculum-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.curriculum-item i {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.curriculum-item h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.curriculum-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* Industry Cards */
.industry-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.industry-card h5 {
  font-size: 16px;
  margin: 0;
}

/* Expert Cards */
.expert-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.expert-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
}

.expert-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Training Schedule Table */
.schedule-table {
  width: 100%;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-table thead {
  background: var(--gradient-primary);
  color: var(--white);
}

.schedule-table th,
.schedule-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.schedule-table tbody tr:hover {
  background: var(--light-bg);
}

.schedule-table .btn {
  padding: 8px 20px;
  font-size: 14px;
}

/* Pricing Card */
.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(97,210,180,0.05) 0%, rgba(52,152,219,0.05) 100%);
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 991px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .page-hero-image {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .page-hero h1 {
    font-size: 32px;
  }
  
  .curriculum-item {
    flex-direction: column;
    gap: 10px;
  }
}
