:root {
    --navy: #08182f;
    --navy2: #0a2050;
    --blue: #1253ea;
    --blue2: #0e44c9;
    --blue-l: #eef3ff;
    --sky: #0ea5e9;
    --teal: #0d9488;
    --teal-l: #f0fdf9;
    --gold: #f59e0b;
    --gold-l: #fffbeb;
    --green: #059669;
    --green-l: #ecfdf5;
    --rose: #e11d48;
    --rose-l: #fff1f2;
    --white: #ffffff;
    --bg: #f2f5fc;
    --sur: #ffffff;
    --sur2: #f8faff;
    --bdr: #dce6f8;
    --h: #070f22;
    --b: #192238;
    --m: #4a5f82;
    --l: #94a3b8;
    --f: 'Sora', sans-serif;
    --fm: 'JetBrains Mono', monospace;
    --r: 14px;
    --rsm: 9px;
    --s1: 0 2px 8px rgba(8, 24, 47, .06);
    --s2: 0 6px 24px rgba(8, 24, 47, .1);
    --s3: 0 16px 48px rgba(8, 24, 47, .14);
    --s4: 0 32px 80px rgba(8, 24, 47, .2);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f);
    color: var(--b);
    background: var(--bg);
    overflow-x: hidden;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    background: rgba(8, 24, 47, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 4px 14px rgba(245, 158, 11, .4);
}

.nav-txt {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.3px;
}

.nav-txt span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    margin-left: 24px;
}

.nav-links a {
    padding: 7px 13px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: all .15s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, .09);
}

.nav-right {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.nav-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
}

.nav-btn-out {
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
}

.nav-btn-out:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.nav-btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.nav-btn-gold:hover {
    background: #fbbf24;
    color: var(--navy);
}

@media(max-width:768px) {
    .nav {
        padding: 0 16px;
    }

    .nav-links,
    .nav-btn-out {
        display: none;
    }
}

.page-hero {
    background: linear-gradient(150deg, #060f1e 0%, #0a1f44 50%, #0e3580 100%);
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .2;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: var(--blue);
    top: -150px;
    left: -100px;
    animation: f1 9s ease-in-out infinite;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--sky);
    bottom: -100px;
    right: -80px;
    animation: f2 11s ease-in-out infinite;
}

.orb3 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 40%;
    right: 20%;
    animation: f3 7s ease-in-out infinite;
}

@keyframes f1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes f2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -15px);
    }
}

@keyframes f3 {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(245, 158, 11, .15);
    border: 1px solid rgba(245, 158, 11, .3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.8px;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
}

.page-hero h1 span {
    background: linear-gradient(135deg, var(--gold), #fbbf24);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
}

@media(max-width:768px) {
    .page-hero {
        padding: 110px 20px 60px;
    }

    .page-hero h1 {
        font-size: 34px;
    }
}

.cinfo-strip {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 24px;
    transform: translateY(-40px);
    position: relative;
    z-index: 10;
}

@media(max-width:900px) {
    .cinfo-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .cinfo-strip {
        grid-template-columns: 1fr;
    }
}

.cinfo-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: var(--s3);
    border: 1px solid var(--bdr);
    text-align: center;
    transition: all .22s;
    animation: slideUp .5s ease both;
}

.cinfo-card:nth-child(1) {
    animation-delay: .05s;
}

.cinfo-card:nth-child(2) {
    animation-delay: .1s;
}

.cinfo-card:nth-child(3) {
    animation-delay: .15s;
}

.cinfo-card:nth-child(4) {
    animation-delay: .2s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cinfo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--s4);
}

.cinfo-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    background: var(--ii-bg);
    color: var(--ii-c);
}

.ci-blue {
    --ii-bg: var(--blue-l);
    --ii-c: var(--blue);
}

.ci-gold {
    --ii-bg: var(--gold-l);
    --ii-c: var(--gold);
}

.ci-teal {
    --ii-bg: var(--teal-l);
    --ii-c: var(--teal);
}

.ci-green {
    --ii-bg: var(--green-l);
    --ii-c: var(--green);
}

.cinfo-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--m);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.cinfo-card a,
.cinfo-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--h);
    text-decoration: none;
    line-height: 1.6;
    display: block;
}

.cinfo-card a:hover {
    color: var(--blue);
}

.cinfo-card .sub {
    font-size: 12px;
    color: var(--l);
    font-weight: 400;
    margin-top: 3px;
}

.contact-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: start;
}

@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Form card ── */
.form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--s2);
    border: 1px solid var(--bdr);
    overflow: hidden;
    animation: slideUp .5s ease .25s both;
}

.form-card-hd {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 24px 28px;
}

.form-card-hd h2 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.form-card-hd p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.form-body {
    padding: 28px;
}

.frow {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.fr2 {
    grid-template-columns: 1fr 1fr;
}

@media(max-width:560px) {
    .fr2 {
        grid-template-columns: 1fr;
    }
}

.fld {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fld label {
    font-size: 12px;
    font-weight: 700;
    color: var(--m);
    letter-spacing: .2px;
}

.fld label .req {
    color: var(--rose);
    margin-left: 2px;
}

.finp {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--bdr);
    border-radius: var(--rsm);
    font-size: 13.5px;
    color: var(--b);
    background: #fff;
    outline: none;
    font-family: var(--f);
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}

.finp:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(18, 83, 234, .09);
}

.finp.is-err {
    border-color: var(--rose);
}

