html {
    scroll-behavior: smooth;
}

body {
    background: #0f172a;
    color: #f8fafc;
}

body {
    animation: page-enter .65s ease both;
}

@keyframes page-enter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.font-display {
    font-family: Poppins, sans-serif;
}

.nav-scrolled {
    background: rgba(15, 23, 42, .97) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
}

.mobile-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height .35s ease, opacity .25s ease, transform .35s ease;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #0f172a;
}

.mobile-panel.open {
    max-height: calc(100dvh - 4.5rem);
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-grid {
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(75px);
    opacity: .22;
    pointer-events: none;
}

.hero-visual-image {
    opacity: 1;
    filter: saturate(1.2) contrast(1.08) brightness(1.12);
    transform: scale(1.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.hero-breathing {
    animation: hero-breathe 12s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
    0% {
        transform: scale(1.03);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1.03);
    }
}

.pulse-dot {
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .55);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
    }
}

.underline-link {
    position: relative;
}

.underline-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: #10b981;
    transition: right .3s ease;
}

.underline-link:hover::after {
    right: 0;
}

.input-error {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 2px rgba(248, 113, 113, .18);
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

#contact>div>.grid>form {
    order: 2;
}

#contact>div>.grid>.space-y-5 {
    order: 1;
}

#contact>div>.grid>.space-y-5>div:first-child {
    box-shadow: 0 24px 60px -30px rgba(37, 99, 235, .55);
}

@media (min-width: 1024px) {
    #contact>div>.grid {
        grid-template-columns: .8fr 1.2fr;
    }
}

article,
.gallery-tile {
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

article:hover,
.gallery-tile:hover {
    transform: translateY(-5px);
}

.gallery-slot {
    min-height: 240px;
    background: #1e293b;
}

.gallery-slot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: center;
}

#reviews blockquote {
    transition: transform .35s ease, border-color .35s ease, background-color .35s ease;
}

#reviews blockquote:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, .45);
    background-color: rgba(255, 255, 255, .08);
}

#reviews blockquote:nth-child(2) {
    transition-delay: .08s;
}

#reviews blockquote:nth-child(3) {
    transition-delay: .16s;
}

#reviews blockquote:nth-child(4) {
    transition-delay: .24s;
}

#reviews blockquote:nth-child(5) {
    transition-delay: .32s;
}

#services article,
main article#weddings,
main article#corporate,
main article#hospitality,
main article#private {
    background-image: none;
}

#about .grid>div {
    min-height: 0;
}

form input,
form textarea,
form select {
    color: #f8fafc !important;
    caret-color: #34d399;
}

form input,
form textarea,
form select {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, .16) !important;
}

form input:focus,
form textarea:focus,
form select:focus {
    background-color: #24344e !important;
    border-color: #3b82f6 !important;
}

form input::placeholder,
form textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

form select option {
    background: #1e293b;
    color: #f8fafc;
}

form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.service-card {
    display: flex;
}

.service-card-inner {
    width: 100%;
}

.service-card-label-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem .8rem;
    border-radius: .75rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.12);
}

.service-card-label--blue {
    background: rgba(37, 99, 235, .12);
    color: #dbeafe;
    border-color: rgba(96, 165, 250, .28);
}

.service-card-label--green {
    background: rgba(16, 185, 129, .12);
    color: #d1fae5;
    border-color: rgba(52, 211, 153, .28);
}

.service-card-media {
    overflow: hidden;
    border-radius: 1.1rem;
    background: #0f172a;
}

.service-card-image {
    display: block;
    width: 100%;
    height: 220px;
    min-height: 220px;
    object-fit: cover;
    border-radius: 1.1rem;
    transition: transform .5s ease, box-shadow .5s ease, filter .5s ease;
    animation: float-soft 8s ease-in-out infinite;
}

.service-card:hover .service-card-image,
.service-card:focus-within .service-card-image,
.gallery-tile:hover img,
.gallery-tile:focus-within img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.06);
}

.service-book-btn {
    margin-top: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    animation: cta-pulse 2.4s ease-in-out infinite;
}

.service-book-btn:hover,
.service-book-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 12px 28px -14px rgba(37, 99, 235, .8);
}

@keyframes cta-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, .22);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
}

