:root {
    --bg: #080a0d;
    --bg1: #10141a;
    --bg2: #161c24;
    --bg3: #1c232d;
    --blue: #1a6fff;
    --blue2: #4d8fff;
    --gold: #f0a500;
    --gold2: #ffc84a;
    --fg: #eef1f6;
    --muted: #7a8fa8;
    --dim: #4a5a6e;
    --border: #1e2730;
    --border2: #2a3340;
    --gblue: rgba(26, 111, 255, .25);
    --ggold: rgba(240, 165, 0, .2);
    --fd: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    --fb: 'DM Sans', sans-serif;
    --fc: 'Barlow Condensed', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* FIX 1: scrollbar-gutter prevents layout shift when scrollbar appears/disappears */
html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--fb);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* FIX 4: Lock body scroll when mobile menu is open so scrollbar stays visible */
body.menu-open {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 3px;
}

::selection {
    background: var(--blue);
    color: #fff;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .5;
}

/* CURSOR */
#cur {
    position: fixed;
    width: 11px;
    height: 11px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
}

#ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(26, 111, 255, .4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .32s ease, height .32s ease, border-color .3s;
}

/* FIX 5: Hide custom cursor on touch devices */
@media (pointer: coarse) {
    body {
        cursor: auto;
    }

    #cur,
    #ring {
        display: none;
    }
}

/* UTILS */
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.eye {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fc);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.eye::before,
.eye::after {
    content: '';
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.dtitle {
    font-family: var(--fd);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: .92;
    letter-spacing: .025em;
    color: var(--fg);
}

.dtitle .b {
    color: var(--blue);
}

.dtitle .g {
    color: var(--gold);
}

.sr {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .72s ease, transform .72s ease;
}

.sr-l {
    opacity: 0;
    transform: translateX(-38px);
    transition: opacity .72s ease, transform .72s ease;
}

.sr-r {
    opacity: 0;
    transform: translateX(38px);
    transition: opacity .72s ease, transform .72s ease;
}

.sr.in,
.sr-l.in,
.sr-r.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s;
}

.d2 {
    transition-delay: .16s;
}

.d3 {
    transition-delay: .24s;
}

.d4 {
    transition-delay: .32s;
}

.d5 {
    transition-delay: .40s;
}

.d6 {
    transition-delay: .48s;
}

.d7 {
    transition-delay: .56s;
}

/* ══ NAV ══ */
/* FIX 2: Use sticky so nav stays in document flow and doesn't cause layout jumps */
#nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: padding .4s, background .4s, border-color .4s, backdrop-filter .4s;
    border-bottom: 1px solid transparent;
}

#nav.stuck {
    padding: 13px 0;
    background: rgba(8, 10, 13, .93);
    border-color: var(--border);
    backdrop-filter: blur(18px);
}

.ni {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nlogo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.nlogo:hover .logo {
    transform: scale(1.05);
}

.nlogo-m {
    font-family: var(--fd);
    font-size: 1.75rem;
    letter-spacing: .06em;
    color: var(--fg);
    display: flex;
    align-items: center;
    gap: 7px;
}

.nlogo-m em {
    color: var(--blue);
    font-style: normal;
}

.nlogo-s {
    font-size: .57rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--dim);
    font-weight: 600;
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nlinks a {
    font-family: var(--fc);
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color .25s;
}

.nlinks a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--blue);
    transition: right .3s ease;
}

.nlinks a:hover {
    color: var(--fg);
}

.nlinks a:hover::after {
    right: 0;
}

.nbtn {
    font-family: var(--fc);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 3px;
    background: var(--blue);
    border: 1px solid var(--blue);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .2s;
}

.nbtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14) 0%, transparent 55%);
    transform: translateX(-110%) skewX(-20deg);
    transition: transform .5s ease;
}

.nbtn:hover {
    box-shadow: 0 0 28px var(--gblue), 0 4px 16px rgba(26, 111, 255, .4);
    transform: translateY(-2px);
}

.nbtn:hover::before {
    transform: translateX(110%) skewX(-20deg);
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 7px;
    background: none;
    border: none;
}

