/* ==========================================================================
   ABOUT PAGE STYLES - Premium & Modern
   ========================================================================== */

/* --- 1. Modern Page Banner --- */
.about-page-banner {
    position: relative;
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}
.about-page-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.about-page-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.glass-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.glass-breadcrumb a { color: var(--white); font-weight: 500; }
.glass-breadcrumb .current { color: rgba(255, 255, 255, 0.7); }
.glass-breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

.page-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Premium Golden/Amber Color */
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* --- 2. Doctor's Profile (Split Layout) --- */
.doctor-profile-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}
.dp-container {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}
.dp-image-wrapper {
    position: relative;
    border-radius: 30px;
}
.dp-glow {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.dp-image {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.dp-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
}
.exp-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.exp-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}
.massive-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 10px;
}
.dr-credentials {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}
.dr-bio {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}
.qualifications-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}
.q-tag {
    padding: 10px 20px;
    background: #f8fafc;
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: 30px;
    font-weight: 500;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.q-tag i { color: var(--primary-color); }
.q-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.q-tag:hover i { color: var(--white); }

/* --- 3. Mission & Vision (Bento Box Smart Design) --- */
.mission-vision-section {
    padding: 120px 0;
    background: #f8fafc;
}
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.bento-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(13, 148, 136, 0.05);
}
.bento-large {
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;
}
.bento-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(13, 148, 136, 0.4) 100%);
    z-index: 1;
}
.bento-large .bento-content {
    position: relative;
    z-index: 2;
    padding: 50px;
}
.bento-large h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.bento-large p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
.bento-icon {
    width: 60px; height: 60px;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
}
.b-icon-primary {
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary-color);
}
.bento-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bento-small {
    padding: 40px;
    flex: 1;
    transition: transform 0.4s ease;
}
.bento-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 148, 136, 0.08);
}
.bento-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.bento-header .bento-icon {
    margin-bottom: 0;
}
.bento-header h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 0;
}
.bento-small p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}
.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mv-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.mv-list i { margin-top: 4px; }

/* --- 4. Impact Counters --- */
.impact-section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.impact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85);
}
.impact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.counter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.counter-box:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3) !important;
}
.counter-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.counter-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .dp-container { grid-template-columns: 1fr; }
    .dp-image-wrapper { max-width: 500px; margin: 0 auto; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { min-height: 350px; }
    .impact-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .page-title-elegant { font-size: 2.8rem; }
    .massive-title { font-size: 2.5rem; }
    .dp-experience-badge { right: -10px; bottom: -20px; padding: 15px; }
    .exp-num { font-size: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .impact-container { grid-template-columns: 1fr; }
}
