/* About Us Page Specific Styles */

/* Hero Banner */
.about-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a0525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2000');
    /* Medical/Office Background */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--white);
}

.about-hero p {
    /* Breadcrumb or subtitle */
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section (Split) */
.about-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.intro-badge {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-color);
}

.intro-badge h4 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.intro-badge span {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
}

/* Mission & Vision */
.mission-section {
    padding: 100px 0;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a1b9a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mission-card {
    padding: 60px 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Premium soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(106, 27, 154, 0.1);
}

.card-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover .card-gradient-top {
    opacity: 1;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* Icon shadow */
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.mission-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

/* Specific Accent for Vision to differentiate */
.vision-style .mission-icon {
    color: var(--accent-color);
}

.vision-style:hover .mission-icon {
    background: var(--accent-color);
    color: #fff;
}

.vision-style .card-gradient-top {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

/* Why Choose Us (Features) */
.features-section {
    padding: 100px 0;
    background: #1a0525;
    /* Dark background per theme */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(90, 42, 96, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: block;
}

.feature-card h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat fixed;
    position: relative;
    /* Ensure text is above overlay */
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    /* White transparent overlay */
    z-index: 1;
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-hero {
        height: 220px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        order: -1;
        /* Image top on mobile */
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .intro-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -30px;
        /* Overlap image slightly */
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--accent-color);
    }
}