:root {
    --primary: #0f4c81;
    --primary-dark: #0b2d4a;
    --secondary: #163a5a;
    --accent: #dc3545;
    --light: #f4f7fb;
    --text: #22313f;
    --muted: #6b7b8a;
    --border: #dbe4ee;
    --radius: 18px;
    --shadow: 0 20px 50px rgba(12, 35, 64, 0.08);
    --site-font-body: "Inter", "Segoe UI", sans-serif;
    --site-font-heading: "Inter", "Segoe UI", sans-serif;
    --site-font-nav: "Inter", "Segoe UI", sans-serif;
    --site-font-button: "Inter", "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body, "Inter", "Segoe UI", sans-serif);
    color: var(--text);
    background: var(--body-bg, #fff);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.section-kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
    opacity: .5;
}

.section-heading {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: .85rem;
}

.section-text {
    color: var(--muted);
    font-size: 1.02rem;
    margin-bottom: 0;
}

.topbar {
    background: #0c2236;
    color: rgba(255, 255, 255, .85);
    font-size: .92rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 46px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    white-space: nowrap;
}

.topbar-item a {
    color: inherit;
}

.site-navbar {
    background: linear-gradient(135deg, rgba(11, 45, 74, .97), rgba(15, 76, 129, .95));
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(5, 20, 33, .18);
}

.site-navbar .navbar-brand {
    color: #fff;
}

.site-navbar .navbar-brand small {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: .74rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), #ff7a59);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 12px 24px rgba(220, 53, 69, .22);
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    padding: .7rem 1rem !important;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
    color: #fff;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #081c2d 0%, #113b63 100%);
}

.hero-slide {
    min-height: 640px;
    padding: 96px 0 86px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,.09), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(220,53,69,.20), transparent 28%),
        linear-gradient(135deg, rgba(8, 28, 45, .72), rgba(17, 59, 99, .86));
    pointer-events: none;
    z-index: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 640px;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 1rem 0 1rem;
}

.hero-copy p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .84);
    max-width: 560px;
}

.hero-image-wrap {
    position: relative;
    padding: 1rem;
}

.hero-visual {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stat {
    min-width: 152px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
}

.hero-stat span {
    color: rgba(255,255,255,.74);
    font-size: .92rem;
}

.hero-carousel .carousel {
    position: relative;
}

.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.hero-controls .carousel-control-prev,
.hero-controls .carousel-control-next {
    top: 50%;
    bottom: auto;
    width: 78px;
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
}

.hero-controls .carousel-control-prev {
    left: clamp(10px, 2vw, 28px);
}

.hero-controls .carousel-control-next {
    right: clamp(10px, 2vw, 28px);
}

.hero-controls .carousel-control-prev-icon,
.hero-controls .carousel-control-next-icon {
    background-color: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    width: 52px;
    height: 52px;
    background-size: 48%;
    box-shadow: 0 18px 38px rgba(0,0,0,.22);
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.hero-controls .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-controls .carousel-control-next:hover .carousel-control-next-icon,
.hero-controls .carousel-control-prev:focus .carousel-control-prev-icon,
.hero-controls .carousel-control-next:focus .carousel-control-next-icon {
    transform: scale(1.06);
    background-color: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.42);
}

.hero-carousel .carousel-indicators {
    z-index: 7;
    margin-bottom: 1.4rem;
}

.feature-strip {
    margin-top: -38px;
    position: relative;
    z-index: 5;
}

.feature-strip .card {
    border: 0;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #fff;
}

.feature-card {
    padding: 1.45rem 1.4rem;
    display: flex;
    gap: 1rem;
}

.feature-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(15, 76, 129, .09);
    color: var(--primary);
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.02rem;
    margin-bottom: .45rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.section-space {
    padding: 90px 0;
}

.bg-soft {
    background: linear-gradient(180deg, #f7fbff 0%, #eff4fb 100%);
}

.service-card,
.reference-card,
.blog-card,
.info-card,
.contact-card,
.process-card,
.detail-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #fff;
    overflow: hidden;
}

.service-card .icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(220,53,69,.10);
    color: var(--accent);
    font-size: 1.7rem;
}

.service-card-body,
.reference-card-body,
.blog-card-body,
.info-card-body,
.contact-card-body,
.detail-card-body {
    padding: 1.65rem;
}

.service-card h3,
.reference-card h3,
.blog-card h3,
.info-card h3,
.contact-card h3,
.detail-card h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-card p,
.reference-card p,
.blog-card p,
.info-card p,
.contact-card p,
.detail-card p,
.process-card p {
    color: var(--muted);
}