@keyframes float-soft {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.network-marquee {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(15, 23, 42, .7);
    border-radius: 1.25rem;
    padding: 1rem 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.network-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    white-space: nowrap;
    animation: marquee-scroll 26s linear infinite;
}

.network-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, .12);
    border: 1px solid rgba(96, 165, 250, .18);
    color: #e2e8f0;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1.25rem;
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.floating-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, .5), 0 14px 35px rgba(16, 185, 129, .3);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: floating-cta 2.2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, .35);
}

.floating-actions a:nth-child(2) {
    background: linear-gradient(135deg, #10b981, #22c55e);
    animation-delay: .2s;
}

.floating-actions a:hover,
.floating-actions a:focus-visible {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, .08), 0 18px 48px rgba(16, 185, 129, .35);
}

@keyframes floating-cta {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .42), 0 12px 30px rgba(16, 185, 129, .22);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0), 0 18px 42px rgba(16, 185, 129, .32);
    }
}

.site-nav { margin: 0 auto; max-width: 80rem; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-brand { display: flex; align-items: center; gap: .7rem; color: #f8fafc; text-decoration: none; line-height: 1.05; }
.site-brand strong, .site-brand small { display: block; }
.site-brand strong { font-family: Poppins, sans-serif; font-size: .95rem; }
.site-brand small { color: #10b981; font-size: .58rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; margin-top: .25rem; }
.site-mark { display: grid; place-items: center; width: 2.65rem; height: 2.65rem; border: 2px solid #2563eb; border-radius: .8rem; background: #111c33; color: #10b981; font: 700 .8rem Poppins, sans-serif; }
.desktop-nav, .desktop-actions { display: flex; align-items: center; gap: 1.25rem; }
.desktop-nav > a, .nav-dropdown summary { color: #cbd5e1; font-size: .86rem; text-decoration: none; cursor: pointer; list-style: none; }
.desktop-nav > a:hover, .nav-dropdown summary:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: '⌄'; color: #10b981; margin-left: .35rem; }
.nav-dropdown-panel { position: absolute; right: -1rem; top: 1.8rem; z-index: 10; display: grid; gap: .2rem; width: 18rem; max-height: 26rem; overflow-y: auto; padding: .65rem; border: 1px solid #dbe4ef; border-radius: 1rem; background: #fff; box-shadow: 0 20px 55px rgba(0,0,0,.25); }
.nav-dropdown-panel b { padding: .55rem .7rem; color: #64748b; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.nav-dropdown-panel a { padding: .55rem .7rem; border-radius: .55rem; color: #1e293b; font-size: .82rem; text-decoration: none; }
.nav-dropdown-panel a:hover { background: #eff6ff; color: #2563eb; }
.nav-call, .nav-whatsapp { padding: .65rem .85rem; border-radius: .7rem; font-size: .8rem; font-weight: 700; text-decoration: none; }
.nav-call { border: 1px solid rgba(255,255,255,.2); color: #fff; }
.nav-whatsapp { background: #10b981; color: #0f172a; }
.menu-button { display: none; border: 0; background: transparent; color: #fff; font-size: 1.3rem; }
.mobile-nav { display: grid; gap: .2rem; padding: .65rem 1.25rem 1.25rem; }
.mobile-nav > a, .mobile-nav summary { padding: .75rem; color: #e2e8f0; text-decoration: none; list-style: none; cursor: pointer; }
.mobile-nav > a:hover, .mobile-nav summary:hover { background: rgba(255,255,255,.06); border-radius: .6rem; }
.mobile-nav details { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav details[open] summary { color: #10b981; }
.mobile-nav details a { display: block; padding: .5rem 1.5rem; color: #94a3b8; font-size: .82rem; text-decoration: none; }
.mobile-nav details a:hover { color: #fff; background: rgba(255,255,255,.05); }
.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; margin-top: .5rem; text-align: center; }
#floating-actions { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40; display: flex; gap: .65rem; }
#floating-actions a { display: grid; place-items: center; width: 2.9rem; height: 2.9rem; border-radius: 999px; color: #0f172a; background: #10b981; box-shadow: 0 8px 24px rgba(0,0,0,.3); text-decoration: none; }
#floating-actions a:first-child { background: #2563eb; color: #fff; }
@media (max-width: 1023px) { .desktop-nav, .desktop-actions { display: none; } .menu-button { display: block; } .site-nav { padding: .85rem 1.25rem; } }