/* ============ BRAND AWARD SECTION ============ */
.brand-award-section {
    padding: 60px 40px;
    background: #fff;
}

.brand-award-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    background: #ececec;
    border-radius: 32px;
    padding: 20px;
    overflow: hidden;
}

/* Inner lighter card with pattern */
.award-content-wrapper {
    position: relative;
    background: #f6f6f6;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 70px;
    overflow: hidden;
    min-height: 480px;
}

/* Background swirl pattern (SVG based, no image needed) */
.award-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============ LEFT: TEXT CONTENT ============ */
.award-text-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.award-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    color: #e8b923;
    font-size: 20px;
}

.award-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.2;
}

.award-subtext {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.award-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 18px 32px;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.award-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.award-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.award-btn:hover i {
    transform: translateX(4px);
}

/* ============ RIGHT: IMAGE CONTENT ============ */
.award-image-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.award-trophy-img {
    max-height: 420px;
    width: auto;
    object-fit: contain;
}

.award-brand-logo {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
    .award-heading {
        font-size: 38px;
    }

    .award-content-wrapper {
        padding: 50px 40px;
    }

    .award-trophy-img {
        max-height: 340px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    .brand-award-section {
        padding: 40px 20px;
    }

    .brand-award-card {
        border-radius: 24px;
        padding: 12px;
    }

    .award-content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 25px;
        min-height: auto;
        border-radius: 18px;
    }

    .award-bg-pattern {
        width: 100%;
        opacity: 0.4;
    }

    .award-text-content {
        max-width: 100%;
        margin-top: 30px;
    }

    .award-stars {
        justify-content: center;
        font-size: 16px;
    }

    .award-heading {
        font-size: 30px;
    }

    .award-subtext {
        font-size: 15px;
    }

    .award-btn {
        padding: 15px 28px;
        font-size: 12px;
    }

    .award-image-content {
        align-items: center;
        width: 100%;
    }

    .award-trophy-img {
        max-height: 260px;
    }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {
    .award-heading {
        font-size: 26px;
    }

    .award-trophy-img {
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .award-bg-pattern {
        width: 100%;
        opacity: 0.5;
    }
}