/* =========================================
   SERVICE AREA DIRECTORY CUSTOM STYLES
   ========================================= */

:root {
    --primary: #097f93;
    --secondary: #dff4fb;
    --text-dark: #000000;
    --text-body: #4a4a4a;
    --bg-light: #F4F9FD;
    --bg-page: #F8F9FA; 
    --border-color: #E5E9F0;
}

.service-area-page {
    background-color: var(--bg-page);
    min-height: 100vh;
}

.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Base Typography */
.sd-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.sd-heading span { color: var(--primary); }
.sp-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
}
.sa-intro p {
    color: var(--text-body);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sa-letter-header
{
    font-size: 30px;
    color: var(--primary);
    margin-top: 30px;
}

.sa-letter-group {
    width: 190px;
}

.sa-alphabet-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* Base Primary Button */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #075f70;
    box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}

/* --- Header Banner --- */
.sa-hero {
    position: relative;
    padding: 75px 0 65px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.sa-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sa-hero-title {
    margin: 0 0 10px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sa-hero-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: #cbd5e1 !important;
    font-weight: 500;
}

.sa-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff !important;
}

.sa-breadcrumb-pill a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sa-breadcrumb-pill a:hover {
    opacity: 0.8;
}

.sa-breadcrumb-pill .sep {
    color: #097f93;
    font-weight: 700;
}

.sa-breadcrumb-pill .current {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sa-hero {
        padding: 55px 0 45px;
    }
    .sa-hero-title {
        font-size: 1.85rem;
    }
    .sa-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Accordion Styles --- */
.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 6px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    background-color: #ffffff; 
    color: var(--text-dark);
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.accordion-header:hover {
    background-color: var(--bg-light);
}
.accordion-header.active {
    background-color: var(--primary);
    color: #ffffff;
}
.acc-icon {
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background-color: #ffffff;
}
.sub-area-list {
    padding: 30px;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px 30px;
}
.sub-area-list a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 16px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #eaeaea;
    transition: all 0.2s ease;
}
.sub-area-list a:hover {
    color: var(--primary);
    padding-left: 8px;
    background-color: #fcfcfc;
}

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

/* --- Responsive Queries --- */
@media (max-width: 991px) {
    .sa-header-flex {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 15px;
    }
}
@media (max-width: 767px) {
    .sa-page-title { font-size: 26px; }
    .sa-header-flex {
        align-items: center;
        text-align: center;
    }
    .section-padding { padding: 50px 0; }
    .accordion-header {
        font-size: 18px;
        padding: 18px 20px;
    }
    .sub-area-list {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}