/* ===========================================
   SERVICE AREAS - Landing Page & City Pages
   Full UX-optimized design system
   =========================================== */

/* ---- Shared Hero Section ---- */
.sa-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #0a1628;
}

.sa-hero__bg-image {
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.sa-hero__bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-hero__bg-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #0a1628 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.3) 100%);
}

.sa-hero__accent-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f25d3d 0%, #d94429 40%, transparent 100%);
    z-index: 5;
}

.sa-hero__pattern {
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.sa-hero__wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    min-height: 560px;
}

.sa-hero__content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sa-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f25d3d;
    margin-bottom: 20px;
    padding: 8px 18px;
    background: rgba(242,93,61,0.1);
    border: 1px solid rgba(242,93,61,0.25);
    border-radius: 6px;
}

.sa-hero__tagline::before {
    content: '';
    display: inline-block;
    width: 10px; height: 10px;
    background: #f25d3d;
    border-radius: 50%;
    animation: sa-pulse 2s ease-in-out infinite;
}

@keyframes sa-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(242,93,61,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(242,93,61,0); }
}

.sa-hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    color: #fff;
}

.sa-hero h1 .sa-hero__highlight {
    color: #f25d3d;
    position: relative;
}

.sa-hero__subtitle {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.sa-hero__trust {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sa-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sa-hero__trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: rgba(242,93,61,0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.sa-hero__trust-icon fa-icon,
.sa-hero__trust-icon svg {
    color: #f25d3d;
    fill: #f25d3d;
    width: 20px; height: 20px;
}

.sa-hero__trust-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sa-hero__trust-label {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.2;
}

.sa-hero__ctas {
    display: flex;
    gap: 16px;
    align-items: stretch;
    flex-wrap: wrap;
}

.sa-hero__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f25d3d;
    color: #fff !important;
    padding: 0 40px;
    border-radius: 8px;
    height: 62px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 20px rgba(242,93,61,0.4);
}

.sa-hero__cta-button:hover {
    background: #e04a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(242,93,61,0.5);
}

.sa-hero__cta-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.sa-hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    padding: 0 32px;
    border-radius: 8px;
    height: 62px;
    text-decoration: none !important;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}

.sa-hero__phone:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.sa-hero__phone:focus-visible {
    outline: 3px solid #f25d3d;
    outline-offset: 3px;
}

.sa-hero__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #f25d3d;
    border-radius: 50%;
    flex-shrink: 0;
}

.sa-hero__phone-icon svg { fill: #fff; }

/* ---- Breadcrumbs (inside hero) ---- */
.sa-breadcrumbs {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.5);
}

.sa-breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sa-breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.sa-breadcrumbs a:focus-visible {
    outline: 2px solid #f25d3d;
    outline-offset: 2px;
    border-radius: 2px;
}

.sa-breadcrumbs span {
    margin: 0 8px;
    color: rgba(255,255,255,0.3);
}

/* ---- Intro Section ---- */
.sa-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.sa-intro__content {
    flex: 1;
}

.sa-intro__content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.sa-intro__content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 18px;
}

.sa-intro__image {
    flex: 0 0 42%;
}

.sa-intro__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.sa-intro__stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 2px solid #e5e7eb;
}

.sa-intro__stat {
    text-align: center;
    flex: 1;
}

.sa-intro__stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #f25d3d;
    line-height: 1;
    margin-bottom: 6px;
}

.sa-intro__stat-label {
    font-size: 1.6rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---- City Links Grid (Landing Page) ---- */
.sa-cities {
    background: #0a1628;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.sa-cities::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f25d3d 0%, #d94429 50%, transparent 100%);
}

.sa-cities__dots {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.sa-cities__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sa-cities h2 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.sa-cities__subtitle {
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 48px;
}

.sa-cities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sa-cities__card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    padding: 24px 26px;
    border-radius: 10px;
    text-decoration: none !important;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.sa-cities__card:hover {
    background: rgba(242,93,61,0.12);
    border-color: rgba(242,93,61,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #fff;
}

.sa-cities__card:focus-visible {
    outline: 3px solid #f25d3d;
    outline-offset: 2px;
}

.sa-cities__card fa-icon,
.sa-cities__card svg {
    color: #f25d3d;
    fill: #f25d3d;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.sa-cities__card-arrow {
    margin-left: auto;
    color: rgba(255,255,255,0.25);
    transition: all 0.25s ease;
}

.sa-cities__card:hover .sa-cities__card-arrow {
    color: #f25d3d;
    transform: translateX(4px);
}

/* ---- Services Overview (Landing Page) ---- */
.sa-services-overview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.sa-services-overview h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 16px;
}

.sa-services-overview > p {
    text-align: center;
    color: #6b7280;
    font-size: 1.6rem;
    margin-bottom: 48px;
}

.sa-services-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sa-services-overview__card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
    position: relative;
}

.sa-services-overview__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f25d3d, #d94429);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sa-services-overview__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.sa-services-overview__card:hover::before {
    opacity: 1;
}

