/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* ===== ABOUT NAVBAR OVERRIDES ===== */
.about-navbar .logo .logo-icon.square {
    border-radius: 6px;
    background: var(--primary-red);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.about-navbar .nav-links a.active-underline {
    color: var(--primary-red);
    background: none;
    position: relative;
    padding-bottom: 6px;
}

.about-navbar .nav-links a.active-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}

.about-navbar .nav-links a:hover {
    color: var(--primary-red);
    background: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call-now {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid var(--text-dark);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-call-now i {
    font-size: 0.8rem;
}

.btn-call-now:hover {
    background: var(--text-dark);
    color: white;
}

.btn-book-session-red {
    background: var(--primary-red);
    color: white;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-book-session-red:hover {
    background: var(--primary-red-dark);
    transform: translateY(-1px);
}

/* Hide the default book session button on about page */
.about-navbar .btn-book-session {
    display: none;
}

/* ===== ABOUT HERO ===== */
.about-hero {
    margin-top: 60px;
    background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
    padding: 80px 24px 64px;
    text-align: center;
}

.about-hero-container {
    max-width: 680px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.22;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
}

.about-hero h1 em {
    font-style: italic;
}

.about-hero p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* ===== CERTIFICATIONS BAR ===== */
.certifications {
    background: #f1f5f9;
    padding: 36px 24px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.certifications-container {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cert-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.8px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cert-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 0.88rem;
}

.cert-badge span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-section {
    padding: 68px 24px 72px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.methodology-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.methodology-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 10px 0 8px;
}

.methodology-header p {
    font-size: 0.88rem;
    color: var(--text-gray);
}

.methodology-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.method-card {
    background: white;
    border-radius: 16px;
    padding: 26px 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.method-icon.blue {
    background: #eff6ff;
    color: var(--primary-blue);
}

.method-icon.green {
    background: #f0fdf4;
    color: #16a34a;
}

.method-icon.purple {
    background: #faf5ff;
    color: #9333ea;
}

.method-icon.red {
    background: #fef2f2;
    color: var(--primary-red);
}

.method-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.method-card p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.eligibility-card {
    background: #fffafa;
    border-color: #fecaca;
}

.eligibility-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.eligibility-list li i {
    color: var(--primary-red);
    font-size: 0.72rem;
    margin-top: 3px;
}

@media (max-width: 1024px) {
    .methodology-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.founder-container {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 52px;
    position: relative;
}

/* Founder Image */
.founder-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 340px;
}

.founder-image {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: #f8fafc;
}

.founder-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    color: white;
}

.founder-name-overlay span {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.founder-name-overlay small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.award-badge {
    position: absolute;
    bottom: -18px;
    right: -24px;
    background: white;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    border: 1px solid #fecaca;
    z-index: 2;
}

.award-icon {
    width: 32px;
    height: 32px;
    background: #fef2f2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 0.82rem;
}

.award-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
}

.award-text span {
    font-size: 0.68rem;
    color: var(--text-gray);
}

/* Founder Content */
.founder-content {
    flex: 1;
    padding-top: 4px;
}

.founder-tag {
    display: inline-block;
    background: var(--primary-navy);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.founder-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.founder-credentials {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 22px;
}

.founder-content blockquote {
    border-left: 3px solid var(--primary-red);
    padding: 16px 20px;
    margin: 0 0 22px 0;
    background: #fdf8f8;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.75;
}

.founder-bio {
    font-size: 0.86rem;
    color: var(--text-gray);
    line-height: 1.78;
    margin-bottom: 22px;
}

.founder-achievements {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.founder-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-dark);
    font-weight: 500;
}

.founder-achievements li i {
    color: var(--primary-red);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Side Action Buttons (next to founder) */
.founder-side-actions {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.2s;
}

.side-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

/* ===== OUR CORE PHILOSOPHY ===== */
.philosophy-section {
    padding: 76px 24px;
    background: var(--primary-navy);
    color: white;
}

.philosophy-container {
    max-width: 980px;
    margin: 0 auto;
}

.philosophy-title {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.philosophy-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 44px;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 28px;
    align-items: start;
}

.philosophy-card {
    background: white;
    border-radius: 12px;
    padding: 30px 26px;
    color: var(--text-dark);
    transition: transform 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-3px);
}

.philosophy-card.mission {
    border: 1.5px solid rgba(22, 33, 62, 0.25);
}

.philosophy-card.vision {
    border: 1.5px solid rgba(220, 38, 38, 0.35);
}

.philosophy-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.philosophy-icon.navy {
    background: #f0f4ff;
    color: var(--primary-navy);
    border: 1px solid #dbeafe;
}

.philosophy-icon.red {
    background: #fef2f2;
    color: var(--primary-red);
    border: 1px solid #fecaca;
}

.philosophy-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.philosophy-card p {
    font-size: 0.84rem;
    color: var(--text-gray);
    line-height: 1.72;
}

/* ===== CAMPUS LIFE SECTION ===== */
.campus-life-section {
    padding: 76px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.campus-life-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.campus-life-text h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 12px 0 16px;
    line-height: 1.25;
}

.campus-life-text > p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.campus-stats-mini {
    display: flex;
    gap: 24px;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.campus-stats-mini > div {
    flex: 1;
}

.campus-stats-mini strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.campus-stats-mini span {
    font-size: 0.76rem;
    color: var(--text-gray);
}

.campus-life-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .campus-life-container {
        grid-template-columns: 1fr;
    }
    .campus-life-image img {
        height: 280px;
    }
}

/* ===== OUR JOURNEY / TIMELINE ===== */
.journey-section {
    padding: 76px 24px;
    background: var(--bg-white);
}

.journey-container {
    max-width: 700px;
    margin: 0 auto;
}

.journey-title {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.journey-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 48px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

/* Vertical center line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d1d5db;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 56px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left aligned */
.timeline-item.left {
    padding-right: calc(50% + 32px);
}

.timeline-item.left .timeline-content {
    text-align: right;
}

.timeline-item.left .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
}

/* Right aligned */
.timeline-item.right {
    padding-left: calc(50% + 32px);
}

.timeline-item.right .timeline-content {
    text-align: left;
}

.timeline-item.right .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
}

/* Timeline dot */
.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-dot.red {
    background: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.timeline-dot.dark {
    background: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(22, 33, 62, 0.1);
}

/* Timeline content */
.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1px;
    line-height: 1.2;
}

.timeline-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.84rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== ABOUT FOOTER ===== */
.about-footer {
    background: var(--primary-navy);
    padding-top: 44px;
}

.about-footer .footer-bottom {
    display: none;
}

.about-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

.about-footer .footer-brand {
    color: white;
}

.about-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.about-footer .footer-logo .logo-icon.square {
    background: var(--primary-red);
    border-radius: 6px;
}

.footer-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 0;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 14px;
}

.about-footer-links h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 18px;
    padding-bottom: 0;
}

.about-footer-links ul {
    list-style: none;
}

.about-footer-links li {
    margin-bottom: 10px;
}

.about-footer-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.about-footer-links a:hover {
    color: white;
    text-decoration-color: white;
}

/* ===== FLOATING BUTTONS ===== */
.about-page .floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.about-page .floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.about-page .floating-btn:hover {
    transform: scale(1.1);
}

.about-page .floating-btn.msg-btn {
    background: var(--primary-red);
}

.about-page .floating-btn.call-btn {
    background: var(--primary-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .founder-container {
        flex-direction: column;
        align-items: center;
    }

    .founder-image-wrapper {
        width: 100%;
        max-width: 380px;
    }

    .founder-content {
        text-align: left;
    }

    .founder-side-actions {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .philosophy-cards {
        grid-template-columns: 1fr;
    }

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

    .cert-badges {
        gap: 28px;
    }

    .nav-actions {
        display: none;
    }

    .about-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    /* Timeline mobile: single column left-aligned */
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 40px;
        padding-right: 0;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        text-align: left;
    }

    .timeline::before {
        left: 7px;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 7px;
    }

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

    .cert-badges {
        flex-direction: column;
        gap: 16px;
    }

    .founder-image-wrapper {
        width: 100%;
    }

    .founder-image img {
        height: 340px;
    }

    .award-badge {
        right: 8px;
        bottom: -14px;
    }

    .philosophy-title,
    .journey-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 52px 16px 44px;
    }

    .founder-section {
        padding: 52px 16px;
    }

    .philosophy-section {
        padding: 52px 16px;
    }

    .journey-section {
        padding: 52px 16px;
    }

    .about-footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .founder-content h2 {
        font-size: 1.5rem;
    }
}
