/* Shared styles for service-area.html and city pages (Foley, Daphne, Fairhope) */
.service-area,
#service-area-city {
    overflow-x: hidden;
}

/* Reduced top spacing for service area page (no breadcrumbs); full-bleed photos grid */
.service-area-page.service-page-body,
.service-area-page.service-page-grid {
    padding-top: 8rem;
    padding-left: 0;
    padding-right: 0;
}
.service-area-page #service-area.service-area {
    padding: 0;
}

/* Location pages: hero goes up to nav bar */
.service-area-location-page.service-page-body {
    padding-top: 0;
    padding-bottom: 0;
}
.service-area-location-page.service-page-grid {
    padding-top: 0;
}
/* Zero section bottom padding so it doesn't stack with body padding */
.service-area-location-page #service-area-city {
    padding-bottom: 0;
}

/* Top row: Fairhope, Foley, Daphne (3 cards). Bottom row: Baldwin, Mobile (2 cards, same total width) */
.service-area-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
.service-area-pic-card:nth-child(1),
.service-area-pic-card:nth-child(2),
.service-area-pic-card:nth-child(3) {
    grid-column: span 2;
}
.service-area-pic-card:nth-child(4),
.service-area-pic-card:nth-child(5) {
    grid-column: span 3;
}

.service-area-photos-section {
    position: relative;
}
.service-area-photos-bar {
    height: 12px;
    background: var(--accent-neon);
    width: 100%;
}

.service-area-pic-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.service-area-pic-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.85) 100%);
    transition: background 0.3s;
}
.service-area-pic-card:hover .service-area-pic-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.92) 100%);
}
.service-area-pic-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}
.service-area-pic-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
}
.service-area-pic-card-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

.service-area-banner {
    background: #F5F8F3;
    padding: 0 1.5rem 0.5rem;
    text-align: center;
}
.service-area-banner h1 {
    font-size: 2.25rem;
    margin: 0 0 0.35rem;
    font-weight: 700;
    color: var(--text-light);
}
.service-area-banner p { margin: 0; font-size: 1.05rem; color: var(--text-light); opacity: 0.9; }

/* Service area hub: book CTA section (See the Difference layout, no bg image) */
.service-area-cta-showcase {
    background: #F5F8F3;
}
.service-area-cta-showcase .work-showcase-inner {
    max-width: 1200px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 3rem;
    padding: 0.25rem 2rem 3rem;
    align-items: stretch;
    min-height: 0;
}
.service-area-cta-showcase .work-showcase-copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-area-cta-showcase .work-showcase-visuals {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    min-height: 100%;
}
.service-area-cta-showcase .work-showcase-hero {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
}
.service-area-cta-showcase .work-showcase-text p {
    color: var(--text-muted);
    text-shadow: none;
}
.service-area-cta-showcase .work-showcase-word::after,
.service-area-cta-showcase .work-showcase-phrase::after {
    display: none;
}
.service-area-cta-showcase .work-showcase-cta-text {
    color: var(--accent-neon);
    text-shadow: none;
    text-decoration: none;
}
.service-area-cta-showcase .work-showcase-hero img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-area-content {
    padding: 0.75rem 1.5rem 1.25rem;
}

/* Location city pages: content body below hero */
.service-area-location-body {
    background: var(--bg-elevated);
    padding: 2rem 1.5rem 3rem;
}

.service-area-location-inner {
    max-width: 1100px;
}

.service-area-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-area-info-card {
    background: var(--bg-card);
    border: 2px solid var(--brown);
    border-radius: 12px;
    padding: 1.5rem 1.65rem;
    box-shadow: var(--shadow);
}

.service-area-info-card .service-area-h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--accent-neon);
}

.service-area-map-block {
    margin-bottom: 2rem;
}

.service-area-map-block .service-area-map {
    height: 360px;
    border: 2px solid var(--brown);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-area-card-list--checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area-card-list--checks li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light);
}

.service-area-card-list--checks li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.55em;
    height: 0.55em;
    background: var(--accent-neon);
    border-radius: 50%;
}

.service-area-info-card .service-area-disclaimer {
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
}

.service-area-location-page .service-area-cta-wrap {
    text-align: center;
    margin-top: 0;
    padding: 0;
}

.service-area-location-page .service-area-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.02em;
}
/* Location page hero: header + photo combined, extends to nav bar, full width */
.service-area-location-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 392px;
    overflow: hidden;
}
.service-area-location-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.service-area-location-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.service-area-location-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 2rem;
}

.service-area-location-hero .service-area-location-breadcrumbs {
    position: absolute;
    top: 5.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0;
    padding: 0 1.5rem;
    box-sizing: border-box;
    font-size: 0.85rem;
    text-align: left;
}

.service-area-location-hero .service-area-location-breadcrumbs a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.service-area-location-hero .service-area-location-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.service-area-location-hero .service-area-location-breadcrumbs .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0.35rem;
}

