:root {
    --navy: #223669;
    --navy-dark: #132248;
    --blue: #2581c4;
    --blue-soft: #eaf6ff;
    --orange: #f6a119;
    --orange-dark: #dc8500;
    --ink: #16213b;
    --muted: #64718a;
    --line: #dce6f1;
    --surface: #ffffff;
    --soft: #f5f9fd;
    --whatsapp: #25d366;
    --shadow-sm: 0 8px 28px rgba(25, 50, 91, 0.08);
    --shadow-lg: 0 24px 70px rgba(19, 34, 72, 0.16);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 34px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

body.is-loading {
    overflow: hidden;
}

.site-preloader {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    color: var(--navy);
    background:
        radial-gradient(circle at center, rgba(37, 129, 196, 0.1), transparent 34%),
        #fff;
    transition: opacity 400ms ease, visibility 400ms ease;
}

.site-preloader::after {
    width: 110px;
    height: 3px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--orange) 0 45%, #dbe6f2 45% 100%);
    background-size: 220% 100%;
    border-radius: 999px;
    content: "";
    animation: preloaderBar 900ms ease-in-out infinite;
}

.site-preloader.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.preloader-logo {
    display: grid;
    width: 142px;
    height: 142px;
    padding: 17px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    place-items: center;
    animation: preloaderLogo 1.15s cubic-bezier(.22, .75, .32, 1) infinite alternate;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-preloader > span {
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes preloaderLogo {
    from { transform: rotate(-14deg) scale(0.82); }
    to { transform: rotate(346deg) scale(1.06); }
}

@keyframes preloaderBar {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

::selection {
    color: #fff;
    background: var(--blue);
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 5vw, 5rem);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.27rem;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
}

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #8bd0ff;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(246, 161, 25, 0.65);
    outline-offset: 3px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #176da9);
    box-shadow: 0 13px 30px rgba(37, 129, 196, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 17px 36px rgba(37, 129, 196, 0.34);
}

.btn-secondary {
    color: var(--navy);
    background: #fff;
    border-color: #c8d7e8;
}

.btn-secondary:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.btn-white {
    color: var(--navy);
    background: #fff;
}

.btn-outline-white {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline-white:hover {
    border-color: #fff;
}

.btn-ghost {
    color: var(--navy);
    background: transparent;
    border-color: var(--line);
}

.btn-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 800;
}

.text-link .icon {
    transition: transform 180ms ease;
}

.text-link:hover .icon {
    transform: translateX(4px);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(34, 54, 105, 0.08);
    backdrop-filter: blur(14px);
}

.topbar {
    color: #e7f4ff;
    background: var(--navy-dark);
    font-size: 0.84rem;
}

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

.topbar a,
.topbar-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar a:hover {
    color: #fff;
}

.topbar .icon {
    color: var(--orange);
}

.navbar-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: 172px;
    flex: 0 0 172px;
    align-items: center;
}

.brand img {
    width: 100%;
    height: 68px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 0.93rem;
    font-weight: 750;
}

.site-nav > a:not(.nav-call),
.nav-dropdown > button {
    position: relative;
    padding: 12px 0;
}

.site-nav > a:not(.nav-call)::after,
.nav-dropdown > button::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after,
.nav-dropdown > button:hover::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: inherit;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 11px);
    left: 50%;
    display: grid;
    width: 245px;
    padding: 10px;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translate(-50%, 9px);
    transition: 160ms ease;
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 9px;
}