textarea.finp {
    height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

select.finp {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.ferr {
    font-size: 11.5px;
    color: var(--rose);
    margin-top: 3px;
}

/* Topic chips */
.topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--bdr);
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--m);
    cursor: pointer;
    transition: all .14s;
}

.tchip:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.tchip.active {
    border-color: var(--blue);
    background: var(--blue-l);
    color: var(--blue);
}

.tchip i {
    font-size: 12px;
}

/* Submit btn */
.sub-btn {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--navy2), var(--blue));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--f);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 20px rgba(18, 83, 234, .3);
    margin-top: 4px;
}

.sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(18, 83, 234, .4);
}

.sub-btn:active {
    transform: translateY(0);
}

.sub-btn.loading .btn-txt {
    display: none;
}

.sub-btn.loading .btn-spin {
    display: block;
}

.btn-spin {
    display: none;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-l);
    color: var(--green);
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 3px solid #a7f3d0;
}

.form-success h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--h);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--m);
    line-height: 1.7;
}

/* ── Info panel ── */
.info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideUp .5s ease .35s both;
}

.info-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--s1);
    border: 1px solid var(--bdr);
}

.info-block-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.info-block-hd .ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: var(--blue-l);
    color: var(--blue);
    flex-shrink: 0;
}

.info-block-hd h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--h);
}

.info-block-hd p {
    font-size: 12px;
    color: var(--m);
}

/* Office hours */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--bg);
}

.hour-day {
    font-size: 13px;
    font-weight: 600;
    color: var(--b);
}

.hour-time {
    font-size: 13px;
    color: var(--m);
    font-family: var(--fm);
}

.hour-row.open .hour-time {
    color: var(--green);
    font-weight: 700;
}

.open-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}

.open-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

/* Map placeholder */
.map-block {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--s1);
    border: 1px solid var(--bdr);
}

.map-wrap {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e8f0fe, #dce6f8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--bdr) 1px, transparent 1px),
        linear-gradient(90deg, var(--bdr) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: .5;
}

.map-pin {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(18, 83, 234, .4);
    position: relative;
    z-index: 2;
}

.map-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 22px;
}

.map-lbl {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--b);
    text-align: center;
    position: relative;
    z-index: 2;
}

.map-lbl small {
    font-size: 11.5px;
    color: var(--m);
    font-weight: 400;
    display: block;
    margin-top: 3px;
}

.map-addr {
    padding: 16px 20px;
    border-top: 1px solid var(--bdr);
}

.map-addr p {
    font-size: 13px;
    color: var(--m);
    line-height: 1.7;
}

.map-addr a {
    color: var(--blue);
    font-weight: 600;
    font-size: 12.5px;
    text-decoration: none;
}

.map-addr a:hover {
    text-decoration: underline;
}

/* Quick links */
.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qlink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--bdr);
    background: #fff;
    text-decoration: none;
    color: var(--b);
    transition: all .15s;
    font-size: 13px;
    font-weight: 600;
}

.qlink:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-l);
}

.qlink i {
    width: 18px;
    text-align: center;
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.soc-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all .15s;
    border: 1.5px solid var(--bdr);
    color: var(--m);
}

.soc-btn:hover {
    transform: translateY(-2px);
}

.soc-wa {
    border-color: #25d366;
    color: #25d366;
}

.soc-wa:hover {
    background: #25d366;
    color: #fff;
}

.soc-fb {
    border-color: #1877f2;
    color: #1877f2;
}

.soc-fb:hover {
    background: #1877f2;
    color: #fff;
}

.soc-li {
    border-color: #0077b5;
    color: #0077b5;
}

.soc-li:hover {
    background: #0077b5;
    color: #fff;
}

.soc-yt {
    border-color: #ff0000;
    color: #ff0000;
}

.soc-yt:hover {
    background: #ff0000;
    color: #fff;
}

.faq-sec {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.faq-hd {
    text-align: center;
    margin-bottom: 40px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: var(--blue-l);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-hd h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--h);
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.faq-hd p {
    font-size: 15px;
    color: var(--m);
}

.faq-item {
    background: #fff;
    border-radius: var(--r);
    border: 1.5px solid var(--bdr);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .15s;
}

.faq-item.open {
    border-color: var(--blue);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--h);
    gap: 12px;
    transition: color .15s;
}

.faq-q:hover {
    color: var(--blue);
}

.faq-ico {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--m);
    flex-shrink: 0;
    transition: all .2s;
}

.faq-item.open .faq-ico {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a-inner {
    padding: 0 22px 18px;
    font-size: 13.5px;
    color: var(--m);
    line-height: 1.8;
    border-top: 1px solid var(--bdr);
}

.footer {
    background: #060f1e;
    color: rgba(255, 255, 255, .6);
    padding: 50px 0 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

@media(max-width:760px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand-txt {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand-txt span {
    color: var(--gold);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 5px;
    transition: color .14s;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-h {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: 13px;
    transition: color .13s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
}

.toast-wrap {
    position: fixed;
    top: 80px;
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    padding: 13px 16px;
    border-radius: 10px;
    box-shadow: var(--s4);
    font-size: 13.5px;
    font-weight: 600;
    transform: translateX(120%);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.toast.show {
    transform: translateX(0);
}

.t-ok {
    background: var(--navy);
    color: #fff;
}

.t-err {
    background: var(--rose-l);
    color: var(--rose);
    border: 1px solid #fecada;
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    opacity: .55;
    color: inherit;
    font-size: 13px;
}