:root {
    --ink: #122033;
    --muted: #627184;
    --line: #d8e2ed;
    --brand: #244a86;
    --brand-strong: #193769;
    --aqua: #09a6cf;
    --amber: #d39a3a;
    --paper: #ffffff;
    --mist: #f4f8fb;
    --shadow: 0 18px 50px rgba(18, 32, 51, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(216, 226, 237, .8);
    backdrop-filter: blur(12px);
}

.top-strip,
.nav-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-left: clamp(18px, 4vw, 56px);
    padding-right: clamp(18px, 4vw, 56px);
}

.top-strip {
    min-height: 38px;
    color: rgba(255, 255, 255, .86);
    background: #10294e;
    font-size: 13px;
}

.top-contact,
.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.social-links a:hover {
    border-color: rgba(126, 227, 247, .72);
    background: rgba(9, 166, 207, .22);
    color: #7ee3f7;
    transform: translateY(-1px);
}

.social-links i {
    line-height: 1;
}

.nav-row {
    min-height: 96px;
}

.brand img {
    display: block;
    width: clamp(142px, 14vw, 180px);
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    color: #26384d;
    font-size: 15px;
    font-weight: 650;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--aqua);
    transition: width .18s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.admin-link {
    color: var(--brand);
}

.nav-cta {
    padding: 10px 14px !important;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    color: #fff;
    overflow: hidden;
}

.hero-slider {
    background: #17335d;
    touch-action: pan-y;
    user-select: none;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 76px);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    z-index: 1;
    transition: opacity .45s ease, transform .55s ease;
    background:
        linear-gradient(90deg, rgba(9, 28, 52, .94), rgba(16, 57, 92, .78) 54%, rgba(8, 91, 116, .34)),
        url("../Images/hero-navigation.svg") center right / cover no-repeat,
        #17335d;
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}

.hero-slider.is-dragging .slide {
    cursor: grabbing;
}

.slide-radar {
    background:
        linear-gradient(90deg, rgba(6, 25, 45, .94), rgba(18, 65, 82, .74) 58%, rgba(211, 154, 58, .28)),
        url("../Images/hero-navigation.svg") center / cover no-repeat,
        #123753;
}

.slide-support {
    background:
        linear-gradient(90deg, rgba(12, 32, 49, .95), rgba(36, 74, 134, .78) 55%, rgba(9, 166, 207, .28)),
        url("../Images/hero-navigation.svg") center right / cover no-repeat,
        #183b68;
}

.hero-inner {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 12px;
    color: #7ee3f7;
    font-size: 14px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1, h2, h3 {
    line-height: 1.08;
    margin: 0;
}

h1 {
    max-width: 780px;
    font-size: clamp(42px, 6vw, 78px);
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
}

h3 {
    font-size: 22px;
}

.hero p {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(18px, 2vw, 22px);
}

.slider-controls {
    position: absolute;
    left: clamp(18px, 5vw, 76px);
    bottom: clamp(22px, 4vw, 42px);
    z-index: 8;
    display: flex;
    gap: 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 50%;
    background: rgba(4, 22, 39, .44);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.slider-arrow span {
    display: block;
    margin-top: -3px;
    font-size: 46px;
    line-height: 1;
}

.slider-arrow:hover,
.slider-arrow:focus {
    border-color: rgba(126, 227, 247, .72);
    background: rgba(9, 166, 207, .34);
    outline: none;
}

.slider-arrow:active {
    transform: translateY(-50%) scale(.96);
}

.slider-arrow-prev {
    left: clamp(16px, 3vw, 34px);
}

.slider-arrow-next {
    right: clamp(16px, 3vw, 34px);
}

.slider-controls button {
    width: 42px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, .38);
    cursor: pointer;
}

.slider-controls button.is-active {
    background: var(--aqua);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 760;
}

.btn-primary {
    background: var(--aqua);
    color: #062133;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, .34);
    color: #fff;
}

.btn-outline {
    border-color: var(--line);
    color: var(--brand);
    background: #fff;
}

.section {
    padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 76px);
}

