/* =====================================================
                    WHO WE ARE
====================================================== */

.who-we-are {
    width: 100%;
    background: #ffffff;
    padding: 110px 20px;
}

.who-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* Section Small Heading */

.section-subtitle {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b08d3c;
}


/* Main Heading */

.who-container h2 {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.18;
    font-weight: 600;

    color: #151515;
}


/* Gold Divider */

.gold-line {
    width: 60px;
    height: 3px;

    margin: 28px auto 32px;

    background: #b08d3c;
    border-radius: 10px;
}


/* Paragraphs */

.who-container p {
    max-width: 820px;
    margin: 0 auto 22px;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;

    color: #666666;
}

.who-container p:last-child {
    margin-bottom: 0;
}

.who-container p strong {
    font-weight: 700;
    color: #222222;
}



/* =====================================================
                WHY CHOOSE US
====================================================== */

.why-section {
    width: 100%;
    background: #f8f8f8;

    padding: 110px 20px;
}


.why-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* Heading Area */

.section-heading {
    max-width: 720px;
    margin: 0 auto 65px;

    text-align: center;
}


.section-heading > span {
    display: inline-block;

    margin-bottom: 17px;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #b08d3c;
}


.section-heading h2 {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 600;

    color: #151515;
}


.section-heading .gold-line {
    margin: 27px auto 28px;
}


.section-heading p {
    max-width: 680px;

    margin: 0 auto;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;

    color: #707070;
}



/* =====================================================
                    WHY GRID
====================================================== */

.why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* Why Card */

.why-card {
    position: relative;

    padding: 42px 32px;

    min-height: 245px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top Gold Line */

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 3px;

    background: #b08d3c;

    transform: translateX(-50%);

    transition: width 0.35s ease;
}


/* Hover */

.why-card:hover {
    transform: translateY(-8px);

    border-color: #e3e3e3;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


.why-card:hover::before {
    width: 55px;
}



/* =====================================================
                    WHY ICON
====================================================== */

.why-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d7c49b;

    border-radius: 50%;

    color: #b08d3c;

    font-size: 22px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.why-card:hover .why-icon {
    background: #b08d3c;

    color: #ffffff;

    transform: translateY(-2px);
}



/* =====================================================
                    WHY CARD TEXT
====================================================== */

.why-card h3 {
    margin: 0 0 13px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;

    color: #202020;
}


.why-card p {
    max-width: 270px;

    margin: 0 auto;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;
    line-height: 1.75;

    color: #777777;
}



/* =====================================================
                    OUR CORE VALUES
====================================================== */

.values-section {
    width: 100%;

    background: #ffffff;

    padding: 110px 20px;
}


.values-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}



/* =====================================================
                    VALUES GRID
====================================================== */

.values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}



/* =====================================================
                    VALUE CARD
====================================================== */

.value-card {
    position: relative;

    padding: 40px 32px;

    min-height: 235px;

    background: #fafafa;

    border: 1px solid #eeeeee;

    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.value-card:hover {
    transform: translateY(-7px);

    background: #ffffff;

    border-color: #e4d8bd;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}



/* =====================================================
                    VALUE ICON
====================================================== */

.value-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b08d3c;

    border: 1px solid #d8c79f;

    font-size: 20px;

    border-radius: 50%;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.value-card:hover .value-icon {
    background: #b08d3c;

    color: #ffffff;

    transform: rotate(5deg);
}



/* =====================================================
                    VALUE TEXT
====================================================== */

.value-card h3 {
    margin: 0 0 12px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;

    color: #202020;
}


.value-card p {
    max-width: 270px;

    margin: 0 auto;

    font-family: "Poppins", Arial, sans-serif;

    font-size: 14px;
    line-height: 1.75;

    color: #777777;
}



/* =====================================================
                    LARGE TABLETS
====================================================== */

@media (max-width: 1000px) {

    .who-we-are,
    .why-section,
    .values-section {
        padding: 90px 20px;
    }


    .why-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



/* =====================================================
                    TABLETS
====================================================== */

@media (max-width: 768px) {

    .who-we-are,
    .why-section,
    .values-section {
        padding: 75px 18px;
    }


    .who-container h2,
    .section-heading h2 {
        font-size: 34px;
    }


    .who-container p {
        font-size: 14px;
        line-height: 1.8;
    }


    .section-heading {
        margin-bottom: 45px;
    }


    .why-grid,
    .values-grid {
        gap: 18px;
    }


    .why-card {
        padding: 35px 25px;

        min-height: 230px;
    }


    .value-card {
        padding: 35px 25px;

        min-height: 220px;
    }

}



/* =====================================================
                    MOBILE
====================================================== */

@media (max-width: 600px) {

    .who-we-are,
    .why-section,
    .values-section {
        padding: 65px 16px;
    }


    /* WHO WE ARE */

    .section-subtitle {
        margin-bottom: 14px;

        font-size: 11px;

        letter-spacing: 2.5px;
    }


    .who-container h2,
    .section-heading h2 {
        font-size: 30px;

        line-height: 1.25;
    }


    .gold-line {
        width: 50px;
        height: 2px;

        margin: 22px auto 27px;
    }


    .who-container p {
        font-size: 13.5px;

        line-height: 1.8;

        margin-bottom: 18px;
    }



    /* SECTION HEADING */

    .section-heading > span {
        font-size: 11px;

        letter-spacing: 2.5px;
    }


    .section-heading p {
        font-size: 13.5px;

        line-height: 1.8;
    }



    /* WHY GRID */

    .why-grid,
    .values-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* WHY CARD */

    .why-card {
        min-height: auto;

        padding: 35px 25px;
    }


    .why-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 19px;

        font-size: 20px;
    }


    .why-card h3 {
        font-size: 20px;
    }


    .why-card p {
        font-size: 13.5px;

        line-height: 1.75;
    }



    /* VALUE CARD */

    .value-card {
        min-height: auto;

        padding: 34px 25px;
    }


    .value-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 19px;
    }


    .value-card h3 {
        font-size: 20px;
    }


    .value-card p {
        font-size: 13.5px;

        line-height: 1.75;
    }

}



/* =====================================================
                    SMALL MOBILE
====================================================== */

@media (max-width: 400px) {

    .who-we-are,
    .why-section,
    .values-section {
        padding: 55px 14px;
    }


    .who-container h2,
    .section-heading h2 {
        font-size: 27px;
    }


    .who-container p,
    .section-heading p,
    .why-card p,
    .value-card p {
        font-size: 13px;
    }


    .why-card,
    .value-card {
        padding: 30px 20px;
    }

}