.sa-services-overview__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: #0a1628;
    border-radius: 14px;
    margin-bottom: 22px;
}

.sa-services-overview__card-icon fa-icon {
    font-size: 1.8rem;
    color: #f25d3d;
}

.sa-services-overview__card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.sa-services-overview__card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.sa-services-overview__card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.sa-services-overview__card ul li:last-child {
    border-bottom: none;
}

.sa-services-overview__card ul li a {
    color: #374151;
    text-decoration: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
}

.sa-services-overview__card ul li a:hover {
    color: #f25d3d;
    padding-left: 6px;
}

.sa-services-overview__card ul li a:focus-visible {
    outline: 2px solid #f25d3d;
    outline-offset: 2px;
    border-radius: 3px;
}

.sa-services-overview__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f25d3d;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: gap 0.25s ease;
    padding: 6px 0;
}

.sa-services-overview__card-link:hover {
    gap: 14px;
}

.sa-services-overview__card-link:focus-visible {
    outline: 2px solid #f25d3d;
    outline-offset: 3px;
    border-radius: 3px;
}

/* ---- City Services Grid (City Pages) ---- */
.sa-city-services {
    background: #f8f9fa;
    padding: 80px 20px;
}

.sa-city-services__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.sa-city-services h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 16px;
}

.sa-city-services > .sa-city-services__inner > p {
    text-align: center;
    color: #6b7280;
    font-size: 1.6rem;
    margin-bottom: 48px;
}

.sa-city-services__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.sa-city-services__card {
    flex: 0 0 calc(33.333% - 19px);
    max-width: calc(33.333% - 19px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
}

.sa-city-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: transparent;
}

.sa-city-services__card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.sa-city-services__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.sa-city-services__card:hover .sa-city-services__card-image img {
    transform: scale(1.08);
}

.sa-city-services__card-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10,22,40,0.85));
}

.sa-city-services__card-image-overlay h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.sa-city-services__card-body {
    padding: 28px;
}

.sa-city-services__card-body p {
    color: #374151;
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sa-city-services__card-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.sa-city-services__card-links li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sa-city-services__card-links li:last-child {
    border-bottom: none;
}

.sa-city-services__card-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    text-decoration: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 2px 0;
}

.sa-city-services__card-links li a:hover {
    color: #f25d3d;
    padding-left: 6px;
}

.sa-city-services__card-links li a:focus-visible {
    outline: 2px solid #f25d3d;
    outline-offset: 2px;
    border-radius: 3px;
}

.sa-city-services__card-links li a fa-icon {
    color: #f25d3d;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.sa-city-services__card-links li a:hover fa-icon {
    transform: translateX(3px);
}

.sa-city-services__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a1628;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sa-city-services__card-cta:hover {
    background: #f25d3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(242,93,61,0.3);
}

.sa-city-services__card-cta:focus-visible {
    outline: 3px solid #f25d3d;
    outline-offset: 3px;
}

/* ---- Why Choose Us ---- */
.sa-why-us {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.sa-why-us h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 16px;
}

.sa-why-us__subtitle {
    text-align: center;
    font-size: 1.6rem;
    color: #6b7280;
    margin-bottom: 56px;
}

.sa-why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.sa-why-us__item {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.sa-why-us__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.sa-why-us__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px; height: 72px;
    background: #0a1628;
    border-radius: 16px;
    margin: 0 auto 22px;
}

.sa-why-us__icon fa-icon {
    font-size: 1.8rem;
    color: #f25d3d;
}

.sa-why-us__item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.sa-why-us__item p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ---- Nearby Areas (City Pages) ---- */
.sa-nearby {
    background: #f8f9fa;
    padding: 70px 20px;
}

.sa-nearby__inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.sa-nearby h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.sa-nearby__subtitle {
    color: #6b7280;
    margin-bottom: 36px;
    font-size: 1.6rem;
}

.sa-nearby__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}

.sa-nearby__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
}

.sa-nearby__link:hover {
    border-color: #f25d3d;
    color: #f25d3d;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sa-nearby__link:focus-visible {
    outline: 3px solid #f25d3d;
    outline-offset: 2px;
}

.sa-nearby__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f25d3d;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: gap 0.25s ease;
    padding: 8px 0;
}

