/* ==========================================================================
   ABOUT MODULES MODERN BOX DESIGN STYLESHEET
   Using navigation.css Variables: --primary-color, --accent-gold, --text-dark, --white
   ========================================================================== */

.about-page-section {
    background-color: #f8fafc;
    padding: 3.5rem 0 5.5rem 0;
}

/* 1. HERO BOX CARD DESIGN */
.about-hero-box {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.about-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color, #ba0606) 0%, #880000 100%);
}

.about-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-color, #ba0606);
    background: rgba(186, 6, 6, 0.08);
    border: 1px solid rgba(186, 6, 6, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.about-top-pill.pill-gold {
    color: #d97706;
    background: rgba(255, 179, 0, 0.15);
    border-color: rgba(255, 179, 0, 0.3);
}

.about-heading-primary {
    font-size: 34px;
    font-weight: 900;
    color: var(--text-dark, #1e293b);
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.about-text-lead {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Hero Right Image Frame */
.about-hero-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    border: 2px solid #ffffff;
}

.about-hero-frame img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    display: block;
}

.hero-overlay-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white, #ffffff);
    padding: 12px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #e2e8f0;
}

.hero-overlay-tag .tag-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(186, 6, 6, 0.08);
    color: var(--primary-color, #ba0606);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-overlay-tag .tag-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark, #1e293b);
    margin: 0;
}

/* 2. MODERN STAT COUNTER BOXES */
.about-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box-modern {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 22px;
    padding: 26px 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);
}

.stat-box-modern:hover {
    border-color: var(--primary-color, #ba0606);
    box-shadow: 0 15px 35px rgba(186, 6, 6, 0.12);
    transform: translateY(-5px);
}

.stat-glow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color, #ba0606);
    margin-bottom: 12px;
}

.stat-num-giant {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-color, #ba0606);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-txt-label {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--text-dark, #1e293b);
    line-height: 1.3;
}