.section-muted {
    background: var(--mist);
}

.section-head {
    max-width: 780px;
    margin-bottom: 28px;
}

.section-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

.card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 26px rgba(18, 32, 51, .06);
}

.product-card {
    overflow: hidden;
}

.product-card img,
.service-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #e7f2f8;
}

.service-card {
    overflow: hidden;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #314258;
    font-weight: 750;
}

.category-pill.is-active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.card-body {
    padding: 22px;
}

.meta {
    color: var(--aqua);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.card p, .content-flow p {
    color: var(--muted);
}

.feature-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #314258;
}

.info-panel .feature-list {
    color: rgba(255, 255, 255, .9);
}

.info-panel .feature-list li {
    margin: 8px 0;
}

.info-panel .feature-list li::marker {
    color: #7ee3f7;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.info-panel {
    padding: 26px;
    background: #10294e;
    color: #fff;
    border-radius: 8px;
}

.info-panel p {
    color: rgba(255, 255, 255, .78);
}

.detail-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.form-grid {
    display: grid;
    gap: 16px;
}

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

.contact-form .field:last-of-type {
    grid-column: 1 / -1;
}

.contact-form-status {
    margin-bottom: 18px;
}

.captcha-row {
    display: grid;
    grid-template-columns: minmax(92px, max-content) minmax(0, 180px);
    gap: 12px;
    align-items: center;
}

.captcha-row strong {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #e8f7fb;
    color: #0b6277;
}

.field label {
    display: block;
    margin-bottom: 6px;
    color: #314258;
    font-weight: 700;
}

input[type="text"],
input[type="password"],
select,
textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #c8d6e4;
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.map-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #dbeaf2;
}

.map-visual {
    position: relative;
    min-height: clamp(320px, 42vw, 480px);
    background:
        linear-gradient(135deg, rgba(9, 166, 207, .18), transparent 36%),
        linear-gradient(45deg, transparent 44%, rgba(255, 255, 255, .72) 45%, rgba(255, 255, 255, .72) 47%, transparent 48%),
        linear-gradient(-35deg, transparent 42%, rgba(36, 74, 134, .22) 43%, rgba(36, 74, 134, .22) 46%, transparent 47%),
        #eaf3f7;
}

.map-iframe {
    display: block;
    width: 100%;
    min-height: clamp(320px, 42vw, 480px);
    border: 0;
}

.map-visual::before,
.map-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(36, 74, 134, .16);
}

.map-visual::before {
    width: 58%;
    height: 22px;
    left: -8%;
    top: 45%;
    transform: rotate(-12deg);
}

