/* =========================
   HOMEPAGE ABOUT PREVIEW
========================= */

.about-section {
    padding: 100px 0;
    overflow: hidden;
}

.about-image {
    width: 100%;
}

.about-image img {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.about-description {
    margin: 25px 0;
    color: #666666;
    font-size: 1rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    margin-top: 30px;
    gap: 18px;
}

.about-item {
    color: #1f2937;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.about-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

/* =========================
   ABOUT COMPANY PAGE
========================= */

.about-company {
    padding: 90px 0;
    overflow: hidden;
}

.about-company p {
    color: #667085;
    line-height: 1.8;
}

.about-info-card {
    height: 100%;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.about-number {
    margin-bottom: 12px;
    color: #ff6b00;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-info-card h5 {
    margin-bottom: 10px;
    color: #1d2433;
    font-weight: 700;
}

.about-info-card p {
    margin: 0;
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
    .about-info-card:hover {
        transform: translateY(-4px);
        border-color: #ff6b00;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width: 991.98px) {
    .about-section,
    .about-company {
        padding: 72px 0;
    }

    .about-image {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .about-image img {
        max-height: none;
    }

    .about-section .col-lg-6:last-child {
        text-align: left;
    }

    .about-info-card {
        margin-top: 0;
    }
}

/* =========================
   PHONES
========================= */

@media (max-width: 767.98px) {
    .about-section,
    .about-company {
        padding: 60px 0;
    }

    .about-image img {
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    }

    .about-description {
        margin: 20px 0;
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-features {
        margin-top: 24px;
        gap: 14px;
    }

    .about-item {
        font-size: 1rem;
        line-height: 1.55;
    }

    .about-info-card {
        padding: 22px;
        border-radius: 14px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 575.98px) {
    .about-section,
    .about-company {
        padding: 52px 0;
    }

    .about-section .btn {
        width: 100%;
        min-height: 50px;
    }

    .about-image img {
        border-radius: 14px;
    }

    .about-features {
        gap: 12px;
    }

    .about-info-card {
        padding: 20px 18px;
    }

    .about-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 359.98px) {
    .about-section,
    .about-company {
        padding: 46px 0;
    }

    .about-info-card {
        padding: 18px 16px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .about-info-card {
        transition: none;
    }
}