.ham span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--fg);
    transition: all .35s;
}

.ham.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.ham.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mdr {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: var(--bg1);
    border-left: 1px solid var(--border2);
    z-index: 999;
    transform: translateX(101%);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    padding: 90px 36px 44px;
    display: flex;
    flex-direction: column;
}

.mdr.open {
    transform: none;
}

.mdr a {
    font-family: var(--fd);
    font-size: 2.2rem;
    letter-spacing: .05em;
    color: var(--muted);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color .2s, padding-left .2s;
}

.mdr a:hover {
    color: var(--fg);
    padding-left: 8px;
}

.mdr .mcta {
    margin-top: 26px;
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 3px;
    font-size: 1.5rem;
    letter-spacing: .08em;
    border: none;
}

.mov {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mov.open {
    display: block;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ══ HERO ══ */
#hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

#hcanvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .55;
}

.hslash {
    position: absolute;
    top: 0;
    right: -5%;
    bottom: 0;
    width: 50%;
    background: linear-gradient(100deg, transparent 50%, rgba(26, 111, 255, .04) 50%, rgba(26, 111, 255, .02) 60%, transparent 61%);
    pointer-events: none;
    z-index: 1;
}

.hslash2 {
    position: absolute;
    top: 0;
    right: 6%;
    bottom: 0;
    width: 40%;
    background: linear-gradient(100deg, transparent 55%, rgba(240, 165, 0, .025) 55%, rgba(240, 165, 0, .015) 65%, transparent 66%);
    pointer-events: none;
    z-index: 1;
}

.hglow {
    position: absolute;
    top: 50%;
    right: 12%;
    width: 580px;
    height: 580px;
    background: radial-gradient(ellipse, rgba(26, 111, 255, .13) 0%, transparent 65%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    animation: gp 4s ease-in-out infinite;
}

@keyframes gp {

    0%,
    100% {
        opacity: .7;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-52%) scale(1.08);
    }
}

.heagle {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(44vw, 500px);
    z-index: 1;
    pointer-events: none;
    opacity: .055;
    animation: ef 6s ease-in-out infinite;
}

@keyframes ef {

    0%,
    100% {
        transform: translateY(-50%) rotate(-1deg);
    }

    50% {
        transform: translateY(calc(-50% - 12px)) rotate(1deg);
    }
}

.hcontent {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(240, 165, 0, .08);
    border: 1px solid rgba(240, 165, 0, .28);
    border-radius: 2px;
    padding: 7px 18px;
    font-family: var(--fc);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fsd .7s ease .2s both;
}

@keyframes fsd {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.bdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pd 1.8s ease-in-out infinite;
}

@keyframes pd {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(240, 165, 0, .4);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(240, 165, 0, 0);
    }
}

.hhl {
    font-family: var(--fd);
    font-size: clamp(3.8rem, 10vw, 9.5rem);
    line-height: .88;
    letter-spacing: .02em;
    margin-bottom: 30px;
}

.hhl .ln {
    display: block;
    overflow: hidden;
}

.hhl .li {
    display: block;
    animation: cr .75s cubic-bezier(.16, 1, .3, 1) both;
}

.hhl .ln:nth-child(1) .li {
    animation-delay: .3s;
}

.hhl .ln:nth-child(2) .li {
    animation-delay: .45s;
    color: var(--blue);
}

.hhl .ln:nth-child(3) .li {
    animation-delay: .6s;
    color: var(--gold);
}

@keyframes cr {
    from {
        transform: translateY(105%);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.hsub {
    font-size: clamp(.97rem, 1.8vw, 1.1rem);
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 42px;
    animation: fu .7s ease .85s both;
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 70px;
    animation: fu .7s ease 1s both;
}

.bsolid {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    font-family: var(--fc);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 3px;
    text-decoration: none;
    border: 1.5px solid var(--blue);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .25s, background .25s;
}

.bsolid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, .14) 0%, transparent 50%);
    transform: translateX(-120%) skewX(-25deg);
    transition: transform .55s ease;
}