.service-card:hover,
.reference-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    transition: .25s ease;
}

.metric-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(15, 76, 129, .08);
    color: var(--primary-dark);
    font-size: .92rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.process-card {
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}

.process-card .step-no {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #4f93cd);
    color: #fff;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.about-panel {
    background: linear-gradient(135deg, #0c2236 0%, #103a61 100%);
    color: #fff;
    border-radius: 28px;
    padding: 2.4rem;
    position: relative;
    overflow: hidden;
}

.about-panel::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}

.about-panel p,
.about-panel li {
    color: rgba(255,255,255,.82);
}

.about-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checks li {
    padding: .55rem 0 .55rem 1.8rem;
    position: relative;
}

.about-checks li::before {
    content: "\F26B";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    top: .52rem;
    color: #ffb2bb;
}

.page-hero {
    background: linear-gradient(135deg, #0b2d4a 0%, #113b63 100%);
    color: #fff;
    padding: 96px 0 82px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,255,255,.06), transparent 28%),
        radial-gradient(circle at 80% 75%, rgba(220,53,69,.22), transparent 24%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin: 1rem 0;
}

.page-hero p {
    color: rgba(255,255,255,.78);
    font-size: 1.06rem;
}

.page-hero .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255,255,255,.5);
    --bs-breadcrumb-item-active-color: rgba(255,255,255,.9);
    color: rgba(255,255,255,.7);
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,.82);
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.thumb-cover {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    background: linear-gradient(135deg, #d9e6f4, #f2f6fb);
}

.reference-meta,
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    color: var(--muted);
    font-size: .92rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stats-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1.4rem;
}

.stats-card strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-dark);
}

.stats-card span {
    color: var(--muted);
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: .82rem 1rem;
    border-color: var(--border);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15, 76, 129, .35);
    box-shadow: 0 0 0 .25rem rgba(15, 76, 129, .10);
}

.form-section-label {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: .75rem;
}

.contact-card-body .contact-line,
.info-card-body .contact-line {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    margin-bottom: 1rem;
}

.contact-card-body .contact-line i,
.info-card-body .contact-line i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,76,129,.08);
    color: var(--primary);
}

.map-placeholder {
    border-radius: 24px;
    min-height: 280px;
    background: linear-gradient(135deg, #102f4d, #2d6ca3);
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-band {
    padding: 0 0 0;
    position: relative;
    z-index: 2;
}

.cta-band-card {
    background: linear-gradient(135deg, #0b2d4a 0%, #123f69 100%);
    border-radius: 30px;
    padding: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: #fff;
    box-shadow: 0 28px 60px rgba(11,45,74,.22);
    transform: translateY(40px);
}

.cta-band-card h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    margin: .6rem 0 .8rem;
}

.cta-band-card p {
    color: rgba(255,255,255,.78);
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.site-footer {
    background: #071927;
    padding: 120px 0 24px;
    color: #fff;
    margin-top: 40px;
}

.site-footer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: .8rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,.74);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    gap: .7rem;
    color: rgba(255,255,255,.74);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 2rem;
    padding-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255,255,255,.62);
}

.footer-bottom a {
    color: rgba(255,255,255,.82);
}

.empty-state {
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 22px;
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .process-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .hero-slide {
        min-height: auto;
        padding: 72px 0;
    }

    .feature-strip {
        margin-top: 0;
        padding-top: 1rem;
    }

    .cta-band-card {
        transform: translateY(0);
        margin-top: 1.5rem;
    }

    .site-footer {
        padding-top: 56px;
    }

    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-band-card,
    .footer-bottom,
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stat {
        min-width: calc(50% - .5rem);
    }

    .hero-copy h1 {
        font-size: 2.25rem;
    }
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    object-fit: contain;
    background: rgba(255,255,255,.08);
    padding: .35rem;
    box-shadow: 0 12px 24px rgba(220, 53, 69, .12);
}

.hero-copy .btn {
    position: relative;
    z-index: 5;
}

.hero-visual img {
    display: block;
}

.service-card.has-image {
    overflow: hidden;
}

.service-card-thumb {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #d9e6f4, #f2f6fb);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    background: rgba(255,255,255,.06);
}

.social-links a:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
}

.site-mobile-nav {
    width: min(84vw, 380px) !important;
    background: linear-gradient(180deg, #0b2d4a 0%, #133e67 100%);
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.08);
}

