/* ===============================
   GOOGLE FONTS
================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ===============================
   SECTION BASE
================================= */
.premium-about-section {
    background: linear-gradient(180deg, #f8f5f1, #f3eee7);
    padding: 100px 0;
}

/* ===============================
   TOP FLEX SECTION
================================= */
.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* ===============================
   TEXT AREA
================================= */
.about-text {
    flex: 1;
    max-width: 520px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    position: relative;
}

/* GOLD LINE */
.about-text h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c8a96a;
    margin-top: 12px;
}

.about-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #8a7f6b;
    margin-bottom: 25px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 18px;
}

.about-text strong {
    display: block;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

/* ===============================
   IMAGE STYLE
================================= */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    transition: transform 0.6s ease;
}

.about-image img:hover {
    transform: scale(1.04);
}

/* ===============================
   AWARDS HEADING
================================= */
.awards-heading {
    text-align: center;
    margin-top: 80px;
}

.awards-heading h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.awards-heading p {
    font-family: 'Inter', sans-serif;
    color: #777;
}

/* ===============================
   SMALL AWARDS GRID
================================= */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.award-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;

    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.4s ease;
}

.award-card img {
    width: 100%;
    max-width: 180px;
    margin: auto;
    display: block;
}

/* TEXT */
.award-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-top: 15px;
}

.award-card span {
    font-size: 13px;
    color: #999;
}

/* HOVER */
.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #c8a96a;
}

/* ===============================
   BIG AWARDS
================================= */
.awards-big {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.award-big {
    background: #fff;
    padding: 50px;
    border-radius: 14px;

    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    text-align: center;

    transition: all 0.4s ease;
}

.award-big img {
    width: 100%;
}

/* TEXT */
.award-big h4 {
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    font-size: 20px;
}

.award-big p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

/* HOVER */
.award-big:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.18);
    border-color: #c8a96a;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-big {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 34px;
        letter-spacing: 2px;
    }
}
/* ===============================
   SECTION BASE
================================= */
.featured-logos-section {
    padding: 90px 0;
    background: #f5f1eb;
}

/* ===============================
   HEADING
================================= */
.logos-heading {
    text-align: center;
    margin-bottom: 50px;
}

.logos-heading h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
}

/* GOLD LINE */
.logos-heading h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c8a96a;
    margin: 12px auto 0;
}

.logos-heading p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #777;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.8;
}

/* ===============================
   GRID (4 x 4 PERFECT)
================================= */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    align-items: center;
    justify-items: center;
}

/* ===============================
   LOGO STYLE
================================= */
.logos-grid img {
    max-width: 130px;
    height: auto;

    filter: grayscale(100%);
    opacity: 0.7;

    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===============================
   FOOTER
================================= */
.logo-footer {
    text-align: right;
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #555;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .logos-grid img {
        max-width: 100px;
    }

    .logo-footer {
        text-align: center;
    }
}