/* ============================================================
   Sahi Derma — Premium About Us Page
   ============================================================ */

:root {
    --brand-primary: #ff2d8d;
    --brand-primary-soft: #fff0f6;
    --brand-secondary: #ff5ca8;
    --brand-secondary-soft: #fdf2f8;
    --navy-dark: #0f172a;
    --accent-pink: #ff2d8d;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-light: #e2e8f0;
}

.about-page {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Common ---- */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
}

/* ---- Hero Section ---- */
.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

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

.about-hero-content {
    text-align: left;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-hero-content h1 span {
    color: var(--brand-primary);
}

.about-hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.about-hero-image-wrapper {
    position: relative;
    padding-left: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(255, 45, 141, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 45, 141, 0.3);
}

.btn-outline-primary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 45, 141, 0.3);
}

/* ---- Clinic Story ---- */
.clinic-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.story-image img {
    width: 100%;
    display: block;
}

.story-content h2 {
    font-size: 2.5rem;
}

/* ---- Doctor Profile ---- */
.doctor-section {
    background: var(--brand-secondary-soft);
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.doctor-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 10px;
    background: #fff;
}

.doctor-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    z-index: 0;
}

.doctor-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.doctor-image:hover img {
    transform: scale(1.03);
}

.doctor-info h3 {
    font-size: 2.2rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.doctor-meta {
    font-size: 1.1rem;
    color: var(--brand-secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.spec-tag {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---- Service Highlights ---- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--navy-dark);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3), 0 0 20px rgba(255, 45, 141, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 45, 141, 0.15);
    color: var(--brand-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ---- About Why Choose Us ---- */
.about-why-section {
    padding: 80px 0;
    background: #fff;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.about-why-card {
    background: var(--brand-secondary-soft);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.about-why-card:hover {
    transform: translateY(-8px);
    background: #fff;
    border-color: var(--brand-primary);
    box-shadow: 0 15px 35px rgba(255, 45, 141, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.about-why-card:hover .why-icon {
    background: var(--brand-primary);
    color: #fff;
    transform: scale(1.1);
}

.about-why-card h5 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Trust Stats ---- */
.stats-section {
    background: var(--navy-dark);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.stat-box h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ---- Premium Before & After ---- */
.premium-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.premium-result-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.premium-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pr-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.pr-img-box {
    position: relative;
    overflow: hidden;
}

.pr-img-box img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.pr-badge {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.before-badge {
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
}

.after-badge {
    right: 15px;
    background: var(--brand-primary);
    color: #fff;
}

.pr-content {
    padding: 30px;
}

.pr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.pr-tag {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
}

.treatment-tag {
    background: #f1f5f9;
    color: #0f172a;
}

.time-tag {
    background: var(--brand-secondary-soft);
    color: var(--brand-secondary);
}

.pr-title {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 20px;
}

.pr-trust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.pr-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.pr-real-tag {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ---- Testimonials ---- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.real-test-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.real-test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.test-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
}

.test-author-name {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.test-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.test-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
}

.test-body {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.test-body strong {
    color: #1e293b;
    font-weight: 700;
}

.quote-sm {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--brand-primary);
    opacity: 0.15;
}

/* ---- Final CTA ---- */
.final-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-white {
    background: #fff;
    color: var(--navy-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .clinic-story, .doctor-grid, .why-section, .results-grid, .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-hero-content {
        text-align: center;
    }
    .about-hero-content p {
        margin: 0 auto 40px;
    }
    .hero-cta, .hero-trust-badges {
        justify-content: center;
    }
    .about-hero-image-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }
    .experience-float {
        left: 20px !important;
        bottom: 20px !important;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }
}