/* ═══════════════════════════════════════
   ABOUT PAGE — RSSP & Associates
   ═══════════════════════════════════════ */

/* ─── About Hero ─── */
.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.85) 0%, rgba(15, 36, 64, 0.9) 100%),
        url('/assets/img/about.webp') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 162, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero .section-tag {
    color: var(--accent-light);
    border-color: rgba(232, 162, 58, 0.3);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    margin-top: 12px;
    margin-bottom: 16px;
}

.about-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Shared Heading Style ─── */
.about-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

/* ─── Decorative Underline ─── */
.heading-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.heading-underline-center {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* ═══ WHO WE ARE ═══ */
.about-intro {
    background: var(--white);
    padding: 80px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-intro-image {
    display: flex;
    justify-content: center;
}

.about-intro-image .about-img-wrapper {
    position: relative;
    max-width: 450px;
}

.about-intro-image .about-img-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-intro-image .about-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ═══ FOUNDER / CA PERSON ═══ */
.about-founder {
    background: var(--gray-50);
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.founder-grid-reverse {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-designation {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.founder-qualifications {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.founder-desc p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.founder-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.founder-highlight-item i {
    color: var(--accent);
    font-size: 16px;
}

/* Founder Photo */
.founder-photo {
    display: flex;
    justify-content: center;
}

.founder-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-400);
    box-shadow: var(--shadow-md);
}

.founder-photo-placeholder i {
    font-size: 72px;
    color: var(--gray-300);
}

.founder-photo-placeholder span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
}

/* When an actual photo is added, use this class */
.founder-photo-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.founder-photo-accent {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ═══ EXPERIENCE & EXPERTISE ═══ */
.about-experience {
    background: var(--white);
    padding: 80px 0;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: center;
}

.experience-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experience-stat-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
}

.experience-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.experience-stat-item .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.experience-stat-item .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══ MISSION & VISION ═══ */
.about-mission-vision {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.mv-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 24px;
    color: var(--white);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 12px;
}

.mv-card p:last-child {
    margin-bottom: 0;
}

/* ═══ CORE VALUES ═══ */
.about-values {
    background: var(--gray-50);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.08), rgba(27, 58, 92, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.value-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ═══ ABOUT CTA ═══ */
.about-cta {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.about-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.about-cta-content p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-light {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: var(--white);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image {
        order: -1;
    }

    .founder-grid, .founder-grid-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-photo {
        order: -1;
    }

    .founder-photo-wrapper {
        max-width: 300px;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-content h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-hero {
        padding: 120px 0 48px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-desc {
        font-size: 15px;
    }

    .about-section-title {
        font-size: 26px;
    }

    .about-intro,
    .about-founder,
    .about-experience,
    .about-mission-vision,
    .about-values,
    .about-cta {
        padding: 60px 0;
    }

    .experience-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .experience-stat-item {
        padding: 24px 16px;
    }

    .experience-stat-item .stat-number {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 28px;
    }

    .founder-photo-wrapper {
        max-width: 260px;
    }

    .about-cta-content h2 {
        font-size: 24px;
    }

    .about-cta .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}