.service-area-location-hero .service-area-location-breadcrumbs [aria-current="page"] {
    color: #ffffff;
    font-weight: 600;
}
.service-area-location-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.service-area-location-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}
.service-area-location-hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-neon);
    z-index: 2;
}

/* Quick booking bar under location hero */
.service-area-book-bar {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--bg-dark);
    border-bottom: 3px solid var(--brown);
    padding: 1.35rem 1.5rem 1.5rem;
    box-sizing: border-box;
}

.service-area-book-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service-area-book-bar-heading {
    margin: 0 0 1rem;
    text-align: center;
    font-size: clamp(0.78rem, 1.4vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.5;
}

.service-area-book-bar-heading a {
    color: var(--green-light);
    text-decoration: none;
    white-space: nowrap;
}

.service-area-book-bar-heading a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.service-area-book-bar-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 0.65rem;
    align-items: stretch;
}

.service-area-book-bar-field {
    display: block;
    min-width: 0;
}

.service-area-book-bar-field input,
.service-area-book-bar-field select {
    width: 100%;
    height: 100%;
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    border: none;
    border-radius: 4px;
    background: #ffffff;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.3;
    box-sizing: border-box;
}

.service-area-book-bar-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231a1a1a' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.service-area-book-bar-field input::placeholder {
    color: var(--text-dim);
}

.service-area-book-bar-submit {
    min-height: 46px;
    padding: 0.65rem 1.35rem;
    border: none;
    border-radius: 4px;
    background: var(--brown);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.service-area-book-bar-submit:hover {
    background: var(--brown-light);
    transform: translateY(-1px);
}

.service-area-book-bar-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.service-area-book-bar-foot-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.service-area-content .section-header {
    margin: 0 0 2rem;
}
.service-area-content .section-title {
    font-size: 2.25rem;
}

.service-area-coverage-map-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}
.service-area-map-wrapper {
    position: relative;
}
.service-area-map {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.service-area-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.service-area-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}
.service-area-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: left;
}
.service-area-card.service-area-coverage-card {
    background: none;
    border: none;
    border-radius: 0;
}
.service-area-card .service-area-h3 {
    margin-top: 0;
}
.service-area-cta-wrap {
    text-align: center;
    margin-top: 0.5rem;
}
.service-area-cta-wrap .service-area-cta {
    margin-top: 0;
}
.service-area-h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 0.75rem;
}
.service-area-body-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 1rem;
}
.service-area-card-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0 0 1rem;
    text-align: left;
}
.service-area-card-list li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
}
.service-area-card-list li::before {
    display: none;
}
.service-area-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0 !important;
}
.service-area-card .service-area-disclaimer {
    margin-top: 0.5rem !important;
}
.service-area-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-neon);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--accent-neon);
    transition: all 0.3s ease;
}
.service-area-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

@media (max-width: 768px) {
    .service-area-page.service-page-body {
        padding-left: 0;
        padding-right: 0;
    }
    .service-area-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-area-pic-card:nth-child(1),
    .service-area-pic-card:nth-child(2),
    .service-area-pic-card:nth-child(3),
    .service-area-pic-card:nth-child(4),
    .service-area-pic-card:nth-child(5) {
        grid-column: 1 / -1;
    }
    .service-area-grid-2col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-area-coverage-map-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-area-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-area-location-body {
        padding: 1.5rem 1rem 2.5rem;
    }
    .service-area-map-block .service-area-map {
        height: 280px;
    }
    .service-area-content {
        padding: 2rem 1rem 1.25rem;
        text-align: left;
    }
    .service-area-content .section-header,
    .service-area-content .section-subtitle,
    .service-area-h3,
    .service-area-card-list,
    .service-area-disclaimer {
        text-align: left;
    }
    .service-area-location-page .service-area-content {
        padding-bottom: 0;
    }
    .service-area-location-hero {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        height: 308px;
    }
    .service-area-location-hero-content h1 {
        font-size: 1.75rem;
    }
    .service-area-location-hero-content p {
        font-size: 0.95rem;
    }
    .service-area-book-bar {
        padding: 1.15rem 1rem 1.25rem;
    }
    .service-area-book-bar-form {
        grid-template-columns: 1fr;
    }
    .service-area-book-bar-submit {
        width: 100%;
    }
    .service-area-book-bar-foot {
        flex-direction: column;
        gap: 0.5rem;
    }
    .service-area-book-bar-foot-line {
        display: none;
    }
    .service-area-location-hero .service-area-location-breadcrumbs {
        top: 4.75rem;
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    .service-area-cta-showcase .work-showcase-inner {
        grid-template-columns: 1fr;
        padding: 0.25rem 1.25rem 2.5rem;
        gap: 2rem;
        min-height: 0;
    }
    .service-area-cta-showcase .work-showcase-copy {
        max-width: none;
    }
    .service-area-cta-showcase .work-showcase-visuals {
        align-self: auto;
    }
    .service-area-cta-showcase .work-showcase-hero {
        height: auto;
    }
    .service-area-cta-showcase .work-showcase-hero img {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        max-height: 320px;
    }
}
