/* ===================================================
 * ROAYATY WHY CHOOSE SECTION (EXACT MOCKUP MATCH)
 * =================================================== */

:root {
    --gold-primary: #b88a3e;
    --gold-dark: #9e7029;
    --bg-light: #fbfbf9;
    --text-dark: #221c14;
    --text-muted: #6e675f;
    --border-color: #eae7e1;
}

.roayaty-why-choose-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    width: 100%;
    box-sizing: border-box;
}

.why-choose-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* Section Title */
.why-choose-title {
    text-align: center;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 45px 0;
}

/* 6-Column Equal Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: start;
}

/* Individual Feature Item */
.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-4px);
}

/* Icon Container Circle */
.why-choose-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(184, 138, 62, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.why-choose-icon-wrapper i {
    font-size: 1.25rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.why-choose-item:hover .why-choose-icon-wrapper {
    background-color: var(--gold-primary);
    box-shadow: 0 6px 16px rgba(184, 138, 62, 0.25);
}

.why-choose-item:hover .why-choose-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Feature Item Title */
.why-choose-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.35;
}

/* Feature Item Description */
.why-choose-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

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

@media (max-width: 1100px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 20px;
    }
}

@media (max-width: 650px) {
    .roayaty-why-choose-section {
        padding: 40px 16px;
    }

    .why-choose-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .why-choose-icon-wrapper {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .why-choose-icon-wrapper i {
        font-size: 1.1rem;
    }

    .why-choose-item-title {
        font-size: 0.88rem;
    }

    .why-choose-item-desc {
        font-size: 0.76rem;
    }
}

@media (max-width: 400px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}