/* ===================================================
 * ROAYATY SERVICES SECTION (EXACT REFERENCE MATCH)
 * =================================================== */

:root {
    --gold-title: #b88a3e;
    --gold-text: #b88a3e;
    --gold-btn-border: #f0e6d6;
    --gold-btn-bg: #fffdfa;
    
    --bg-page: #fbfbf9;
    --card-bg: #ffffff;
    --text-dark: #221c14;
    --text-muted: #5e574f;
}

.roayaty-services-section {
    padding: 40px 20px;
    background-color: var(--bg-page);
    width: 100%;
    box-sizing: border-box;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Styling */
.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-title); /* Exact Gold Color matching reference */
    margin: 0 0 8px 0;
}

.services-subtitle {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
}

/* 3 Column Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Service Card Container */
.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(184, 138, 62, 0.08);
}

/* Large Standalone Gold Icon (No Background Wrapper) */
.service-icon {
    font-size: 3.2rem;
    color: var(--gold-title);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

/* Title & Description */
.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px 0;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 28px 0;
    flex-grow: 1;
    max-width: 290px;
}

/* Wide Rectangular Gold Button */
.service-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--gold-btn-border);
    border-radius: 6px;
    background-color: var(--gold-btn-bg);
    color: var(--gold-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.service-btn i {
    font-size: 0.95rem;
    color: var(--gold-text);
    transition: transform 0.3s ease;
}

.service-btn:hover {
    background-color: var(--gold-title);
    border-color: var(--gold-title);
    color: #ffffff;
}

.service-btn:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .roayaty-services-section {
        padding: 20px 16px;
    }

    .services-title {
        font-size: 1.6rem;
    }

    .services-subtitle {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 30px 20px 24px 20px;
    }

    .service-icon {
        font-size: 2.6rem;
        margin-bottom: 16px;
    }

    .service-card-title {
        font-size: 1.15rem;
    }

    .service-card-desc {
        font-size: 0.82rem;
        margin-bottom: 20px;
    }
}