/* =====================================
   ABOUT PAGE HERO BANNER
===================================== */

.about-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.about-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.about-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.25);

    background: rgba(244,124,32,.15);
    backdrop-filter: blur(10px);

    color: rgb(255, 34, 34);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 20px;
}

.about-title {
    color: #fff;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-title span {
    display: block;
    color: rgb(255, 34, 34);
}

.about-subtitle {
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.8;
    max-width: 850px;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-buttons .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.about-buttons .btn-warning {
    background: rgb(255, 34, 34);
    border: none;
    color: #fff;
}

.about-buttons .btn-warning:hover {
    background: rgb(255, 34, 34);
}

.about-buttons .btn-outline-light:hover {
    background: #fff;
    color: #0f172a;
}

/* =====================================
   ABOUT SECTION
===================================== */

.about-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-section .container {
    max-width: 1300px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    transition: .4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* IMPORTANT */
.about-content {
    position: static;
    display: block;
    text-align: left;
    max-width: 100%;
    padding: 0;
}

.section-tag {
    display: inline-block;
    background: rgba(244,124,32,.12);
    color: rgb(255, 34, 34);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.feature-item i {
    color: rgb(255, 34, 34);
    font-size: 18px;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 32px;
    color: rgb(255, 34, 34);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-box p {
    margin: 0;
    color: #64748b;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 32px;

    background: rgb(255, 34, 34);
    color: #fff;

    text-decoration: none;
    border-radius: 50px;

    font-weight: 600;
    transition: .3s ease;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    background: rgb(255, 34, 34);
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    .about-banner {
        height: 650px;
    }

    .about-banner-content {
        padding: 25px;
    }

    .about-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-buttons {
        width: 100%;
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
    }

    .about-section {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 576px) {

    .about-banner {
        height: 700px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 15px;
    }

    .stat-box {
        padding: 20px;
    }
}