/* ==========================================================
   PREMIUM SERVICES / SIGNS SECTION - MINIMALIST & TIGHT
   White Background, RTL Support, 2-Col Mobile
========================================================== */

.premium-services-section {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.premium-services-section .section-header {
    margin-bottom: 35px !important;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 15px;
    text-align: center !important;
    display: block !important;
}

.premium-services-section .caption {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center !important;
}

.premium-services-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 auto 12px !important;
    letter-spacing: -0.5px;
    text-align: center !important;
    display: block !important;
}

.premium-services-section .section-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
    margin: 0 auto !important;
    text-align: center !important;
    display: block !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* More breathing room */
    padding: 0 15px;
}

.service-card {
    background: transparent; /* No card background */
    border: none; /* No card border */
    padding: 10px; /* Reduced padding since there's no border */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered */
    text-align: center; /* Centered */
    height: 100%;
}

.service-icon {
    width: 64px; /* Larger icon */
    height: 64px;
    color: var(--services-icon-color, #737373); /* Dynamic color with neutral grey fallback */
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    max-width: 64px;
    max-height: 64px;
    display: block;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.9rem;
    color: #4b5563; /* Darker grey for better readability */
    line-height: 1.5;
    margin: 0;
    max-width: 250px; /* Prevent text from spreading too wide on desktop */
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .premium-services-section {
        padding: 40px 0;
    }
    
    .premium-services-section .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    /* On mobile, sometimes a very faint background helps separation if requested, 
       but keeping it transparent as per "no card" instruction. */
    .service-card {
        background: transparent;
        padding: 10px 5px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .service-desc {
        font-size: 0.85rem;
    }
}
