/**
 * PC KUMAR — STRUCTURED POINT-BASED ABOUT US STYLESHEET (about.css)
 * Clean Point-by-Point Highlight Cards, Bulleted Lists, Numbered Badges & High Contrast Typography.
 * Fully Responsive Across Desktop, Tablet & Mobile Screens.
 */


/* ==========================================================================
   1. POINT-BASED HERO HEADER
   ========================================================================== */
.points-hero-section {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 48px 0;
    text-align: center;
}

.points-hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.points-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.points-hero-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.points-hero-desc {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.65;
}

/* ==========================================================================
   2. MAIN POINTS WRAPPER
   ========================================================================== */
.points-main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.points-section-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    margin-top: 40px;
}

.points-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.points-section-header i {
    font-size: 24px;
    color: #dc2626;
}

.points-section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

/* NUMBERED POINTS GRID (2x2) */
.numbered-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.point-card-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    position: relative;
    transition: all 0.25s ease;
}

.point-card-item:hover {
    border-color: #dc2626;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.point-number-badge {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.point-card-item h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.point-card-item p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}

/* BULLETED CHECKLIST POINTS */
.bulleted-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-point-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.2s ease;
}

.bullet-point-row:hover {
    background: #ffffff;
    border-color: #dc2626;
}

.bullet-icon {
    font-size: 20px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.bullet-text p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.55;
}

/* BRAND PARTNERS POINTS LIST */
.brand-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.brand-point-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
}

.brand-point-card i {
    color: #dc2626;
    font-size: 18px;
}

/* CONTACT POINTS LIST */
.contact-points-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-point-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 24px;
}

.contact-point-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-point-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.contact-point-text p {
    font-size: 13.5px;
    color: #64748b;
    margin-top: 2px;
}

.contact-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.btn-point-red {
    background: #dc2626;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-point-red:hover {
    background: #b91c1c;
}

.btn-point-wa {
    background: #25d366;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-point-wa:hover {
    background: #1eb956;
}

/* ==========================================================================
   3. COMPREHENSIVE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Desktop / Laptop (<= 1200px) */
@media (max-width: 1200px) {
    .points-main-container {
        max-width: 100%;
        padding: 0 32px;
    }

    .brand-points-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* Medium Desktop / Tablet Landscape (<= 992px) */
@media (max-width: 992px) {
    .points-hero-section {
        padding: 40px 0;
    }

    .points-hero-title {
        font-size: 32px;
    }

    .points-hero-desc {
        font-size: 14.5px;
    }

    .points-main-container {
        padding: 0 24px;
    }

    .points-section-card {
        padding: 28px;
        margin-bottom: 24px;
        margin-top: 24px;
        border-radius: 16px;
    }

    .numbered-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .brand-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Tablet Portrait (<= 768px) */
@media (max-width: 768px) {
    .points-hero-section {
        padding: 32px 0;
    }

    .points-hero-title {
        font-size: 28px;
    }

    .points-section-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .points-section-header h2 {
        font-size: 19px;
    }

    .points-section-card {
        padding: 22px;
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .numbered-points-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .point-card-item {
        padding: 20px;
    }

    .bullet-point-row {
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-point-row {
        padding: 14px 18px;
        gap: 14px;
    }

    .contact-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-point-red,
    .btn-point-wa {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Small Mobile / Phones (<= 576px) */
@media (max-width: 576px) {
    .points-hero-title {
        font-size: 24px;
    }

    .points-hero-desc {
        font-size: 13.5px;
    }

    .points-main-container {
        padding: 0 16px;
    }

    .points-section-card {
        padding: 18px 16px;
        margin-bottom: 16px;
        margin-top: 16px;
        border-radius: 12px;
    }

    .points-section-header h2 {
        font-size: 17px;
    }

    .brand-points-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-point-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-point-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .bullet-point-row {
        padding: 12px 14px;
    }

    .bullet-text h4 {
        font-size: 14px;
    }

    .bullet-text p {
        font-size: 12.5px;
    }
}

/* Extra Small Phones (<= 400px) */
@media (max-width: 400px) {
    .points-hero-title {
        font-size: 21px;
    }

    .points-section-card {
        padding: 14px 12px;
    }

    .point-card-item {
        padding: 16px;
    }

    .btn-point-red,
    .btn-point-wa {
        font-size: 12.5px;
        padding: 11px 18px;
    }
}