.sa-nearby__view-all:hover {
    gap: 14px;
}

.sa-nearby__view-all:focus-visible {
    outline: 2px solid #f25d3d;
    outline-offset: 3px;
    border-radius: 3px;
}

/* ---- Final CTA ---- */
.sa-cta {
    background: #0a1628;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sa-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f25d3d 0%, #d94429 50%, transparent 100%);
}

.sa-cta__dots {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.sa-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.sa-cta h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sa-cta__text {
    color: rgba(255,255,255,0.65);
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.sa-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sa-cta__btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f25d3d;
    color: #fff !important;
    padding: 20px 48px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(242,93,61,0.4);
}

.sa-cta__btn-book:hover {
    background: #e04a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(242,93,61,0.5);
}

.sa-cta__btn-book:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.sa-cta__btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    padding: 20px 36px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.12);
}

.sa-cta__btn-phone:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.sa-cta__btn-phone:focus-visible {
    outline: 3px solid #f25d3d;
    outline-offset: 3px;
}

/* ---- Stats Bar ---- */
.sa-stats {
    background: linear-gradient(135deg, #0a1628 0%, #132240 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sa-stats::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f25d3d, transparent);
}

.sa-stats__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.sa-stats h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 36px;
}

.sa-stats__grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.sa-stats__item {
    text-align: center;
}

.sa-stats__number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: #f25d3d;
    line-height: 1;
    margin-bottom: 8px;
}

.sa-stats__label {
    color: rgba(255,255,255,0.6);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ---- Hidden H1 for SEO ---- */
.sa-h1-section {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .sa-hero { min-height: auto; }
    .sa-hero__bg-image {
        width: 100%;
        height: 100%;
        opacity: 0.3;
    }
    .sa-hero__bg-image::after {
        background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.85) 100%);
    }
    .sa-hero__wrapper {
        min-height: auto;
        padding: 60px 30px;
    }
    .sa-hero__content { flex: 1; }
    .sa-hero__trust { gap: 24px; }

    .sa-intro { flex-direction: column; padding: 60px 30px; gap: 40px; }
    .sa-intro__image { flex: none; }

    .sa-services-overview { padding: 60px 30px; }
    .sa-why-us { padding: 60px 30px; }

    .sa-cities__grid { grid-template-columns: repeat(3, 1fr); }
    .sa-services-overview__grid { grid-template-columns: repeat(2, 1fr); }
    .sa-city-services__card { flex: 0 0 calc(50% - 14px); max-width: calc(50% - 14px); }
    .sa-why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sa-hero__wrapper { padding: 50px 20px; }
    .sa-hero h1 { font-size: 2.6rem; }
    .sa-hero__trust {
        flex-wrap: wrap;
        gap: 16px;
    }
    .sa-hero__trust-item { flex: 0 0 calc(50% - 8px); }
    .sa-hero__ctas { flex-direction: column; width: 100%; align-items: stretch; }
    .sa-hero__cta-button { width: 100%; text-align: center; justify-content: center; height: 58px; }
    .sa-hero__phone { width: 100%; justify-content: center; height: 58px; }
    .sa-hero__pattern { width: 100%; }

    .sa-intro { padding: 50px 20px; }
    .sa-intro__content h2 { font-size: 2.2rem; }
    .sa-intro__stats { flex-direction: column; gap: 20px; }
    .sa-services-overview { padding: 50px 20px; }
    .sa-why-us { padding: 50px 20px; }

    .sa-cities__grid { grid-template-columns: repeat(2, 1fr); }
    .sa-stats__grid { flex-direction: column; gap: 30px; }
}

@media (max-width: 640px) {
    .sa-hero h1 { font-size: 2.2rem; }
    .sa-hero__tagline { letter-spacing: 2px; }
    .sa-hero__trust { flex-direction: column; gap: 12px; }
    .sa-hero__trust-item { flex: 1; }

    .sa-intro__content h2 { font-size: 2rem; }

    .sa-cities__grid { grid-template-columns: 1fr; }
    .sa-services-overview__grid { grid-template-columns: 1fr; }
    .sa-city-services__card { flex: 0 0 100%; max-width: 100%; }
    .sa-why-us__grid { grid-template-columns: 1fr; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .sa-hero__tagline::before { animation: none; }
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    .sa-city-services__card:hover .sa-city-services__card-image img {
        transform: none;
    }
}

/* Global focus-visible for any missed interactive elements */
.sa-page a:focus-visible,
.sa-page button:focus-visible,
.sa-page [role="button"]:focus-visible {
    outline: 3px solid #f25d3d;
    outline-offset: 2px;
}
