/* ══════════════════════════════════════════════════════════════
   ABOUT-AYURVEDA.CSS — about-ayurveda.html-specific styles
   ══════════════════════════════════════════════════════════════ */
/* ── HERO SPLIT LAYOUT ── */
.phi.phi-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Override the default phi which is just a wrapper div */
.ph .phi.phi-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}

.phi-left {
}

.phi-right {
}

@media (max-width: 900px) {
  .phi-split {
    grid-template-columns: 1fr;
  }
  .phi-right {
    display: none;
  }
}

/* PAGE HERO STATS */
.ph-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
}

.ph-stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.ph-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: #e67817;
  line-height: 1;
  display: block;
}

.ph-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  display: block;
  line-height: 1.3;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #1a3d2b, #2d6a4f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  position: relative;
}
.intro-img::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80%;
  height: 75%;
  background: #e67817;
  border-radius: 18px;
  z-index: -1;
}
.intro-content p {
  font-size: 15px;
  margin-bottom: 16px;
}
.intro-content p:last-child {
  margin-bottom: 0;
}
.ayur-quote {
  background: #f9f5f0;
  border-left: 4px solid #e67817;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #1a3d2b;
  line-height: 1.65;
  font-style: italic;
}
.ayur-quote span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: #9b9b9b;
  font-style: normal;
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* CORE PRINCIPLES */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle-card {
  background: #fff;
  border: 1px solid #e4e0d8;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.18s;
}
.principle-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pc-icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.pc-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.pc-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.75;
}

/* TRIDOSHA */
.dosha-section {
  background: #1a3d2b;
  padding: 72px 0;
}
.dosha-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.dosha-intro h2 {
  color: #fff;
  margin-bottom: 14px;
}
.dosha-intro p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}
.dosha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dosha-card {
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.dc-vata {
  background: linear-gradient(135deg, #2d4a8a 0%, #4338ca 100%);
}
.dc-pitta {
  background: linear-gradient(135deg, #7a3510 0%, #c45f0a 100%);
}
.dc-kapha {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
}
.dc-symbol {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
}
.dc-name {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.dc-sanskrit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-style: italic;
}
.dc-meaning {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 14px;
}
.dc-elements {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dc-el {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
}
.dc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}
.dc-governs {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
  margin-top: 4px;
}
.dc-governs-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.dc-governs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dc-governs-list li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 7px;
}
.dc-governs-list li::before {
  content: "→";
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  flex-shrink: 0;
}
.dc-bg-letter {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: "Playfair Display", serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

/* PANCHAKARMA OVERVIEW */
.pk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4e0d8;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.pk-img {
  background: linear-gradient(160deg, #1a3d2b, #2d6a4f);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.pk-content {
  background: #fff;
  padding: 40px;
}
.pk-content h2 {
  margin-bottom: 14px;
}
.pk-content p {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.pk-five {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.pk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #f9f5f0;
  border-radius: 10px;
}
.pk-num {
  width: 32px;
  height: 32px;
  background: #e67817;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.pk-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
  font-family: "DM Sans", sans-serif;
}
.pk-desc {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.55;
}

/* HOW WE PRACTICE */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.how-card {
  background: #fff;
  border: 1px solid #e4e0d8;
  border-left: 4px solid #e67817;
  border-radius: 0 12px 12px 0;
  padding: 24px;
}
.how-card:nth-child(even) {
  border-left-color: #2d6a4f;
}
.how-step {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e67817;
  margin-bottom: 8px;
}
.how-card:nth-child(even) .how-step {
  color: #2d6a4f;
}
.how-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
}
.how-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.7;
}

/* CLASSICAL TEXTS */
.texts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.text-card {
  background: #f9f5f0;
  border: 1px solid #e4e0d8;
  border-radius: 14px;
  padding: 24px;
}
.text-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.text-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.text-subtitle {
  font-size: 12px;
  color: #e67817;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.text-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.7;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e4e0d8;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-align: left;
  gap: 12px;
}
.faq-icon {
  font-size: 22px;
  color: #e67817;
  flex-shrink: 0;
  transition: transform 0.2s;
  font-style: normal;
}
.faq-a {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.78;
  padding-bottom: 18px;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* EXPLORE MORE */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.explore-card {
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition:
    box-shadow 0.2s,
    transform 0.18s;
  border: 1px solid #e4e0d8;
}
.explore-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.ec-img {
  height: 160px;
  background: linear-gradient(160deg, #1a3d2b, #2d6a4f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.ec-body {
  background: #fff;
  padding: 20px;
}
.ec-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e67817;
  margin-bottom: 6px;
}
.ec-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.ec-desc {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 10px;
}
.ec-link {
  font-size: 12px;
  font-weight: 600;
  color: #2d6a4f;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ec-link::after {
  content: "→";
}

/* ── HERO SPLIT LAYOUT ── */
.phi-split {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}

/* ── CONTAINER NARROW ── */
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #e67817, #c45f0a);
  padding: 56px 0;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-inner h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 28px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .texts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .phi-split,
  .phi.phi-split {
    grid-template-columns: 1fr;
  }
  .phi-right {
    display: none;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .pk-grid {
    grid-template-columns: 1fr;
  }
  .dosha-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .ph-stats {
    display: none;
  }
}
@media (max-width: 600px) {
  .principles-grid,
  .texts-grid,
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .container-narrow {
    padding: 0 16px;
  }
}
