/* ========================================================
   MODERN ABOUT US SECTION - FULLY RESPONSIVE
   ======================================================== */

.about-us {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 5rem;
    padding: 6rem 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* === LEFT COLUMN – TEXT === */
.about-us__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-us__title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-us__body {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 1.25rem 0;
}

.about-us__body:last-child {
    margin-bottom: 0;
}

.about-us__body strong {
    color: #000000;
    font-weight: 600;
}

/* === RIGHT COLUMN – CIRCULAR IMAGE === */
.about-us__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us__image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    flex-shrink: 0;
}

.about-us__image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    z-index: 1;
    pointer-events: none;
    /* border-radius: 50%; */
    transition: all 0.3s ease;
}

.about-us__circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    position: relative;
    z-index: 2;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

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

/* ========================================================
   RESPONSIVE BREAKPOINTS
   ======================================================== */

/* Extra Large Desktops (1400px+) */
@media (min-width: 1580px) {
    .about-us {
        padding: 7rem 3.5rem;
        gap: 6rem;
    }

    .about-us__title {
        font-size: 4rem;
    }

    .about-us__body {
        font-size: 1.125rem;
    }

    .about-us__image-wrapper {
        width: 500px;
        height: 500px;
    }
}

/* Large Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
    .about-us {
        padding: 5.5rem 3.4rem;
        gap: 4.5rem;
    }

    .about-us__title {
        font-size: 3.2rem;
    }

    .about-us__image-wrapper {
        width: 420px;
        height: 420px;
    }
}

/* Medium Desktops (1000px - 1199px) */
@media (max-width: 1199px) {
    .about-us {
        padding: 5rem 3.5rem;
        gap: 4rem;
    }

    .about-us__title {
        font-size: 2.8rem;
    }

    .about-us__body {
        font-size: 0.98rem;
    }

    .about-us__image-wrapper {
        width: 380px;
        height: 380px;
    }
}

/* Tablets & Small Desktops (768px - 999px) - IMAGE ON TOP */
@media (max-width: 999px) {
    .about-us {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 4.5rem 2.5rem;
        gap: 3.5rem;
    }

    /* Image moves to top */
    .about-us__right {
        order: -1;
    }

    .about-us__text {
        text-align: left;
    }

    .about-us__title {
        font-size: 2.6rem;
    }

    .about-us__image-wrapper {
        width: 360px;
        height: 360px;
        margin: 0 auto;
    }

    .about-us__image-wrapper::before {
        top: -25px;
        left: -25px;
        right: -25px;
        bottom: -25px;
    }
}

/* Small Tablets (640px - 767px) */
@media (max-width: 767px) {
    .about-us {
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .about-us__title {
        font-size: 2.3rem;
    }

    .about-us__body {
        font-size: 0.95rem;
    }

    .about-us__image-wrapper {
        width: 320px;
        height: 320px;
    }

    .about-us__image-wrapper::before {
        top: -22px;
        left: -22px;
        right: -22px;
        bottom: -22px;
    }
}

/* Large Mobile (480px - 639px) */
@media (max-width: 639px) {
    .about-us {
        padding: 3.5rem 1.5rem;
        gap: 2.5rem;
    }

    .about-us__title {
        font-size: 2rem;
    }

    .about-us__body {
        font-size: 0.93rem;
        margin-bottom: 1rem;
    }

    .about-us__image-wrapper {
        width: 280px;
        height: 280px;
    }

    .about-us__image-wrapper::before {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
    }
}

/* Medium Mobile (390px - 479px) */
@media (max-width: 479px) {
    .about-us {
        padding: 3rem 1.25rem;
        gap: 2rem;
    }

    .about-us__title {
        font-size: 1.8rem;
    }

    .about-us__body {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-us__image-wrapper {
        width: 260px;
        height: 260px;
    }

    .about-us__image-wrapper::before {
        top: -18px;
        left: -18px;
        right: -18px;
        bottom: -18px;
    }
}

/* Small Mobile (360px - 389px) */
@media (max-width: 389px) {
    .about-us {
        padding: 2.5rem 1rem;
        gap: 1.8rem;
    }

    .about-us__title {
        font-size: 1.6rem;
    }

    .about-us__body {
        font-size: 0.88rem;
    }

    .about-us__image-wrapper {
        width: 240px;
        height: 240px;
    }

    .about-us__image-wrapper::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
}

/* Extra Small Mobile (≤359px) */
@media (max-width: 359px) {
    .about-us {
        padding: 2.2rem 0.875rem;
        gap: 1.5rem;
    }

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

    .about-us__body {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .about-us__image-wrapper {
        width: 220px;
        height: 220px;
    }

    .about-us__image-wrapper::before {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }
}