/* =========================
   Global Reset and Base Styles
========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    color: #08162c;
    background: #f6f8fb;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    z-index: 9999;
    background: #fff;
    padding: 10px;
}

/* =========================
   Header
========================= */
.site-header {
    height: 84px;
    background: rgba(255,255,255,.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 28px rgba(5,25,49,.08);
    transition: .3s;
}

.site-header.shrunk {
    height: 55px;
}

.header-inner {
    height: 100%;
    max-width: 1800px;
    margin: auto;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 225px;
    height: 95px;
    object-fit: contain;
    transition: .3s;
}

.site-header.shrunk .brand img {
    transform: scale(.85);
    transform-origin: left center;
}

/* =========================
   Buttons
========================= */
.premium-btn,.submit-btn {
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(110deg,var(--red),#ff0018,var(--blue));
    padding: 18px 28px;
    box-shadow: 0 12px 35px rgba(237,17,27,.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: .02em;
}

.premium-btn:before,.submit-btn:before {
    content: "";
    position: absolute;
    inset: -50% auto -50% -30%;
    width: 25%;
    transform: skewX(-25deg);
    background: rgba(255,255,255,.45);
    transition: .7s;
}

.premium-btn:hover:before,.submit-btn:hover:before {
    left: 120%;
}

.premium-btn:hover,.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(237,17,27,.34);
}

/* =========================
   Hero Slider
========================= */
.hero {
    position: relative;
    height: var(--hero-h);
    min-height: 620px;
    background: #07182c;
    overflow: hidden;
}

.hero-swiper,.hero-swiper .swiper-wrapper,.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.035);
    transition: transform 6s ease;
}

.swiper-slide-active .hero-image {
    transform: scale(1.11);
}

/* =========================
   Hero Content Overlay
========================= */
.hero-overlay {
    position: absolute;
    z-index: 12;
    right: 0;
    top: 0;
    width: 48%;
    height: 50%;
    padding: 4% 6% 4% 8%;
    background: linear-gradient(100deg,rgba(4,19,38,.70),rgba(4,19,38,.70) 80%,rgba(4,19,38.70));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(18% 0,100% 0,100% 100%,0 100%);
}

.kicker {
    color: var(--red);
    font-weight: 800;
    letter-spacing: .03em;
}

.hero-overlay h1 {
    font: 700 clamp(3rem,5.1vw,6rem)/.95 Oswald,sans-serif;
    text-transform: uppercase;
    margin: 4px 0 6px;
}

.hero-overlay h1 em {
    font-style: normal;
    color: var(--red);
}

.hero-overlay h2 {
    font-size: clamp(1.15rem,2vw,1.75rem);
    margin: 0 0 4px;
}

.short-rule {
    width: 62px;
    height: 3px;
    background: var(--red);
    margin: 6px 0 4px;
}

.hero-message {
    display: none;
}

/* =========================
   Countdown
========================= */
.countdown {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 2px;
}

.countdown div {
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 12px;
    padding: 18px 8px;
    text-align: center;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(8px);
}

.countdown b {
    display: block;
    font: 700 clamp(2rem,3vw,3.2rem)/1 Oswald;
}

.countdown span {
    text-transform: uppercase;
    font-size: .76rem;
}

/* =========================
   Benefits
========================= */
.benefit-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 24px;
}

.benefit-row div {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.23);
    padding: 0 8px;
}

.benefit-row div:last-child {
    border: 0;
}

