/* Ayushman Bharat Page Specific Styles */
:root {
  --color-ayushman: #2e7d32;
  --color-ayushman-dark: #1b5e20;
  --color-ayushman-light: #e8f5e9;
}

/* 1. Hero Banner */
.ay-hero {
  background: linear-gradient(135deg, var(--color-ayushman), var(--color-ayushman-dark));
  padding: 80px 0 70px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ay-hero::before {
  content: '\\F5E4'; /* bi-shield-check */
  font-family: bootstrap-icons;
  position: absolute;
  top: -50px;
  right: -50px;
  font-size: 300px;
  color: rgba(255,255,255,0.05);
  transform: rotate(-15deg);
}
.ay-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.ay-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.6;
  opacity: 0.95;
}
.ay-hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.ay-btn-call {
  background: #fff;
  color: var(--color-ayushman-dark);
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ay-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  color: var(--color-ayushman);
}
.ay-btn-wa {
  background: #25d366;
  color: #fff;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ay-btn-wa:hover {
  background: #1fbe5a;
  transform: translateY(-3px);
  color: #fff;
}

/* 2. Intro Section */
.ay-intro {
  padding: 80px 0;
  background: #fff;
}
.ay-intro-box {
  background: var(--color-ayushman-light);
  border-left: 5px solid var(--color-ayushman);
  padding: 30px;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.ay-intro-box h2 {
  color: var(--color-ayushman-dark);
  margin-bottom: 15px;
}

/* 3. Orthopedic Services Grid */
.ay-ortho {
  padding: 80px 0;
  background: #fdfdfd;
}
.ay-ortho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.ay-ortho-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.ay-ortho-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-ayushman);
}
.ay-ortho-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(46,125,50,0.1);
  border-color: var(--color-ayushman);
}
.ay-ortho-card h3 {
  font-size: 20px;
  color: var(--color-heading);
  margin-bottom: 10px;
}
.ay-ortho-card p {
  color: #666;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* 5. Steps */
.ay-steps {
  padding: 80px 0;
  background: var(--color-ayushman-dark);
  color: #fff;
}
.ay-steps h2 { color: #fff; text-align: center; margin-bottom: 50px; }
.ay-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}
.ay-step-card {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}
.ay-step-num {
  width: 50px;
  height: 50px;
  background: #fff;
  color: var(--color-ayushman-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}
.ay-step-card p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* 6 & 7 Split Section */
.ay-split {
  padding: 80px 0;
  background: #fff;
}
.ay-docs {
  background: var(--color-ayushman-light);
  padding: 40px;
  border-radius: 15px;
  height: 100%;
}
.ay-docs ul {
  list-style: none;
  padding: 0;
}
.ay-docs li {
  font-size: 18px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(46,125,50,0.3);
}
.ay-docs li i { color: var(--color-ayushman); font-size: 24px; }
.ay-docs .note {
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  border-left: 4px solid #ff9800;
  border-radius: 5px;
  font-size: 15px;
}

.ay-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ay-why-card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
}
.ay-why-card i {
  font-size: 40px;
  color: var(--color-ayushman);
  margin-bottom: 15px;
  display: block;
}
.ay-why-card h4 { font-size: 18px; margin-bottom: 10px; }
.ay-why-card p { font-size: 14px; color: #666; margin: 0; }

/* 8. Success Stories */
.ay-stories {
  padding: 80px 0;
  background: #f9f9f9;
}
.ay-story-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  border-top: 4px solid var(--color-ayushman);
}
.ay-story-quote {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}
.ay-story-author {
  font-weight: 700;
  color: var(--color-ayushman-dark);
}

/* Responsive */
@media(max-width: 768px) {
  .ay-hero h1 { font-size: 32px; }
  .ay-btn-call, .ay-btn-wa { width: 100%; justify-content: center; font-size: 18px; }
  .ay-why-grid { grid-template-columns: 1fr; }
}