.bsolid:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 36px var(--gblue), 0 8px 20px rgba(26, 111, 255, .35);
}

.bsolid:hover::before {
    transform: translateX(120%) skewX(-25deg);
}

.bghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--fg);
    font-family: var(--fc);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: 3px;
    text-decoration: none;
    border: 1.5px solid var(--border2);
    transition: border-color .25s, background .25s, transform .25s, box-shadow .3s;
}

.bghost:hover {
    border-color: var(--gold);
    background: rgba(240, 165, 0, .07);
    box-shadow: 0 0 24px var(--ggold);
    transform: translateY(-3px);
}

.hstats {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    animation: fu .7s ease 1.15s both;
}

.hstat {
    padding: 22px 40px;
    transition: background .3s;
    cursor: default;
}

.hstat+.hstat {
    border-left: 1px solid var(--border);
}

.hstat:hover {
    background: var(--bg1);
}

.hstat-n {
    font-family: var(--fd);
    font-size: 2.8rem;
    letter-spacing: .03em;
    line-height: 1;
    color: var(--blue);
}

.hstat-n.g {
    color: var(--gold);
}

.hstat-l {
    font-family: var(--fc);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.scue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fi 1s ease 1.6s both;
}

@keyframes fi {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scue span {
    font-family: var(--fc);
    font-size: .64rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dim);
}

.sarrow {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--border2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.sarrow::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--blue);
    border-radius: 2px;
    animation: sd 1.6s ease-in-out infinite;
}

@keyframes sd {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

/* ══ SERVICES ══ */
#services {
    padding: 110px 0;
}

.sgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: transparent;
    border: 1px solid var(--border);
    overflow: hidden;
}

.sc {
    padding: 5px;
    background: transparent !important;
    perspective: 1000px;
    height: 250px;
}

.sc-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}

.sc:hover .sc-inner {
    transform: rotateY(180deg);
}

.sc-front,
.sc-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.sc-front {
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.s-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, .6));
    z-index: 1;
}

.sc-front .snm {
    font-family: var(--fd);
    color: #72a7dad2;
    font-size: 3em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    z-index: 2;
}

.sc-back {
    transform: rotateY(180deg);
    z-index: 1;
    border: 1px solid var(--border);
}

.sd {
    font-size: .85rem;
    color: var(--fg);
    line-height: 1.6;
}
.sr{
    color:var(--muted)
} 

/* ══ WHY ══ */
#why {
    padding: 110px 0;
    background: radial-gradient(ellipse at 80% 40%, rgba(26, 111, 255, .07) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(240, 165, 0, .04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.wgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 39, 48, .5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 39, 48, .5) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
    pointer-events: none;
}

.wi {
    position: relative;
    z-index: 1;
}

.wh {
    text-align: center;
    margin-bottom: 66px;
}

.wh .eye {
    justify-content: center;
}

.wh .eye::before {
    display: none;
}

.fgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 54px;
}

.fc2 {
    background: var(--bg1);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s, border-color .35s;
}

.fcc {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    border-radius: 0 6px 0 0;
    opacity: .2;
    transition: opacity .35s, width .35s, height .35s;
}

.fc2:hover {
    transform: translateY(-7px);
    border-color: var(--blue);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .5), 0 0 40px var(--gblue);
}

.fc2:hover .fcc {
    opacity: .6;
    width: 68px;
    height: 68px;
}