/* 3. TRIO CARDS (MISSION, VISION, VALUES) */
.trio-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.trio-card-box {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-top: 4px solid var(--primary-color, #ba0606);
    border-radius: 24px;
    padding: 32px 26px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.trio-card-box.trio-gold {
    border-top-color: var(--accent-gold, #ffb300);
}

.trio-card-box.trio-dark {
    border-top-color: var(--text-dark, #1e293b);
}

.trio-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.trio-badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(186, 6, 6, 0.08);
    color: var(--primary-color, #ba0606);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.trio-gold .trio-badge-icon {
    background: rgba(255, 179, 0, 0.15);
    color: #d97706;
}

.trio-dark .trio-badge-icon {
    background: rgba(30, 41, 59, 0.08);
    color: var(--text-dark, #1e293b);
}

.trio-card-box:hover .trio-badge-icon {
    transform: scale(1.1) rotate(-6deg);
}

.trio-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark, #1e293b);
    margin-bottom: 12px;
}

.trio-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* 4. FEATURE GRID BOXES (choose.php) */
.feature-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.feature-card-box {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 24px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card-box:hover {
    border-color: var(--primary-color, #ba0606);
    box-shadow: 0 16px 40px rgba(186, 6, 6, 0.1);
    transform: translateY(-5px);
}

.feature-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.feat-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(186, 6, 6, 0.08);
    color: var(--primary-color, #ba0606);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.feature-card-box:hover .feat-icon-badge {
    background: linear-gradient(135deg, var(--primary-color, #ba0606) 0%, #880000 100%);
    color: var(--white, #ffffff);
    transform: scale(1.08);
}

.feat-step-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-color, #ba0606);
    background: rgba(186, 6, 6, 0.06);
    padding: 3px 10px;
    border-radius: 20px;
}

.feat-box-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark, #1e293b);
    margin-bottom: 8px;
}

.feat-box-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 16px;
}

.feat-box-chip {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--primary-color, #ba0606);
    background: rgba(186, 6, 6, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

/* COMPARISON CARDS DECK (choose.php) */
.comparison-cards-wrapper {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
    margin-top: 45px;
}

.comp-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.comp-card-elite {
    background: rgba(186, 6, 6, 0.02);
    border: 2px solid var(--primary-color, #ba0606);
    border-radius: 22px;
    padding: 28px;
}

.comp-card-local {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 22px;
    padding: 28px;
}

.comp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px dashed #e2e8f0;
}

.comp-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comp-item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

/* 5. FAQS BOX CARD LIST (faqs.php) */
.faq-box-container {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}

.faq-card-modern {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-left: 4px solid var(--primary-color, #ba0606);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card-modern:hover {
    background: var(--white, #ffffff);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.faq-card-header {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.faq-card-question {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--text-dark, #1e293b);
    margin: 0;
}

.faq-card-body {
    padding: 0 26px 22px 64px;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.8;
}

/* 6. PRIVACY & TERMS CLAUSE BOXES (privacy.php, terms.php) */
.policy-box-container {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}

.policy-clause-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 22px;
    padding: 30px 26px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.policy-clause-card:hover {
    background: var(--white, #ffffff);
    border-color: var(--primary-color, #ba0606);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.policy-clause-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.clause-badge-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(186, 6, 6, 0.08);
    color: var(--primary-color, #ba0606);
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clause-heading {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark, #1e293b);
    margin: 0;
}

.clause-paragraph {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* 7. HIGH IMPACT CALLOUT BANNER */
.about-banner-cta {
    background: linear-gradient(135deg, #0f172a 0%, var(--text-dark, #1e293b) 100%);
    border-radius: 24px;
    padding: 40px;
    color: var(--white, #ffffff);
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.banner-cta-heading {
    font-size: 24px;
    font-weight: 900;
    color: var(--white, #ffffff);
    margin-bottom: 8px;
}

.banner-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.banner-cta-group {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.btn-cta-red {
    padding: 13px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color, #ba0606) 0%, #880000 100%);
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(186, 6, 6, 0.3);
}

.btn-cta-red:hover {
    color: var(--white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(186, 6, 6, 0.4);
}

.btn-cta-green {
    padding: 13px 24px;
    border-radius: 14px;
    background: #25d366;
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-cta-green:hover {
    color: var(--white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* 8. RESPONSIVENESS */
@media (max-width: 991px) {
    .about-hero-box, .faq-box-container, .policy-box-container, .comparison-cards-wrapper {
        padding: 30px 20px;
    }

    .about-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feature-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comp-box-grid {
        grid-template-columns: 1fr;
    }

    .about-banner-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .banner-cta-group {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-stat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-box-modern {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .stat-num-giant {
        font-size: 28px;
    }

    .stat-txt-label {
        font-size: 11.5px;
    }

    .feature-box-grid {
        grid-template-columns: 1fr;
    }

    .banner-cta-group {
        flex-direction: column;
    }

    .banner-cta-group a {
        width: 100%;
        justify-content: center;
    }

    .faq-card-body {
        padding-left: 20px;
    }
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS PAGE MODULE (testimonials.php)
   Using navigation.css Variables: --primary-color, --accent-gold, --text-dark, --white
   ========================================================================== */

.testimonial-card-item {
    background: var(--white, #ffffff);
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.testimonial-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--primary-color, #ba0606) 0%, var(--accent-gold, #ffb300) 100%);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.testimonial-card-item:hover {
    border-color: var(--primary-color, #ba0606);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(186, 6, 6, 0.12);
}

.testimonial-card-item:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 42px;
    color: rgba(186, 6, 6, 0.08);
    pointer-events: none;
}

.testimonial-stars-wrap {
    color: var(--accent-gold, #ffb300);
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-body-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
}

.testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1.5px solid #f1f5f9;
}

.testimonial-avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #ba0606) 0%, #880000 100%);
    color: var(--white, #ffffff);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(186, 6, 6, 0.2);
}

.testimonial-author-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark, #1e293b);
    margin: 0 0 2px;
}

.testimonial-author-city {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-img-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.testimonial-img-thumb:hover {
    transform: scale(1.08);
    border-color: var(--primary-color, #ba0606);
}

.testimonial-admin-reply {
    background: rgba(186, 6, 6, 0.04);
    border-left: 3.5px solid var(--primary-color, #ba0606);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 13px;
    color: #475569;
}

.testimonial-admin-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color, #ba0606);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* PAYMENT PAGE CUSTOM CLASSES */
.payment-lead-text {
    max-width: 850px;
}

.payment-qr-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.payment-qr-img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.payment-bank-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
}

