/* about.html — page-specific styles only */

/* ── BIO SECTION ── */
.bio-grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: start; }
.bio-img-wrap { position: relative; }
.bio-img-wrap img { width: 100%; border-radius: 20px; box-shadow: 0 24px 60px rgba(124,49,119,.12); display: block; }
.bio-badge { position: absolute; bottom: -22px; right: -22px; background: var(--purple); border-radius: 14px; padding: 18px 22px; box-shadow: 0 10px 28px rgba(124,49,119,.4); text-align: center; }
.bio-badge strong { display: block; font-size: 36px; color: #fff; font-weight: 800; line-height: 1; }
.bio-badge span { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }
.bio-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.bio-text p strong { color: var(--text); font-weight: 700; }
.bio-text p em { color: var(--purple); font-style: normal; font-weight: 700; }

/* ── QUALIFICATIONS TIMELINE ── */
.qual-section { background: var(--bg); }
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.qual-card { background: var(--white); border-radius: 14px; padding: 22px 24px; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 16px; transition: border-color .2s, box-shadow .2s; }
.qual-card:hover { border-color: var(--purple); box-shadow: 0 6px 24px rgba(124,49,119,.08); }
.qual-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.qi-purple { background: var(--purple-l); }
.qi-green  { background: var(--green-l); }
.qi-gold   { background: #FFF8E1; }
.qi-blue   { background: #EEF4FF; }
.qual-card-body strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.qual-card-body span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.qual-card-body .gold-tag { display: inline-block; background: #FFF8E1; border: 1px solid #FFD54F; color: #B7860B; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 50px; margin-top: 6px; }

/* ── EXPERTISE ── */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.expertise-item { background: var(--white); border: 2px solid var(--border); border-radius: 14px; padding: 20px; transition: all .2s; }
.expertise-item:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(74,122,48,.1); }
.exp-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.expertise-item strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; margin-bottom: 5px; }
.expertise-item p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── WHY CHOOSE ── */
.why-section { background: linear-gradient(135deg, var(--navy) 0%, #3B1A5E 100%); }
.why-section .section { max-width: 1100px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.why-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 26px 22px; text-align: center; transition: background .25s, transform .2s; }
.why-card:hover { background: rgba(124,49,119,.3); transform: translateY(-4px); }
.why-card .w-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.why-card strong { display: block; font-size: 15px; color: #fff; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.why-section .sec-title { color: #fff; }
.why-section .section-label { color: #f7b3f3; }
.why-section .section-label::before { background: #f7b3f3; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--purple-m); transition: transform .2s, box-shadow .2s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,49,119,.1); }
.stars { font-size: 15px; margin-bottom: 12px; }
.review-card blockquote { font-size: 14px; color: var(--muted); line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.r-author { display: flex; align-items: center; gap: 12px; }
.rav { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0; }
.rav.p { background: var(--purple); } .rav.g { background: var(--green); } .rav.r { background: var(--red); } .rav.b { background: var(--brown); }
.r-author strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.r-author span { font-size: 12px; color: var(--muted); }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 1024px) {
  .bio-grid { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