.dropdown-menu a:hover {
    color: var(--blue);
    background: var(--blue-soft);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-call {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 10px 17px;
    color: #fff;
    background: var(--navy);
    border-radius: 999px;
}

.nav-call:hover {
    background: var(--blue);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle .icon {
    width: 25px;
    height: 25px;
}

.nav-close {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(37, 129, 196, 0.12), transparent 27%),
        radial-gradient(circle at 91% 25%, rgba(246, 161, 25, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.hero::before {
    position: absolute;
    top: 12%;
    right: -120px;
    width: 420px;
    height: 420px;
    background-image: radial-gradient(rgba(37, 129, 196, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    content: "";
    transform: rotate(10deg);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 620px;
    align-items: center;
    grid-template-columns: 1.06fr 0.94fr;
    gap: clamp(50px, 8vw, 110px);
    padding-block: 76px 88px;
}

.hero-inner .hero-grid {
    min-height: 520px;
    padding-block: 58px 72px;
}

.hero-inner h1 {
    font-size: clamp(2.4rem, 4.4vw, 4.4rem);
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 31px;
    color: var(--muted);
    font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 28px;
    color: #4f5f79;
    font-size: 0.88rem;
    font-weight: 700;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-row .icon {
    color: var(--blue);
}

.hero-visual {
    position: relative;
    max-width: 480px;
    justify-self: end;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #dceaf6;
    border: 10px solid #fff;
    border-radius: 42px 42px 140px 42px;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(19, 34, 72, 0.16));
    content: "";
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 37px;
    left: -43px;
    display: grid;
    min-width: 175px;
    padding: 17px 21px;
    color: #fff;
    background: var(--navy);
    border: 5px solid #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.hero-badge strong {
    color: var(--orange);
    font-size: 1.18rem;
}

.hero-badge span {
    font-size: 0.82rem;
}

.section {
    padding-block: 92px;
}

.section-soft {
    background: var(--soft);
}

.section-navy {
    color: #dcecff;
    background:
        radial-gradient(circle at 95% 10%, rgba(37, 129, 196, 0.32), transparent 32%),
        var(--navy-dark);
}

.section-navy h2,
.section-navy h3 {
    color: #fff;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.split-heading {
    display: grid;
    max-width: none;
    align-items: end;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 50px;
}

.split-heading > p {
    margin-bottom: 4px;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    position: relative;
    display: flex;
    min-height: 285px;
    flex-direction: column;
    padding: 28px 23px 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
    position: absolute;
    right: -34px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    background: var(--blue-soft);
    border-radius: 50%;
    content: "";
}

.service-card:hover {
    border-color: rgba(37, 129, 196, 0.38);
    box-shadow: 0 18px 42px rgba(25, 50, 91, 0.13);
    transform: translateY(-6px);
}

.service-card-icon,
.value-icon {
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 16px;
}

.service-card-icon .icon,
.value-icon .icon {
    width: 29px;
    height: 29px;
}

.service-card h3 {
    font-size: 1.14rem;
}

.service-card p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.91rem;
}

.service-card .text-link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-size: 0.87rem;
}

.feature-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(45px, 8vw, 100px);
}

.feature-layout > div:first-child {
    max-width: 680px;
}

.feature-layout p {
    color: #b9c9dd;
}

.check-list {
    display: grid;
    gap: 13px;
    margin-top: 27px;
}

.check-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
}

.check-list .icon {
    color: var(--orange);
}

.check-list.dark span {
    color: var(--ink);
}

.feature-image {
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
    border: 9px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px 34px 100px 34px;
}

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

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

.process-card {
    position: relative;
    padding: 27px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.process-card > span {
    display: inline-grid;
    width: 45px;
    height: 45px;
    margin-bottom: 28px;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.process-card:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 49px;
    right: -30px;
    width: 38px;
    height: 2px;
    background: var(--orange);
    content: "";
}

.process-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.region-callout {
    background: linear-gradient(135deg, #eef8ff 0%, #fff8eb 100%);
}

.region-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
}

.region-grid > div:first-child {
    max-width: 570px;
}

.region-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.region-badges span {
    padding: 17px 19px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(37, 129, 196, 0.18);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
}

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

.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #dce6f1;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-item figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 11px 13px;
    color: #fff;
    background: rgba(19, 34, 72, 0.78);
    border-radius: 11px;
    font-size: 0.76rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.content-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(45px, 8vw, 100px);
}

.content-grid > div:first-child > p:not(.eyebrow) {
    color: #4f5f79;
    font-size: 1.05rem;
}

.info-card,
.address-card {
    padding: 30px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.info-card h3 {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.icon-list,
.footer-contact,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.icon-list {
    display: grid;
    gap: 22px;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.icon-list > li > .icon {
    margin-top: 3px;
    color: var(--blue);
}

.icon-list span {
    display: grid;
    color: var(--muted);
}

.icon-list strong {
    color: var(--ink);
}

.icon-list a {
    color: var(--blue);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-grid article {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.value-grid p {
    color: var(--muted);
}

.split-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.split-cta > div {
    max-width: 730px;
}

.quote-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.quote-card > img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.quote-card > div {
    padding: 25px;
}

.quote-card p {
    color: var(--muted);
}

.notice {
    margin-top: 30px;
    padding: 20px 22px;
    background: #fff8eb;
    border: 1px solid #f1d59e;
    border-left: 4px solid var(--orange);
    border-radius: 12px;
}

.notice strong {
    color: var(--navy);
}

.notice p {
    margin: 4px 0 0;
    font-size: 0.93rem !important;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.related-card {
    display: grid;
    min-height: 120px;
    align-items: center;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    grid-template-columns: 45px 1fr auto;
    gap: 14px;
    transition: 180ms ease;
}

.related-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.related-card > span {
    display: grid;
    width: 45px;
    height: 45px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 12px;
    place-items: center;
}

.related-card > span .icon {
    width: 25px;
    height: 25px;
}

.related-card > .icon {
    color: var(--blue);
}

.district-grid {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.district-grid li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.district-grid > li > .icon {
    color: var(--orange);
}

.district-grid span {
    display: grid;
}

.district-grid small {
    color: var(--muted);
}

.section-note {
    margin-top: 25px;
    color: var(--muted);
}

.wide-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 31px;
    background: linear-gradient(135deg, var(--blue-soft), #fff8ea);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.wide-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.faq-section {
    background: var(--soft);
}

.faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(45px, 8vw, 100px);
}

.faq-intro {
    position: sticky;
    top: 150px;
}

.faq-intro p:not(.eyebrow) {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
    border-color: rgba(37, 129, 196, 0.35);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 21px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 50%;
    font-size: 1.2rem;
    place-items: center;
    transition: transform 180ms ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 21px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
}

.faq-directory {
    background: var(--soft);
}

.faq-search-card {
    margin-bottom: 28px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-search label {
    display: block;
    margin-bottom: 11px;
    color: var(--navy);
    font-weight: 800;
}

.faq-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
}

.search-input-wrap {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 11px;
    padding: 0 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.search-input-wrap:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 129, 196, 0.12);
}

.search-input-wrap .icon {
    color: var(--blue);
}

.search-input-wrap input {
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
}

.search-status {
    margin: 12px 4px 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.faq-list-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.faq-list-wide .faq-item[hidden] {
    display: none;
}

.empty-state {
    padding: 50px 30px;
    text-align: center;
}

.empty-state p {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
    gap: 55px;
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-cards > a {
    display: grid;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    grid-template-columns: 52px 1fr auto;
    gap: 16px;
    transition: 180ms ease;
}

.contact-cards > a:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.contact-cards > a > span {
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 14px;
    place-items: center;
}

.contact-cards > a > span .icon {
    width: 26px;
    height: 26px;
}

.contact-cards > a > .icon {
    color: var(--blue);
}

.contact-cards div {
    display: grid;
}

.contact-cards small {
    color: var(--blue);
    font-weight: 800;
}

.contact-cards strong {
    font-size: 1.12rem;
}

.contact-cards p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.address-card address {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 1.06rem;
    font-style: normal;
    font-weight: 700;
}

.address-card > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-tip {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.contact-tip ul {
    display: grid;
    margin: 10px 0 0;
    padding-left: 20px;
    gap: 5px;
    color: var(--muted);
}

.cta-band {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--navy));
}

.cta-band-inner {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    padding-block: 55px;
}

.cta-band-inner > div:first-child {
    max-width: 760px;
}

.cta-band h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer {
    color: #afbdd2;
    background: #0f1a38;
}

.footer-grid {
    display: grid;
    padding-block: 70px;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 1.2fr;
    gap: 48px;
}

.footer-brand img {
    width: 180px;
    height: 96px;
    padding: 8px;
    background: #fff;
    border-radius: 15px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 20px;
}

.site-footer h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer li + li {
    margin-top: 9px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-social a {
    display: grid;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    place-items: center;
}

.footer-social a:hover {
    background: var(--blue);
}

.footer-contact {
    display: grid;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .icon {
    margin-top: 3px;
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #fff;
    font-weight: 800;
}

.floating-actions {
    position: fixed;
    z-index: 1200;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.floating-actions a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(11, 27, 53, 0.24);
    font-size: 0.86rem;
    font-weight: 900;
    transition: transform 180ms ease;
}

.floating-actions a:hover {
    transform: translateY(-3px);
}

.floating-call {
    background: var(--navy);
}

.floating-whatsapp {
    background: var(--whatsapp);
}

@media (max-width: 1120px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        z-index: 1001;
        top: 126px;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(88vw, 390px);
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 22px;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: -20px 30px 60px rgba(19, 34, 72, 0.18);
        opacity: 0;
        transform: translateX(100%);
        transition: 200ms ease;
    }

    .site-nav.open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .site-nav > a:not(.nav-call),
    .nav-dropdown > button {
        width: 100%;
        padding: 13px 10px;
        text-align: left;
    }

    .site-nav > a:not(.nav-call)::after,
    .nav-dropdown > button::after {
        display: none;
    }

    .nav-dropdown > button {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 6px 0 6px 13px;
        visibility: visible;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: grid;
        transform: none;
    }

    .nav-call {
        margin-top: 12px;
    }

    .nav-toggle[aria-expanded="true"] .nav-open {
        display: none;
    }

    .nav-toggle[aria-expanded="true"] .nav-close {
        display: block;
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .topbar-location {
        display: none;
    }

    .hero-grid,
    .feature-layout,
    .region-grid,
    .content-grid,
    .faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 50px;
        padding-block: 60px 80px;
    }

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

    .hero-visual {
        width: min(88%, 470px);
        justify-self: center;
    }

    .hero-badge {
        left: -25px;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-card:not(:last-child)::after {
        display: none;
    }

    .feature-image {
        max-width: 520px;
        justify-self: center;
    }

    .faq-intro {
        position: static;
    }

    .faq-list-wide {
        grid-template-columns: 1fr;
    }

    .cta-band-inner,
    .split-cta,
    .wide-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .district-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar-inner {
        min-height: 42px;
    }

    .topbar a:last-child {
        display: none;
    }

    .navbar-inner {
        min-height: 76px;
    }

    .brand {
        width: 143px;
        flex-basis: 143px;
    }

    .brand img {
        height: 58px;
    }

    .site-nav {
        top: 118px;
    }

    h1 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .hero-grid,
    .hero-inner .hero-grid {
        min-height: auto;
        padding-block: 48px 68px;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-actions,
    .cta-actions .btn {
        width: 100%;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        width: 92%;
    }

    .hero-badge {
        bottom: 20px;
        left: -16px;
        min-width: 150px;
        padding: 13px 16px;
    }

    .section {
        padding-block: 67px;
    }

    .service-grid,
    .service-grid-large,
    .value-grid,
    .related-grid,
    .district-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 245px;
    }

    .process-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 11px;
    }

    .process-card {
        padding: 21px 18px;
    }

    .process-card > span {
        margin-bottom: 19px;
    }

    .gallery-item figcaption {
        right: 7px;
        bottom: 7px;
        left: 7px;
        padding: 8px;
        font-size: 0.68rem;
    }

    .region-badges {
        gap: 9px;
    }

    .region-badges span {
        padding: 14px;
        font-size: 0.88rem;
    }

    .faq-search-row {
        grid-template-columns: 1fr 1fr;
    }

    .search-input-wrap {
        grid-column: 1 / -1;
    }

    .contact-cards > a {
        grid-template-columns: 46px 1fr;
    }

    .contact-cards > a > .icon {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 55px;
    }

    .footer-bottom .container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .floating-actions a {
        min-height: 50px;
        padding-inline: 12px;
        border-width: 2px;
    }

    .cta-band {
        padding-bottom: 68px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