.fico {
    width: 50px;
    height: 50px;
    background: rgba(26, 111, 255, .1);
    border: 1px solid rgba(26, 111, 255, .25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 22px;
    transition: background .3s, box-shadow .3s;
}

.fc2:hover .fico {
    background: rgba(26, 111, 255, .2);
    box-shadow: 0 0 18px var(--gblue);
}

.fico.gld {
    background: rgba(240, 165, 0, .1);
    border-color: rgba(240, 165, 0, .25);
}

.fc2:hover .fico.gld {
    background: rgba(240, 165, 0, .2);
    box-shadow: 0 0 18px var(--ggold);
}

.ftit {
    font-family: var(--fd);
    font-size: 1.45rem;
    letter-spacing: .04em;
    margin-bottom: 10px;
    color: var(--fg);
}

.fdesc {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.68;
}

.wstats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.wst {
    background: var(--bg1);
    padding: 38px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.wst::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transition: width .4s ease;
}

.wst:hover {
    background: var(--bg2);
}

.wst:hover::before {
    width: 80%;
}

.wnum {
    font-family: var(--fd);
    font-size: 3.8rem;
    letter-spacing: .02em;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 10px;
}

.wnum.g {
    color: var(--gold);
}

.wlbl {
    font-family: var(--fc);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ══ ABOUT ══ */
#about {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.agrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.avis {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.avals {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0 34px;
}

.av {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 17px 20px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    background: var(--bg1);
    transition: all .3s ease;
}

.av:hover {
    border-left-color: var(--gold);
    transform: translateX(5px);
}

.ocard {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--bg1);
    border: 1px solid var(--border2);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.oav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

/* ══ ABOUT — TEAM PHOTO STACK ══ */
.about-media-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.team-photo-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform .5s ease;
}

.team-photo-wrapper:hover .team-photo {
    transform: scale(1.03);
}

.team-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 10, 13, .92) 0%, transparent 100%);
    color: var(--gold);
    font-family: var(--fc);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 20px 16px 12px;
}

/* ══ REVIEWS ══ */
#reviews {
    padding: 110px 0;
    overflow: hidden;
    position: relative;
}

#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--border), transparent);
}

.rh {
    text-align: center;
    margin-bottom: 58px;
}

.rh .eye {
    justify-content: center;
}

.rh .eye::before {
    display: none;
}

.mw {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
}

.mw::before,
.mw::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.mw::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.mw::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.mt {
    display: flex;
    gap: 18px;
    animation: mq 48s linear infinite;
    width: max-content;
}

.mt:hover {
    animation-play-state: paused;
}

@keyframes mq {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.rc {
    background: var(--bg1);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: 6px;
    padding: 26px 28px;
    width: 310px;
    flex-shrink: 0;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.rc:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
}

.rstars {
    color: var(--gold);
    font-size: .88rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.rq {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.68;
    margin-bottom: 16px;
    font-style: italic;
}

.rf {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rn {
    font-weight: 600;
    color: var(--fg);
    font-size: .87rem;
}

.rsrc {
    font-family: var(--fc);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(240, 165, 0, .1);
    padding: 3px 9px;
    border-radius: 2px;
}

/* ══ AREAS ══ */
#areas {
    padding: 82px 0;
    text-align: center;
    background: var(--bg1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

#areas::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(26, 111, 255, .06) 0%, transparent 65%);
    pointer-events: none;
}

.atitle {
    font-family: var(--fd);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: .04em;
    margin: 14px 0 32px;
}

.atitle em {
    color: var(--gold);
    font-style: normal;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.pill {
    background: rgba(26, 111, 255, .08);
    border: 1px solid rgba(26, 111, 255, .25);
    color: var(--blue);
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--fc);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: background .25s, box-shadow .25s, transform .25s;
    cursor: default;
}

.pill:hover {
    background: rgba(26, 111, 255, .18);
    box-shadow: 0 0 22px var(--gblue);
    transform: translateY(-3px);
}

.asince {
    font-size: .85rem;
    color: var(--muted);
    letter-spacing: .05em;
}

/* ══ CONTACT & FORM ══ */
#contact {
    padding: 110px 0;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--border), transparent);
}

.cgrid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 68px;
    align-items: start;
}

.cdesc {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 22px 0 36px;
}

