/* ===== EMS TRAINING PAGE STYLES ===== */

.ems-page {
  padding-top: 120px;
  background-color: #FFFFFF;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #1F2937;
}

/* HERO SECTION */
.ems-hero {
  position: relative;
  text-align: center;
  padding: 60px 5% 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.ems-badge {
  display: inline-block;
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  color: #fff;
  font-weight: 800;
  padding: 8px 24px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 25px;
  border-radius: 50px;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.ems-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.ems-title span {
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ems-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #475569;
  font-weight: 400;
  margin-bottom: 20px;
}

/* MAIN CONTENT SPLIT */
.ems-content-section {
  padding: 40px 5% 40px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
  gap: 80px;
  align-items: center;
}

.ems-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ems-text-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.ems-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
  position: relative;
}

.ems-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.ems-img-wrapper:hover {
  transform: translateY(-10px);
}

.ems-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-tall {
  grid-row: span 2;
  height: 100%;
}

.img-short {
  height: 250px;
}

/* FEATURES SECTION */
.ems-features-section {
  background-color: #f8fafc;
  padding: 100px 5%;
}

.ems-features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ems-features-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.ems-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ems-feature-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #0ea5e9;
}

.ems-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.ems-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.ems-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.ems-feature-card p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ems-content-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ems-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ems-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .ems-page {
    padding-top: 100px;
  }

  .ems-title {
    font-size: 2.4rem;
  }

  .ems-subtitle {
    font-size: 1.1rem;
  }

  .img-short {
    height: 180px;
  }
}

