/* kapadia-about.css - Shared stylesheet for About pages */

.about-page {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    line-height: 1.65;
}

.about-hero {
    background: var(--blue-ink);
    color: #fff;
    padding: 80px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(215, 38, 61, 0.1), rgba(0, 45, 98, 0.4));
    z-index: 1;
}

.about-hero .wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-section {
    padding: 80px 32px;
}

.about-section.bg-light {
    background: var(--surface);
}

.about-section .wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--blue-ink);
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--ink);
}

.about-content p {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--ink-2);
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.about-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--ink);
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-cta {
    background: var(--blue);
    padding: 64px 32px;
    text-align: center;
    color: #fff;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1200px;
}

.about-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    margin-bottom: 32px;
    opacity: 0.9;
    font-size: 18px;
}

.feedback-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-card-body {
    padding: 24px;
}

.media-card-body h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
    .about-section {
        padding: 60px 20px;
    }
}
/* --- Added for Patient Feedback Testimonials --- */
.pf-main {
  display: flex; 
  flex-direction: column; 
  gap: 60px; 
  padding: 80px 0; 
  background-color: var(--surface, #f8f9fa);
}
.pf-main .reviews {
  background-color: transparent; 
  padding: 0;
}
.pf-sec-head {
  margin: 0 auto; 
  text-align: center;
}
.pf-sec-head .eyebrow {
  justify-content: center;
}