.benefit-row i {
    font-size: 1.65rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-row b,.benefit-row small {
    display: block;
    font-size: .72rem;
}

.benefit-row small {
    opacity: .78;
    margin-top: 5px;
}

/* =========================
   Slide Copy
========================= */
.slide-copy {
    position: absolute;
    z-index: 5;
    left: 4.5%;
    top: 38%;
    color: #fff;
    text-shadow: 0 3px 18px rgba(0,0,0,.55);
    width: 28%;
}

.slide-copy small {
    color: #ff242e;
    text-transform: uppercase;
    font-weight: 800;
}

.slide-copy strong {
    display: block;
    font: 700 clamp(2.2rem,3.6vw,4.1rem)/1.05 Oswald;
    margin: 12px 0;
}

.slide-copy p {
    font-size: 1.1rem;
}

/* =========================
   Swiper Controls
========================= */
.swiper-button-next,.swiper-button-prev {
    color: #07182c;
    background: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 7px 25px rgba(0,0,0,.25);
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination {
    bottom: 18px!important;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .9;
}

.swiper-pagination-bullet-active {
    background: var(--red);
}

/* =========================
   Category Cards
========================= */
.category-strip {
    position: absolute;
    z-index: 20;
    left: 3.5%;
    bottom: 32px;
    width: 46%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;
}

.category-card {
    border: 2px solid rgba(255,255,255,.8);
    padding: 0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: .25s;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 88px;
    object-fit: cover;
}

.category-card span {
    display: block;
    padding: 9px 4px;
    font-weight: 800;
    font-size: .78rem;
}

.category-card:hover,.category-card.active {
    transform: scale(1.1);
    border-color: var(--red);
    z-index: 2;
}

/* =========================
   Visit and Location
========================= */
.visit {
    padding: 26px 4vw;
    background: #f3f6fa;
}

.visit-card {
    max-width: 1500px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(6,25,47,.1);
}

.visit-info {
    padding: 28px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-info h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.visit-info h2 i {
    color: var(--red);
    font-size: 1.5rem;
    margin-right: 8px;
}

.visit-info strong {
    font-size: 1.25rem;
}

.visit-info address {
    font-style: normal;
    line-height: 1.55;
    margin: 15px 0;
}

.visit-info a {
    display: grid;
    grid-template-columns: 28px minmax(160px,1fr) auto;
    column-gap: 10px;
    color: #07182c;
    text-decoration: none;
    margin: 10px 0;
    align-items: center;
}

.visit-info a i {
    color: var(--blue);
    width: 28px;
    text-align: center;
    font-size: 1.15rem;
}

.visit-info .wa-text i {
    color: #10b957;
}

.visit-info a b {
    text-align: right;
    white-space: nowrap;
}

.directions {
    display: inline-block!important;
    border: 1px solid var(--blue);
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--blue)!important;
}

.map {
    min-height: 250px;
}

.map iframe {
    border: 0;
    width: 100%;
    height: 250px;
    min-height: 250px;
}

/* =========================
   Call to Action
========================= */
.cta-strip {
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 10vw;
    align-items: center;
    padding: 32px 5vw;
}

.cta-strip strong,.cta-strip span {
    display: block;
}

.cta-strip strong {
    font-size: 1.4rem;
}

.cta-strip span {
    color: #6c7a8c;
    margin-top: 5px;
}

/* =========================
   Footer
========================= */
footer {
    min-height: 90px;
    background: var(--navy);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 12px 4vw;
}

footer>img {
    width: 230px;
    height: 85px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

footer p {
    text-align: center;
}

.socials {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.socials a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
}

/* =========================
   WhatsApp Button
========================= */
.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.whatsapp span {
    background: #fff;
    color: #07182c;
    padding: 13px 20px;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.whatsapp span b,.whatsapp span small {
    display: block;
}

.whatsapp>i {
    width: 72px;
    height: 72px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #10b957;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    box-shadow: 0 0 0 0 rgba(16,185,87,.55);
    animation: pulse 2s infinite;
}

/* =========================
   Animations
========================= */
@keyframes pulse {
    70% {
        box-shadow: 0 0 0 18px rgba(16,185,87,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16,185,87,0);
    }
}

/* =========================
   Modal Form
========================= */
.modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-wrap.open {
    display: flex;
}

.modal-shade {
    position: absolute;
    inset: 0;
    background: rgba(3,14,29,.62);
    backdrop-filter: blur(12px);
}

.glass-modal {
    position: relative;
    width: min(520px,95vw);
    max-height: 92vh;
    overflow: auto;
    padding: 30px;
    background: linear-gradient(140deg,rgba(255,255,255,.93),rgba(238,245,255,.78));
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.glass-modal h2 {
    text-align: center;
}

.glass-modal>p {
    text-align: center;
    color: #506077;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 14px;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
}

.glass-modal label {
    display: block;
    font-size: .75rem;
    color: #4f5d70;
}

.glass-modal input,.glass-modal select {
    width: 100%;
    border: 1px solid #dbe2ec;
    border-radius: 8px;
    padding: 13px;
    margin-top: 5px;
    background: #fff;
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.check {
    display: flex!important;
    gap: 8px;
    align-items: flex-start;
    margin: 14px 0;
}

.check input {
    width: auto;
    margin: 2px 0;
}

.submit-btn {
    width: 100%;
    font-size: 1rem;
}

.honeypot {
    position: absolute!important;
    left: -9999px;
}

.glass-modal #formMessage {
    text-align: center;
    font-weight: 700;
}

.glass-modal #formMessage.success {
    color: #07863c;
}

.glass-modal #formMessage.error {
    color: #c10b15;
}

@media (max-width: 1050px) {
    :root {
        --hero-h: 760px;
    }

    .hero-overlay {
        width: 52%;
        padding-left: 8%;
    }

    .category-strip {
        width: 48%;
    }

    .benefit-row {
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }

    .benefit-row div:nth-child(2) {
        border: 0;
    }

    .slide-copy {
        top: 30%;
        width: 35%;
    }

    .visit-card {
        grid-template-columns: 48% 52%;
    }
}

@media (max-width: 760px) {
    .site-header {
        height: 88px;
    }

    .header-inner {
        padding: 0 14px;
    }

    .brand img {
        width: 190px!important;
        height: 62px!important;
    }

    .premium-btn {
        padding: 13px 14px;
        font-size: .72rem;
    }

    .premium-btn i {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 310px;
    }

    .hero-swiper {
        height: 510px;
    }

    .hero-overlay {
        clip-path: none;
        top: 200px;
        width: 100%;
        height: 320px;
        padding: 20px 20px;
        justify-content: flex-start;
        background: linear-gradient(rgba(4,19,38,.80),rgba(4,19,38,.88) 100%);
    }

    .hero-overlay h1 {
        font-size: 3.2rem;
    }

    .hero-message {
        font-size: 1rem;
    }

    .countdown {
        gap: 7px;
    }

    .countdown div {
        padding: 12px 4px;
    }

    .countdown b {
        font-size: 2rem;
    }

    .benefit-row {
        margin-top: 24px;
    }

    .slide-copy {
        left: 22px;
        top: 100px;
        width: 70%;
    }

    .slide-copy strong {
        font-size: 2.6rem;
    }

    .category-strip {
        left: 10px;
        bottom: 8px;
        width: calc(100% - 20px);
        overflow-x: auto;
        display: flex;
        gap: 8px;
    }

    .category-card {
        min-width: 112px;
    }

    .category-card:hover,.category-card.active {
        transform: none;
    }

    .swiper-button-next,.swiper-button-prev {
        display: none;
    }

    .visit {
        padding: 16px;
    }

    .visit-card {
        display: block;
    }

    .visit-info {
        padding: 24px;
    }

    .visit-info a {
        grid-template-columns: 28px 1fr;
    }

    .visit-info a b {
        grid-column: 2;
        text-align: left;
        margin-top: 2px;
    }

    .map iframe {
        height: 230px;
        min-height: 230px;
    }

    .cta-strip {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding-bottom: 95px;
    }

    footer>img {
        margin: auto;
        width: 210px;
        height: 78px;
    }

    .socials {
        justify-content: center;
    }

    .whatsapp span {
        display: none;
    }

    .whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp>i {
        width: 64px;
        height: 64px;
    }

    .two {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none!important;
        transition: none!important;
        scroll-behavior: auto!important;
    }

    .hero-image {
        transform: none!important;
    }
}