.site-mobile-nav .offcanvas-header {
    padding: 1.2rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: #fff;
    text-decoration: none;
}

.mobile-brand strong {
    display: block;
    font-size: 1rem;
}

.mobile-brand small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .76rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .35rem;
}

.mobile-nav-list a {
    display: block;
    padding: .9rem 1rem;
    border-radius: 16px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.04);
    font-weight: 600;
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
    color: #fff;
    background: rgba(220,53,69,.18);
}

.mobile-nav-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.78);
    margin-bottom: .7rem;
    font-size: .95rem;
}

.mobile-contact-item a {
    color: inherit;
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-brand strong {
        font-size: .96rem;
    }

    .site-navbar .navbar-brand small {
        font-size: .68rem;
    }
}

/* v1.3 hero slider controls fix */
.hero-carousel {
    position: relative;
    isolation: isolate;
}

.hero-carousel .hero-controls {
    position: absolute;
    inset: 0;
    z-index: 30;
    pointer-events: none;
}

.hero-carousel .hero-controls .carousel-control-prev,
.hero-carousel .hero-controls .carousel-control-next {
    pointer-events: auto;
    opacity: 1;
    z-index: 31;
    cursor: pointer;
    touch-action: manipulation;
}

.hero-carousel .hero-controls .carousel-control-prev-icon,
.hero-carousel .hero-controls .carousel-control-next-icon {
    background-color: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.34);
    box-shadow: 0 18px 38px rgba(0,0,0,.24);
}

.hero-carousel .carousel-indicators {
    z-index: 29;
}

@media (max-width: 991.98px) {
    .hero-carousel .hero-controls .carousel-control-prev,
    .hero-carousel .hero-controls .carousel-control-next {
        width: 56px;
    }

    .hero-carousel .hero-controls .carousel-control-prev-icon,
    .hero-carousel .hero-controls .carousel-control-next-icon {
        width: 42px;
        height: 42px;
    }
}


