:root {
    --dark: #081C4B;
    --primary: #1A26C4;
    --secondary: #6A11CB;
    --accent: #FF3CAC;
    --ink: #172033;
    --muted: #667085;
    --line: #E6EAF5;
    --soft: #F5F7FF;
    --white: #FFFFFF;
    --success: #16A34A;
    --shadow: 0 22px 60px rgba(8, 28, 75, .12);
    --shadow-soft: 0 14px 38px rgba(8, 28, 75, .09);
    --gradient: linear-gradient(135deg, var(--dark), var(--primary) 52%, var(--secondary));
    --accent-gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 60, 172, .07), transparent 26%),
        radial-gradient(circle at 88% 20%, rgba(26, 38, 196, .08), transparent 28%),
        var(--soft);
}

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

img {
    max-width: 100%;
}

.section {
    padding: 88px 0;
}

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

.section-title {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.eyebrow,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .24);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    backdrop-filter: blur(12px);
}

.eyebrow-dark {
    color: var(--primary);
    background: rgba(26, 38, 196, .08);
    border-color: rgba(26, 38, 196, .12);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-weight: 800;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead-copy,
.subtitle {
    color: var(--muted);
    line-height: 1.8;
}

.btn-main,
.btn-second,
.btn-light-main,
.btn-outline-light-custom,
.btn-nav,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn-main {
    color: var(--white);
    background: var(--accent-gradient);
    box-shadow: 0 14px 30px rgba(26, 38, 196, .24);
}

.btn-main:hover,
.btn-light-main:hover,
.btn-nav:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(8, 28, 75, .2);
}

.btn-second,
.btn-ghost {
    color: var(--primary);
    background: var(--white);
    border: 1px solid rgba(26, 38, 196, .16);
}

.btn-second:hover,
.btn-ghost:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-light-main {
    color: var(--primary);
    background: var(--white);
}

.btn-light-main:hover {
    color: var(--primary);
}

.btn-outline-light-custom {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .52);
    background: rgba(255, 255, 255, .08);
}

.btn-outline-light-custom:hover {
    color: var(--primary);
    background: var(--white);
    transform: translateY(-3px);
}

.site-navbar {
    background: rgba(255, 255, 255, .86);
    border-bottom: 1px solid rgba(230, 234, 245, .88);
    box-shadow: 0 12px 36px rgba(8, 28, 75, .08);
    backdrop-filter: blur(18px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 800;
}

.navbar-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #334155;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 999px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(26, 38, 196, .08);
}

.btn-nav {
    color: var(--white);
    background: var(--gradient);
    min-height: 42px;
    padding: 10px 18px;
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
}

.dropdown-item {
    border-radius: 12px;
    font-weight: 600;
    padding: 10px 14px;
}

.dropdown-item:hover {
    color: var(--primary);
    background: rgba(26, 38, 196, .08);
}

.hero-section,
.page-hero,
.cta-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--gradient);
}

.hero-section::before,
.page-hero::before,
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 100%),
        radial-gradient(circle at 86% 16%, rgba(255, 60, 172, .24), transparent 24%),
        radial-gradient(circle at 16% 82%, rgba(255, 255, 255, .11), transparent 26%);
    background-size: 72px 72px, auto, auto;
    opacity: .95;
}

.hero-section > .container,
.page-hero > .container,
.cta-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section {
    padding: 112px 0 96px;
}

.hero-section h1,
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 1.08;
    margin: 22px 0 22px;
}

.hero-section p,
.page-hero p,
.cta-section p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
    line-height: 1.85;
}

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

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 360px;
}

.hero-glass {
    width: min(430px, 100%);
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
    animation: floatY 4.5s ease-in-out infinite;
}

.hero-glass img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .28));
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.trust-strip {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.trust-item {
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    color: var(--white);
    font-size: 1.6rem;
}

.trust-item span {
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
}

.page-hero {
    padding: 92px 0;
    text-align: center;
}

.page-hero p {
    max-width: 800px;
    margin: 0 auto;
}

.card-premium,
.service-card,
.info-card,
.policy-box,
.link-card,
.contact-card,
.value-card,
.stat-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-soft);
}

.service-card,
.info-card,
.value-card,
.stat-card {
    padding: 32px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.info-card:hover,
.value-card:hover,
.stat-card:hover,
.link-card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 38, 196, .24);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 20px;
    background: var(--accent-gradient);
    font-size: 1.55rem;
    box-shadow: 0 16px 34px rgba(26, 38, 196, .22);
    margin-bottom: 24px;
}

