/* =========================================
   SERVICE AREA PREMIUM STYLES
   ========================================= */

:root {
    --primary: #DB6A9E;
    --primary-dark: #94619C;
    --secondary: #FFF0F7;
    --text-dark: #000000;
    --text-body: #666666;
    --bg-page: #ffffff;
    --gray-light: #f9f9f9;
}

.service-area-page {
    background-color: var(--bg-page);
    color: var(--text-dark);
}

.section-padding { padding: 80px 0; }
.container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- 1. Premium Header Banner --- */
.sa-header-banner {
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-light) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 50px 0;
}

.sa-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sa-page-title {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sa-breadcrumb {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sa-breadcrumb a:hover { color: var(--primary-dark); }
.sa-breadcrumb span { color: var(--primary-dark); }

/* --- 2. Directory Section --- */
.sp-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
}

.sd-heading {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sd-heading span {
    color: var(--primary-dark);
    display: inline-block;
}

.sa-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Premium Wrapper for the Table/List */
.premium-card-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Target the list inside the table you provided earlier */
#sarea a {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

#sarea a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.listingtitle {
    color: var(--primary);
    font-weight: 800;
    font-size: 20px;
    margin-top: 15px;
    display: block;
}

/* --- 3. CTA Section --- */
.sd-cta-section {
    background-color: var(--secondary);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.cta-desc {
    color: var(--text-body);
    font-size: 17px;
    margin-bottom: 30px;
}

/* Premium Pill Button */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: #fff;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(219, 106, 158, 0.3);
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .sa-header-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .sa-page-title { font-size: 30px; }
    .section-padding { padding: 50px 0; }
    .premium-card-wrapper { padding: 20px; }
}