.ccards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.cc {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg1);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 20px;
    text-decoration: none;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.cc:hover {
    border-color: var(--blue);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.cc-ic {
    width: 42px;
    height: 42px;
    background: rgba(26, 111, 255, .1);
    border: 1px solid rgba(26, 111, 255, .22);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cc-t strong {
    display: block;
    color: var(--fg);
    font-weight: 600;
    font-size: .92rem;
    line-height: 1.4;
    /* Added for better spacing when wrapped */
}

.cc-t span {
    font-size: .79rem;
    color: var(--muted);
}



.socrow {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.slink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2e53d5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 24px;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
}

.slink:hover,
.slink.active {
    border: 2px solid #4264a1;
    transform: scale(1.05);
}

.slink .fa-tiktok {
    font-size: 22px;
}

.qform {
    background: var(--bg1);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
}

.qform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
    background-size: 200%;
    animation: sh 3s linear infinite;
}

@keyframes sh {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.qtit {
    font-family: var(--fd);
    font-size: 2.2rem;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.qsub {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.fr2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.fg.full {
    grid-column: 1 / -1;
}

.fg label {
    font-family: var(--fc);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.fg input,
.fg select,
.fg textarea {
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: 4px;
    padding: 13px 16px;
    color: var(--fg);
    font-family: var(--fb);
    font-size: .91rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    appearance: none;
    -webkit-appearance: none;
}

.fg select {
    cursor: pointer;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 111, 255, .18);
}

.fg textarea {
    resize: vertical;
    min-height: 105px;
}

.fsbmt {
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 17px;
    font-family: var(--fc);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 6px;
    transition: box-shadow .3s, transform .25s, background .25s;
}

.fsbmt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, .14) 0%, transparent 50%);
    transform: translateX(-120%) skewX(-20deg);
    transition: transform .5s ease;
}

.fsbmt:hover {
    background: #3a8aff;
    box-shadow: 0 0 36px var(--gblue);
    transform: translateY(-2px);
}

.fsbmt:hover::before {
    transform: translateX(120%) skewX(-20deg);
}

/* ══ IMAGE UPLOAD ══ */
.upload-container {
    border: 2px dashed var(--border2);
    border-radius: 6px;
    background: var(--bg);
    padding: 24px;
    text-align: center;
    transition: border-color .3s, background .3s;
    cursor: pointer;
}

.upload-container.dragover {
    border-color: var(--blue);
    background: rgba(26, 111, 255, .05);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.u-icon {
    font-size: 1.8rem;
}

.u-text {
    font-size: .88rem;
    color: var(--fg);
    font-weight: 500;
}

.u-sub {
    font-size: .72rem;
    color: var(--dim);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border2);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-img {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 60, 60, .9);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ══ FOOTER ══ */
footer {
    background: var(--bg1);
    border-top: 1px solid var(--border);
    padding: 80px 0 36px;
}

.ftop {
    display: grid;
    grid-template-columns: 2fr 1fr 1.7fr 1fr;
    gap: 52px;
    margin-bottom: 56px;
}

.fblogo {
    font-family: var(--fd);
    font-size: 2rem;
    letter-spacing: .06em;
    color: var(--fg);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.fblogo em {
    color: var(--blue);
    font-style: normal;
}

.fbtag {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 22px;
    max-width: 280px;
}

.fbsoc {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fbsoc a {
    width: 38px;
    height: 38px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    text-decoration: none;
    color: var(--muted);
    transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.fbsoc a:hover {
    border-color: var(--blue);
    color: var(--fg);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
}

.fcol h4 {
    font-family: var(--fc);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.fcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fcol ul a {
    font-size: .84rem;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 0;
    transition: color .2s, padding-left .2s;
}

.fcol ul a:hover {
    color: var(--fg);
    padding-left: 5px;
}

.fsvclist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fsvc-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 8px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.fsvc-item a:hover {
    transform: translateX(4px);
}

.fthumb {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 7px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: box-shadow .25s, background .25s, border-color .25s;
    overflow: hidden;
}

.fsvc-item a:hover .fthumb {
    background: rgba(26, 111, 255, .12);
    box-shadow: 0 0 10px var(--gblue);
    border-color: rgba(26, 111, 255, .3);
}

.fvlbl {
    font-size: .81rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
    transition: color .2s;
}

.fsvc-item a:hover .fvlbl {
    color: var(--fg);
}

.fvsub {
    font-size: .69rem;
    color: var(--dim);
    display: block;
    margin-top: 1px;
    transition: color .2s;
}

.fsvc-item a:hover .fvsub {
    color: var(--muted);
}

.fbot {
    border-top: 1px solid var(--border);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.fbot p {
    font-size: .79rem;
    color: var(--dim);
}

.fbot a {
    color: var(--blue);
    text-decoration: none;
}

/* ══ WHATSAPP FLOAT ══ */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    animation: wa-in .6s cubic-bezier(.16, 1, .3, 1) 1.5s both;
}

@keyframes wa-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.85);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.wa-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    margin-right: 70px;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45), 0 2px 8px rgba(0, 0, 0, .35);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    flex-shrink: 0;
}

.wa-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, .35);
    animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.wa-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    position: relative;
    z-index: 1;
}

.wa-float:hover .wa-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 34px rgba(37, 211, 102, .6), 0 4px 12px rgba(0, 0, 0, .4);
}

