/* ==========================================================================
   PRANGON ABOUT US PAGE STYLES
   Palette: Deep Navy (#0F2C59) & Dynamic Orange (#FF6B00)
   ========================================================================== */

/* Banner Styling */
.page-banner {
    padding: 130px 0 50px;
    text-align: center;
}

.page-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--accent-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.icon-vision {
    background: #fff7ed;
}

.mv-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-navy);
}

/* Team Section (Alternating Member Layout) */
.team-section {
    padding: 90px 0;
}

.team-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 45px;
}

.team-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-row:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

/* Alternating Reverse Class */
.team-row.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.member-role {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 6px;
}

.member-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px dashed var(--border-color);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: var(--primary-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.member-social a:hover {
    background: var(--accent-orange);
    color: #ffffff;
}

.team-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 360px;
    border: 1px solid var(--border-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-row:hover .team-image img {
    transform: scale(1.04);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .team-row, .team-row.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    .team-row.reverse .team-image {
        order: 2; /* Keeps image below text on smaller screens */
    }
    .team-image {
        height: 280px;
    }
}


/* ==========================================================================
   ADDITIONAL STYLES FOR NEW PHP SECTIONS (FULLY INTEGRATED)
   ========================================================================== */

/* 1. Stat Counter Strip */
.about-stats-section {
    padding: 20px 0 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: var(--shadow-sm, 0 10px 30px rgba(0, 0, 0, 0.04));
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: rgba(230, 81, 0, 0.1);
    color: var(--accent-orange, #e65100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin: 0 0 2px 0;
}

.stat-info p {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    font-weight: 600;
    margin: 0;
}

/* 2. Interactive Audit Process Section */
.audit-process-section {
    padding: 80px 0;
}

.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid var(--border-color, #e2e8f0);
    transition: var(--transition, all 0.3s ease);
}

.process-card:hover {
    border-color: var(--accent-orange, #e65100);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md, 0 12px 25px rgba(0, 0, 0, 0.06));
}

.process-step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-orange, #e65100);
    background: rgba(230, 81, 0, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 18px;
}

.process-icon {
    font-size: 32px;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}

/* 3. Developer Value Banner */
.dev-partner-section {
    padding: 60px 0;
}

.dev-banner-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dev-banner-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 10px 0;
    color: #ffffff;
}

.dev-banner-text p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 650px;
}

.dev-benefits-list {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* 4. Trust Standards Badges */
.trust-standards-section {
    padding: 80px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.badge-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition, all 0.3s ease);
}

.badge-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange, #e65100);
}

.badge-card i {
    font-size: 36px;
    color: var(--accent-orange, #e65100);
    margin-bottom: 15px;
}

.badge-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 6px;
}

.badge-card p {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin: 0;
}

/* Additional Responsive Media Queries for New Sections */
@media (max-width: 992px) {
    .stats-grid, .process-flow-grid, .badges-grid {
        grid-template-columns: 1fr;
    }
    .dev-banner-box {
        flex-direction: column;
        text-align: center;
    }
    .dev-benefits-list {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}