.map-visual::after {
    width: 46%;
    height: 18px;
    right: -4%;
    top: 34%;
    transform: rotate(18deg);
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: min(380px, calc(100% - 36px));
    padding: 24px;
    border-radius: 8px;
    background: #10294e;
    color: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

.map-pin strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.map-pin span {
    color: rgba(255, 255, 255, .78);
}

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

.bank-card {
    border-top: 4px solid var(--amber);
}

.admin-shell {
    min-height: calc(100vh - 82px);
    background: var(--mist);
}

.admin-body {
    background: var(--mist);
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    background: var(--mist);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    padding: 22px 18px;
    background: #0c2031;
    color: #fff;
    box-shadow: 12px 0 34px rgba(12, 32, 49, .14);
}

.admin-main {
    min-width: 0;
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 800;
}

.admin-brand img {
    width: 116px;
    padding: 6px;
    border-radius: 8px;
    background: #fff;
}

.admin-main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.admin-main-nav a,
.admin-main-nav .admin-logout {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 38px;
    width: 100%;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.admin-main-nav a:hover,
.admin-main-nav .admin-logout:hover {
    border-color: rgba(126, 227, 247, .5);
    color: #fff;
    background: rgba(9, 166, 207, .16);
}

.admin-actions {
    margin: 18px 0 22px;
}

.dashboard-grid {
    margin-top: 24px;
}

.admin-section-title {
    margin: 36px 0 0;
    font-size: 28px;
}

.stat-card h3 {
    margin-bottom: 6px;
    font-size: 36px;
}

.stat-card strong {
    display: block;
    margin-top: 12px;
    color: var(--brand);
    font-size: 24px;
}

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

.admin-chart-panel {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.admin-chart-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.visit-chart {
    width: 100%;
    min-height: 360px;
}

.admin-edit-panel {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.admin-edit-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.admin-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px clamp(18px, 5vw, 76px);
    background: #10294e;
    color: #fff;
}

.admin-bar a {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
}

.admin-content {
    padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 76px);
}

.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.table th, .table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-data-table {
    margin-top: 12px;
}

.admin-thumb {
    display: block;
    width: 88px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: var(--mist);
}

.table-actions {
    min-width: 190px;
}

.table-actions .btn {
    margin: 0 6px 6px 0;
}

.btn-small {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 14px;
}

.btn-danger {
    color: #9f1d17;
}

.field-wide {
    grid-column: 1 / -1;
}

.status {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: #e8f7fb;
    color: #0b6277;
}

.status-error {
    background: #fff1f0;
    color: #9f1d17;
}

.field small,
.admin-help {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
}

input[type="file"] {
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid #c8d6e4;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.upload-grid {
    margin: 18px 0 10px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: clamp(22px, 4vw, 48px);
    padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 76px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: #0c2031;
    color: #fff;
}

.site-footer img {
    width: 180px;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
}

.site-footer p {
    max-width: 420px;
    color: rgba(255, 255, 255, .72);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, .76);
}

.footer-contact .btn {
    width: fit-content;
    margin-top: 10px;
}

.social-links-dark a {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
}

.footer-credit {
    display: flex;
    justify-content: center;
    padding: 14px clamp(18px, 5vw, 76px);
    background: #071724;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.footer-credit a {
    color: rgba(255, 255, 255, .84);
    font-weight: 700;
}

.footer-credit a:hover {
    color: #7ee3f7;
}

.mobile-whatsapp {
    display: none;
}

.go-up-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #10294e;
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}

.go-up-button span {
    display: block;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
}

.go-up-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-up-button:hover {
    background: #09a6cf;
    color: #062133;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 18px;
        right: 18px;
        top: 106px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .grid-3, .grid-2, .split, .bank-grid, .contact-form, .site-footer {
        grid-template-columns: 1fr;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
    }

    .hero {
        min-height: 620px;
    }
}

@media (max-width: 640px) {
    .top-strip {
        display: none;
    }

    h1 {
        font-size: 40px;
    }

    .nav-row {
        min-height: 74px;
    }

    .hero {
        min-height: 640px;
    }

    .slide {
        padding: 42px 22px 78px;
    }

    .slider-arrow {
        top: auto;
        bottom: 24px;
        width: 44px;
        height: 44px;
    }

    .slider-arrow span {
        font-size: 36px;
    }

    .slider-arrow-prev {
        left: auto;
        right: 78px;
    }

    .slider-arrow-next {
        right: 22px;
    }

    .slider-controls {
        left: 22px;
        right: 136px;
        bottom: 42px;
    }

    .slider-controls button {
        width: 34px;
    }

    .table {
        display: block;
        overflow-x: auto;
    }

    .mobile-whatsapp {
        position: fixed;
        left: 16px;
        bottom: 16px;
        z-index: 80;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 999px;
        background: #25d366;
        color: #062313;
        font-weight: 800;
        box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    }

    .mobile-whatsapp i {
        color: #fff;
        font-size: 24px;
    }

    .go-up-button {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}