.wa-label {
    background: #1a2533;
    color: #eef1f6;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid rgba(37, 211, 102, .25);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .25s, transform .25s;
    pointer-events: none;
}

.wa-float:hover .wa-label {
    opacity: 1;
    transform: none;
}

#gallery {
    padding: 110px 0;
    position: relative;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--border), transparent);
}

.gh {
    margin-bottom: 52px;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gal-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--bg2);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 13, .85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity .3s;
}

.gal-overlay span {
    font-family: var(--fc);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.gal-item:hover img {
    transform: scale(1.07);
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

/* Lightbox */
.gal-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(5, 7, 10, .96);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.gal-lb.open {
    display: flex;
}

.lb-img {
    max-width: min(90vw, 1100px);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
}

.lb-cap {
    font-family: var(--fc);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

.lb-close {
    position: fixed;
    top: 24px;
    right: 28px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    color: var(--fg);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 2;
}

.lb-close:hover {
    background: var(--blue);
    transform: scale(1.1);
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg2);
    border: 1px solid var(--border2);
    color: var(--fg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 2;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

.lb-nav:hover {
    background: var(--blue);
    transform: translateY(-50%) scale(1.08);
}


/* ══ FIX 3: CLEAN CONSOLIDATED RESPONSIVE BREAKPOINTS ══ */

@media (max-width: 1100px) {
    .ftop {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .fgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wstats {
        grid-template-columns: repeat(2, 1fr);
    }

    .agrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cgrid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ab1 {
        display: none;
    }

    .avis {
        max-width: 460px;
        margin: 0 auto;
    }

    .sat-hours {
        display: block;
        /* This forces it to the next line */
        margin-top: 2px;
        /* Optional: adds a tiny bit of breathing room */
    }

    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sat-hours {
        display: block;
        /* This forces it to the next line */
        margin-top: 2px;
        /* Optional: adds a tiny bit of breathing room */
    }

    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .nlinks,
    .nbtn-w {
        display: none;
    }

    .ham {
        display: flex;
    }

    .sgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fgrid {
        grid-template-columns: 1fr;
    }

    .hstats {
        flex-direction: column;
        width: 100%;
    }

    .hstat+.hstat {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .fr2 {
        grid-template-columns: 1fr;
    }

    .ftop {
        grid-template-columns: 1fr;
    }

    .agrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab1 {
        display: none;
    }

    .sat-hours {
        display: block;
        /* This forces it to the next line */
        margin-top: 2px;
        /* Optional: adds a tiny bit of breathing room */
    }

    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 580px) {
    .sgrid {
        grid-template-columns: 1fr;
    }

    .sc {
        height: 220px;
    }

    .hctas {
        flex-direction: column;
    }

    .bsolid,
    .bghost {
        width: 100%;
        justify-content: center;
    }

    .qform {
        padding: 28px 20px;
    }

    .fbot {
        flex-direction: column;
        text-align: center;
    }

    .ab1 {
        display: none;
    }

    .sat-hours {
        display: block;
        /* This forces it to the next line */
        margin-top: 2px;
        /* Optional: adds a tiny bit of breathing room */
    }

   .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}