/**
 * About Us Page Styles (Trust-Building & Conversion-Focused)
 * Brand: medicalcounseling.in
 */

/* ===================================
   Hero Section
   =================================== */
.about-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(15, 61, 100, 0.05) 0%, rgba(46, 139, 87, 0.05) 100%);
}

.about-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--medical-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-title span {
    color: var(--medical-green);
}

.about-hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--medical-green);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Mission & Vision
   =================================== */
.about-mission-section {
    padding: 80px 0;
}

.mission-card {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--medical-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 139, 87, 0.15);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon i {
    font-size: 32px;
    color: var(--pure-white);
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Why Choose Us
   =================================== */
.about-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 61, 100, 0.03) 0%, rgba(46, 139, 87, 0.03) 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--medical-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--medical-green);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.why-card-enhanced {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card-enhanced:hover {
    border-color: var(--medical-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 139, 87, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(15, 61, 100, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card-enhanced:hover .why-icon {
    background: var(--gradient-primary);
}

.why-icon i {
    font-size: 28px;
    color: var(--medical-green);
    transition: color 0.3s ease;
}

.why-card-enhanced:hover .why-icon i {
    color: var(--pure-white);
}

.why-card-enhanced h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 12px;
}

.why-card-enhanced p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.about-services-section {
    padding: 80px 0;
}

.service-card-about {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-about:hover::before {
    transform: scaleX(1);
}

.service-card-about:hover {
    border-color: var(--medical-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 139, 87, 0.15);
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(46, 139, 87, 0.1);
    margin-bottom: 16px;
}

.service-card-about h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 12px;
}

.service-card-about p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Trust Section
   =================================== */
.about-trust-section {
    padding: 80px 0;
    background: var(--medical-navy);
    color: var(--pure-white);
}

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

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 48px;
    color: var(--medical-green);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   Testimonials
   =================================== */
.about-testimonials-section {
    padding: 80px 0;
}

.testimonial-card-about {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.testimonial-card-about .stars {
    color: #FFB800;
    margin-bottom: 20px;
}

.testimonial-card-about .stars i {
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   CTA Section
   =================================== */
.about-cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary {
    background: var(--pure-white);
    color: var(--medical-green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--medical-green);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-cta-secondary:hover {
    background: var(--pure-white);
    color: var(--medical-green);
    transform: translateY(-4px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 60px 0 40px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-desc {
        font-size: 16px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

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

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}