.service-card h3,
.info-card h3,
.value-card h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.service-card p,
.info-card p,
.value-card p,
.policy-box p,
.policy-box li {
    color: var(--muted);
    line-height: 1.8;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    margin-top: 8px;
}

.cta-section {
    padding: 78px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 14px 0;
}

.cta-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.search-panel {
    margin-top: 34px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(16px);
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 18px;
    padding: 0 54px 0 20px;
    font-weight: 600;
    outline: none;
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.filter-btn {
    border: 1px solid rgba(255, 255, 255, .22);
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary);
    background: var(--white);
}

.link-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.link-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.official-badge,
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .78rem;
    font-weight: 800;
}

.official-badge {
    color: #067647;
    background: #ECFDF3;
}

.category-badge {
    color: var(--primary);
    background: rgba(26, 38, 196, .08);
}

.link-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.link-card p {
    color: var(--muted);
    line-height: 1.75;
}

.link-card-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

.download-button-group {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
}

.download-button-group .visit-btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
}

.visit-btn,
.copy-btn {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.visit-btn {
    color: var(--white);
    background: var(--gradient);
}

.visit-btn:hover {
    color: var(--white);
}

.copy-btn {
    color: var(--dark);
    background: #EEF2FF;
    padding: 0 16px;
}

.copy-btn:hover {
    color: var(--white);
    background: var(--primary);
}

.contact-card {
    padding: 30px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-card a {
    color: var(--primary);
    font-weight: 800;
    word-break: break-word;
}

.form-panel,
.hours-panel {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 34px;
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 14px;
    border-color: var(--line);
    padding: 12px 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(26, 38, 196, .55);
    box-shadow: 0 0 0 .2rem rgba(26, 38, 196, .12);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
    border-bottom: 0;
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-button {
    font-weight: 800;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background: var(--primary);
}

.policy-box {
    padding: 34px;
    margin-bottom: 24px;
}

.policy-box h2 {
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.policy-list {
    margin: 0;
    padding-left: 20px;
}

.notice-box {
    border-radius: 24px;
    padding: 30px;
    color: var(--white);
    background: var(--gradient);
    box-shadow: var(--shadow);
}

.notice-box h3,
.notice-box p {
    color: var(--white);
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.stat-card span {
    display: block;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 700;
}

.footer {
    color: rgba(255, 255, 255, .82);
    background: #061735;
    padding: 76px 0 28px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer p {
    line-height: 1.8;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease, padding-left .2s ease;
}

.footer a:hover {
    color: var(--white);
    padding-left: 4px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.footer-social a:hover {
    padding-left: 0;
    background: var(--primary);
}

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

.footer-contact i {
    color: var(--accent);
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.floating-whatsapp,
.scroll-top {
    position: fixed;
    right: 22px;
    z-index: 1040;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 16px 36px rgba(8, 28, 75, .25);
}

.floating-whatsapp {
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    font-size: 1.75rem;
}

.scroll-top {
    bottom: 92px;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.floating-whatsapp:hover,
.scroll-top:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 2000;
    transform: translate(-50%, 120px);
    opacity: 0;
    color: var(--white);
    background: #067647;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 800;
    box-shadow: var(--shadow);
    transition: transform .3s ease, opacity .3s ease;
}

.copy-toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.desktop-only-modal {
    border: 0;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.desktop-only-modal .modal-body {
    padding: 34px;
}

.desktop-only-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 24px;
    background: var(--accent-gradient);
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.desktop-only-modal h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.desktop-only-modal p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.not-found-code {
    color: rgba(255, 255, 255, .22);
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 800;
    line-height: .8;
}

@media (max-width: 991px) {
    .section {
        padding: 68px 0;
    }

    .hero-section,
    .page-hero {
        padding: 78px 0;
        text-align: center;
    }

    .hero-actions,
    .cta-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 36px;
    }

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

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .navbar-nav {
        padding-top: 14px;
    }
}

@media (max-width: 575px) {
    .btn-main,
    .btn-second,
    .btn-light-main,
    .btn-outline-light-custom,
    .btn-ghost {
        width: 100%;
    }

    .link-card-footer {
        grid-template-columns: 1fr;
    }

    .form-panel,
    .hours-panel,
    .policy-box {
        padding: 24px;
        border-radius: 20px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 10px;
    }
}
