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

:root {
    --primary: #4AB7AC;        /* Teal */
    --primary-dark: #348B83;   /* Dark Teal */
    --secondary: #E6FFFC;      /* Soft Teal BG */
    --text-dark: #333333;      /* Dark Text */
    --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(135deg, var(--secondary) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 45px 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: var(--text-body);
    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(74, 183, 172, 0.3); /* Converted to Teal RGB */
    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; }
}
.sa-alpha-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.sa-alpha-col-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sa-letter {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.sa-area-list {
    width: 100%;
    border-collapse: collapse;
}

.sa-area-list td {
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sa-area-list tr:last-child td {
    border-bottom: none;
}

.sa-area-list a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.25s ease;
}

.sa-area-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .sa-alpha-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sa-alpha-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .sa-alpha-col-item {
        padding: 18px 15px;
    }
}

@media (max-width: 480px) {
    .sa-alpha-grid {
        grid-template-columns: 1fr;
    }
}