.location-page-intro{max-width:920px;margin:0 auto 2.5rem;text-align:center}
.location-card{height:100%;border:1px solid rgba(11,35,56,.08);border-radius:24px;background:#fff;box-shadow:0 18px 40px rgba(8,24,39,.06);padding:1.6rem;transition:transform .2s ease,box-shadow .2s ease}
.location-card:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(8,24,39,.09)}
.location-card h3{font-size:1.28rem;margin-bottom:.65rem}
.location-card p{color:#586575;margin-bottom:1rem}
.location-badges{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.location-badge{display:inline-flex;align-items:center;gap:.35rem;padding:.45rem .8rem;border-radius:999px;background:#f3f6fa;color:#0b2338;font-size:.9rem;font-weight:600}
.location-chip-grid{display:flex;flex-wrap:wrap;gap:.65rem}
.location-chip{display:inline-flex;align-items:center;gap:.45rem;padding:.65rem .95rem;border-radius:999px;background:#fff;border:1px solid rgba(11,35,56,.1);color:#0b2338;text-decoration:none;font-weight:600;transition:all .2s ease}
.location-chip:hover{background:#0b2338;color:#fff;border-color:#0b2338}
.location-districts-accordion .accordion-item{border:1px solid rgba(11,35,56,.08);border-radius:18px;overflow:hidden;margin-bottom:1rem}
.location-districts-accordion .accordion-button{font-weight:700;background:#fff}
.location-districts-accordion .accordion-button:not(.collapsed){background:#f6f9fc;color:#0b2338;box-shadow:none}
.location-sidebar-card,.location-content-card{border:1px solid rgba(11,35,56,.08);border-radius:24px;background:#fff;box-shadow:0 18px 40px rgba(8,24,39,.06);padding:1.6rem}
.location-content-card h2{font-size:1.55rem;margin-bottom:1rem}
.location-content-card p,.location-content-card li{color:#516170}
.location-feature-list{display:grid;gap:.85rem;padding:0;margin:0;list-style:none}
.location-feature-list li{display:flex;gap:.75rem;align-items:flex-start}
.location-feature-list i{color:#d62839;font-size:1.05rem;line-height:1.4}
.location-cta-band{border-radius:24px;background:linear-gradient(135deg,#0b2338 0%,#153d63 55%,#d62839 160%);padding:1.7rem;color:#fff;box-shadow:0 24px 52px rgba(8,24,39,.16)}
.location-cta-band p{color:rgba(255,255,255,.8);margin-bottom:0}
.location-faq .accordion-item{border:1px solid rgba(11,35,56,.08);border-radius:18px;overflow:hidden;margin-bottom:.9rem}
.location-faq .accordion-button{font-weight:700;box-shadow:none}
.location-breadcrumb-note{display:inline-flex;align-items:center;gap:.55rem;padding:.6rem 1rem;border-radius:999px;background:#f6f9fc;color:#0b2338;font-weight:600;margin-bottom:1rem}
.location-meta-list{display:grid;gap:.85rem;padding:0;margin:0;list-style:none}
.location-meta-list li{display:flex;align-items:flex-start;gap:.75rem;color:#516170}
.location-meta-list i{color:#d62839}
@media (max-width: 991.98px){.location-card,.location-sidebar-card,.location-content-card{padding:1.25rem}.location-chip{font-size:.92rem}}

.location-directory-shell{margin-bottom:3rem}
.location-directory-intro{padding:2rem}
.location-directory-intro-copy{font-size:1.02rem;line-height:1.85;color:#495867}
.location-directory-side{position:relative;overflow:hidden}
.location-directory-side::before{content:"";position:absolute;inset:auto -20% -35% auto;width:240px;height:240px;border-radius:50%;background:radial-gradient(circle,rgba(214,40,57,.15),rgba(214,40,57,0) 68%)}
.location-directory-side > *{position:relative}
.location-stat-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-top:1.5rem}
.location-stat-card{border:1px solid rgba(11,35,56,.08);border-radius:24px;background:linear-gradient(180deg,#fff 0%,#f7fafd 100%);box-shadow:0 18px 40px rgba(8,24,39,.06);padding:1.15rem}
.location-stat-card span{display:block;font-size:.86rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#6d7a89;margin-bottom:.35rem}
.location-stat-card strong{display:block;font-size:2rem;line-height:1.05;color:#0b2338;margin-bottom:.4rem}
.location-stat-card p{margin:0;color:#556575}
.location-directory-card{height:100%;display:flex;flex-direction:column;border:1px solid rgba(11,35,56,.08);border-radius:28px;background:linear-gradient(180deg,#fff 0%,#f7fafc 100%);box-shadow:0 18px 40px rgba(8,24,39,.06);padding:1.55rem;transition:transform .2s ease,box-shadow .2s ease}
.location-directory-card:hover{transform:translateY(-4px);box-shadow:0 24px 52px rgba(8,24,39,.1)}
.location-directory-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:.95rem}
.location-directory-card h3{font-size:1.28rem;margin-bottom:0}
.location-directory-card p{color:#556575;margin-bottom:1rem}
.location-directory-count{display:inline-flex;align-items:center;justify-content:center;padding:.55rem .9rem;border-radius:999px;background:#f2f6fb;color:#0b2338;font-weight:700;font-size:.9rem;white-space:nowrap}
.location-directory-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-top:auto}
.location-section-header{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.location-article-card{padding:2rem}
.location-title-wrap h2{font-size:1.82rem;margin-bottom:1rem}
.location-seo-copy p{font-size:1.03rem;line-height:1.9;color:#445465;margin-bottom:1.1rem}
.location-seo-copy p:last-child{margin-bottom:0}
.location-service-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.location-service-card{height:100%;border:1px solid rgba(11,35,56,.08);border-radius:24px;background:linear-gradient(180deg,#fff 0%,#f7fafd 100%);padding:1.25rem;box-shadow:0 16px 36px rgba(8,24,39,.05)}
.location-service-card h3{font-size:1.08rem;margin-bottom:.6rem}
.location-service-card p{margin:0;color:#556575;line-height:1.75}
.location-service-icon{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:18px;background:#0b2338;color:#fff;font-size:1.15rem;margin-bottom:1rem}
.location-process-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.location-process-step{position:relative;border:1px solid rgba(11,35,56,.08);border-radius:24px;background:#fff;padding:1.35rem 1.25rem 1.25rem;box-shadow:0 16px 36px rgba(8,24,39,.05)}
.location-process-step h3{font-size:1.05rem;margin-bottom:.55rem}
.location-process-step p{margin:0;color:#556575;line-height:1.75}
.location-process-no{display:inline-flex;align-items:center;justify-content:center;min-width:48px;padding:.45rem .85rem;border-radius:999px;background:#f2f6fb;color:#d62839;font-weight:800;font-size:.95rem;margin-bottom:1rem}
.location-sticky-col{position:sticky;top:112px}
.location-sidebar-count{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;padding:0 .8rem;border-radius:999px;background:#0b2338;color:#fff;font-weight:800}
.location-neighborhood-list{display:grid;gap:.75rem;max-height:560px;overflow:auto;padding-right:.25rem}
.location-neighborhood-link{display:flex;align-items:flex-start;justify-content:space-between;gap:.8rem;padding:1rem 1rem;border-radius:20px;border:1px solid rgba(11,35,56,.08);background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);color:#0b2338;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.location-neighborhood-link:hover{transform:translateY(-2px);border-color:rgba(214,40,57,.28);box-shadow:0 16px 32px rgba(8,24,39,.08);color:#0b2338}
.location-neighborhood-link.is-active{background:linear-gradient(135deg,#0b2338 0%,#153d63 100%);color:#fff;border-color:transparent;box-shadow:0 18px 40px rgba(8,24,39,.18)}
.location-neighborhood-main{display:flex;flex-direction:column;gap:.18rem}
.location-neighborhood-main strong{font-size:1rem;line-height:1.4}
.location-neighborhood-main small{color:#6b7989;font-size:.85rem;line-height:1.4}
.location-neighborhood-link.is-active .location-neighborhood-main small{color:rgba(255,255,255,.76)}
.location-neighborhood-link i{font-size:1.15rem;color:#d62839;line-height:1.2}
.location-neighborhood-link.is-active i{color:#fff}
.location-sidebar-card .section-kicker{display:inline-flex}
@media (max-width: 1199.98px){.location-sticky-col{position:static}}
@media (max-width: 991.98px){.location-stat-grid,.location-service-grid,.location-process-grid{grid-template-columns:1fr}.location-directory-intro,.location-article-card,.location-sidebar-card,.location-content-card{padding:1.4rem}.location-directory-card{padding:1.3rem}}
@media (max-width: 767.98px){.location-directory-card-head,.location-directory-footer,.location-section-header{flex-direction:column;align-items:flex-start}.location-stat-card strong{font-size:1.7rem}.location-neighborhood-list{max-height:none}}


.service-overview-card{border:1px solid rgba(11,35,56,.08);border-radius:28px;background:linear-gradient(180deg,#fff 0%,#f7fafc 100%);box-shadow:0 18px 40px rgba(8,24,39,.06);padding:2rem}
.service-overview-side{border:1px solid rgba(11,35,56,.08);border-radius:24px;background:#fff;padding:1.4rem;box-shadow:0 14px 32px rgba(8,24,39,.05)}
.service-mini-list{display:grid;gap:.8rem;padding:0;margin:0;list-style:none}
.service-mini-list li{position:relative;padding-left:1.4rem;color:#516170;line-height:1.75}
.service-mini-list li::before{content:"";position:absolute;left:0;top:.72rem;width:.5rem;height:.5rem;border-radius:50%;background:#d62839}
.service-card-pro{display:flex;flex-direction:column}
.service-card-points{display:grid;gap:.5rem;padding:0;margin:1rem 0 0;list-style:none}
.service-card-points li{position:relative;padding-left:1.25rem;color:#516170;font-size:.95rem;line-height:1.65}
.service-card-points li::before{content:"";position:absolute;left:0;top:.65rem;width:.45rem;height:.45rem;border-radius:50%;background:#0b2338}
.service-cta-card{display:flex;align-items:center;justify-content:space-between;gap:1.2rem;flex-wrap:wrap;border:1px solid rgba(11,35,56,.08);border-radius:28px;background:linear-gradient(135deg,#fff 0%,#f7fafc 100%);padding:1.8rem 2rem;box-shadow:0 18px 40px rgba(8,24,39,.06)}
.service-cta-card h3{font-size:1.4rem;margin-bottom:.45rem}
.service-detail-shell{border-radius:28px}
.service-detail-thumb{max-height:420px;object-fit:cover}
.service-detail-body .icon{width:72px;height:72px;display:inline-flex;align-items:center;justify-content:center;border-radius:22px;background:rgba(220,53,69,.1);color:#d62839;font-size:1.85rem}
.service-badge{display:inline-flex;align-items:center;justify-content:center;padding:.55rem .95rem;border-radius:999px;background:#f2f6fb;color:#0b2338;font-weight:700;font-size:.9rem}
.service-detail-summary{color:#556575;font-size:1rem}
.service-detail-copy p{font-size:1.03rem;line-height:1.9;color:#445465;margin-bottom:1.05rem}
.service-benefit-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.service-benefit-card{border:1px solid rgba(11,35,56,.08);border-radius:24px;background:linear-gradient(180deg,#fff 0%,#f7fafd 100%);padding:1.25rem;box-shadow:0 16px 36px rgba(8,24,39,.05)}
.service-benefit-card h3{font-size:1.08rem;margin-bottom:.6rem}
.service-benefit-card p{margin:0;color:#556575;line-height:1.75}
.service-process-grid-alt{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.service-process-card{border:1px solid rgba(11,35,56,.08);border-radius:24px;background:#fff;padding:1.35rem 1.25rem;box-shadow:0 16px 36px rgba(8,24,39,.05)}
.service-process-card h3{font-size:1.05rem;margin-bottom:.55rem}
.service-process-card p{margin:0;color:#556575;line-height:1.75}
.service-faq .accordion-item{border:1px solid rgba(11,35,56,.08);border-radius:18px;overflow:hidden;margin-bottom:.9rem}
.service-faq .accordion-button{font-weight:700;box-shadow:none}
.location-trust-card{height:100%;border:1px solid rgba(11,35,56,.08);border-radius:24px;background:linear-gradient(180deg,#fff 0%,#f7fafd 100%);padding:1.3rem;box-shadow:0 16px 36px rgba(8,24,39,.05)}
.location-trust-card h3{font-size:1.08rem;margin-bottom:.6rem}
.location-trust-card p{margin:0;color:#556575;line-height:1.75}
@media (max-width: 991.98px){.service-overview-card,.service-cta-card{padding:1.4rem}.service-benefit-grid,.service-process-grid-alt{grid-template-columns:1fr}}
@media (max-width: 767.98px){.service-cta-card{align-items:flex-start}.service-detail-body .icon{width:64px;height:64px;font-size:1.65rem}}


/* v1.13.1 hard hero navigation fix */
.hero-carousel {
    position: relative;
    isolation: isolate;
}

.hero-nav-shell {
    position: absolute;
    inset: 0;
    z-index: 70;
    pointer-events: none;
}

.hero-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    background: rgba(8, 28, 45, .28);
    color: #fff;
    box-shadow: 0 20px 42px rgba(0,0,0,.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto !important;
    z-index: 71;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hero-nav-button:hover,
.hero-nav-button:focus-visible {
    transform: translateY(-50%) scale(1.06);
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.48);
    box-shadow: 0 24px 48px rgba(0,0,0,.30);
    outline: none;
}

.hero-nav-button i {
    font-size: 1.38rem;
    line-height: 1;
    pointer-events: none;
}

.hero-nav-prev {
    left: clamp(10px, 2vw, 28px);
}

.hero-nav-next {
    right: clamp(10px, 2vw, 28px);
}

@media (max-width: 991.98px) {
    .hero-nav-button {
        width: 52px;
        height: 52px;
    }

    .hero-nav-button i {
        font-size: 1.1rem;
    }
}

/* v1.13.1 click-layer reinforcement */
.hero-nav-button{pointer-events:auto !important;z-index:90 !important;}
.hero-nav-shell{display:block !important;pointer-events:none !important;}

/* Stretched-link click layer fix */
.service-card,
.reference-card,
.blog-card {
    position: relative !important;
    isolation: isolate !important;
    z-index: 1 !important;
}

.service-card .stretched-link,
.reference-card .stretched-link,
.blog-card .stretched-link {
    position: static !important;
}

.service-card .stretched-link::after,
.reference-card .stretched-link::after,
.blog-card .stretched-link::after {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

.service-card-body,
.reference-card-body,
.blog-card-body {
    position: relative !important;
    z-index: 3 !important;
}

.service-card .icon,
.service-card h3,
.service-card p,
.reference-card h3,
.reference-card p,
.blog-card h3,
.blog-card p,
.blog-meta,
.metric-pill {
    position: relative !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* Slider ve header katmanını kart linklerinden bağımsız tut */
.topbar,
.site-navbar {
    position: relative !important;
    z-index: 1000 !important;
    isolation: isolate !important;
}

.hero-carousel {
    position: relative !important;
    z-index: 10 !important;
    isolation: isolate !important;
}

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel .hero-slide {
    position: relative !important;
}

.hero-carousel .hero-controls {
    z-index: 80 !important;
    pointer-events: none !important;
}

.hero-carousel .hero-controls .hero-nav,
.hero-carousel [data-hero-control] {
    position: absolute !important;
    z-index: 90 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}