*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Utility: right-align numeric/value columns in tables */
.text-end{
    text-align:right;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:white;
}

ul{
    list-style:none;
}

header{
    width:100%;
    height:90px;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 25px;
    position:fixed;
    z-index:100;
    background:#010006;
}

.logo{
    width:220px;
    flex:0 0 auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:45px;
}

nav ul{
    display:flex;
    gap:45px;
}

nav a{
    position:relative;
    font-size:18px;
    text-transform:uppercase;
    font-weight:600;
}

nav a.active{
    color:white;
    text-shadow:
        0 0 5px #00bfff,
        0 0 10px #00bfff,
        0 0 20px #00bfff,
        0 0 40px #008cff;
}

nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-10px;
    height:2px;
    border-radius:999px;
    background:white;
    box-shadow:
        0 0 5px #00bfff,
        0 0 10px #00bfff,
        0 0 20px #00bfff,
        0 0 40px #008cff;
}

nav a:hover{
    color:#1d7eff;
}

.book-btn{
    padding:15px 28px;
    border:2px solid #2575ff;
    border-radius:10px;
    box-shadow:0 0 18px rgba(37,117,255,.35);
}

.promo{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:15px 28px;
    border:2px solid #de9ae0;
    border-radius:10px;
    font-weight:bold;
    background:rgba(18,0,24,.5);
    box-shadow:0 0 18px rgba(222,154,224,.18);
    transition: transform .6s ease;
}

.promo:hover{
    background:#430146;
    box-shadow:0 0 18px rgba(222,154,224,.35);
    transform: scale(1.05);
}

.promo span{
    color:#eaf05d;
}

.promo i{
    color:#de9ae0;
}

.hero{
    min-height:100svh;
    height:auto;
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:120px clamp(20px,5vw,70px) 60px;
    display:flex;
    align-items:center;
    background:#050505;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    background:linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.92) 20%, rgba(5,5,5,.74) 36%, rgba(5,5,5,.32) 60%, rgba(5,5,5,.08) 80%, rgba(5,5,5,0) 100%);
}

.hero-left{
    position:relative;
    z-index:2;
    max-width:560px;
}

.hero-left h1{
    font-family:'Barlow Condensed',sans-serif;
    font-size:clamp(3rem,8vw,7rem);
    line-height:.9;
    margin:30px 0;
    font-style:italic;
}

.hero-left h1 span{
    color:#1874ff;
}

.hero-left p{
    color:#ddd;
    line-height:1.8;
    max-width:520px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.primary-btn{
    background:#0011b8;
    padding:18px 35px;
    border-radius:10px;
    border: 1px solid #547cf5;
    box-shadow: inset 0 0 15px #00bfff;
}

.secondary-btn{
    border:1px solid white;
    padding:18px 35px;
    border-radius:10px;
    background: black
}

.hero-right{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    max-width:none;
    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.18) 10%,
        rgba(0,0,0,.62) 28%,
        rgba(0,0,0,.9) 48%,
        #000 100%
    );

    mask-image: linear-gradient(
        90deg,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.18) 10%,
        rgba(0,0,0,.62) 28%,
        rgba(0,0,0,.9) 48%,
        #000 100%
    );}

.hero-carousel{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track{
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .6s ease;
}

.carousel-track img{
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;   /* Important */
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(44, 28, 117, 0.5);
    border: 2px solid rgba(255,255,255,.8);
    cursor: pointer;
    transition: .3s;
}

.dot.active{
    background: #f5cb5d;
    border-color: #f5cb5d;
    transform: scale(1.2);
}

.cards{
    width:90%;
    margin:auto;
    margin-top:10px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:28px;
}

.card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(0,0,0,.38);
    box-shadow:0 0 0 1px rgba(0,0,0,.35), 0 12px 30px rgba(0,0,0,.35);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
}

@media (hover: hover) and (pointer: fine) {
    .card:hover {
        transform: scale(1.05);
    }
}

@media (hover: none) {
    .card:hover {
        transform: none;
    }
}

.card img{
    height:140px;
    object-fit:cover;
    -webkit-mask-image:linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,.35) 100%);
    mask-image:linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,.35) 100%);
}

.card-body{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:18px 20px 14px;
    border-top:none;
    background:linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.94) 100%);
}

.card-main{
    display:flex;
    align-items:center;
    gap:16px;
}

.card-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    flex:0 0 auto;
}

.card-icon i{
    font-size:2.3rem;
    line-height:1;
}

.card-body h3{
    font-family:'Barlow Condensed',sans-serif;
    font-size:1.6rem;
    font-weight:70;
    letter-spacing:.4px;
    margin-bottom:2px;
}

.card-teal h3{
    white-space:nowrap;
    font-size:1.45rem;
}

.card-body p{
    font-size:.92rem;
    color:rgba(255,255,255,.68);
}

.card-blue{
    border:1px solid #2e8bff;
}

.card-blue .card-icon,
.card-blue .card-arrow{
    color:#2e8bff;
}

.card-pink{
    border:1px solid #db63d3;
}

.card-pink .card-icon,
.card-pink .card-arrow{
    color:#db63d3;
}

.card-teal{
    border:1px solid #2ad6cf;
}

.card-teal .card-icon,
.card-teal .card-arrow{
    color:#2ad6cf;
}

.card-gold{
    border:1px solid #f0c43c;
}

.card-gold .card-icon,
.card-gold .card-arrow{
    color:#f0c43c;
}

.card-arrow{
    display:block;
    margin-top:2px;
    margin-left:70px;
    font-size:.95rem;
    color:currentColor;
    opacity:.95;
}

.features{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding-bottom:50px;
}

.feature{
    display:flex;
    gap:15px;
    align-items:center;
    padding:20px;
}

.feature i{
    color:#1d7eff;
    font-size:32px;
    text-shadow:0 0 10px #ffffff;
}

.feature-blue h4{
    color:#2e8bff;
    font-family:'Barlow Condensed',sans-serif;
    font-size:1.45rem;
    font-weight:70;
    letter-spacing:.4px;
}

.feature-blue .feature-icon{
    color:#2e8bff;
}

.feature-pink h4{
    color:#db63d3;
    font-family:'Barlow Condensed',sans-serif;
    font-size:1.45rem;
    font-weight:70;
    letter-spacing:.4px;
}

.feature-pink .feature-icon{
    color:#db63d3;
}

.feature-teal h4{
    color:#2ad6cf;
    font-family:'Barlow Condensed',sans-serif;
    font-size:1.45rem;
    font-weight:70;
    letter-spacing:.4px;
}

.feature-teal .feature-icon{
    color:#2ad6cf;
}

.feature-gold h4{
    color:#f0c43c;
    font-family:'Barlow Condensed',sans-serif;
    font-size:1.45rem;
    font-weight:70;
    letter-spacing:.4px;
}

.feature-gold .feature-icon{
    color:#f0c43c;
}

.about-us{
    width:100%;
    padding:80px clamp(20px,5vw,70px) 60px;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.about-us::before{
    content:"";
    position:absolute;
    top:-50%;
    right:-10%;
    width:800px;
    height:800px;
    background:radial-gradient(circle, rgba(29,126,255,.08) 0%, rgba(29,126,255,0) 70%);
    border-radius:50%;
    pointer-events:none;
}

.about-container{
    position:relative;
    z-index:1;
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    text-align:center;
    justify-content:center;
}

.about-content h2{
    font-family:'Barlow Condensed',sans-serif;
    font-size:clamp(2.5rem,6vw,4rem);
    font-weight:700;
    margin-bottom:30px;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2::after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:linear-gradient(90deg, #1d7eff, #2ad6cf);
    margin-top:15px;
    border-radius:999px;
    box-shadow:0 0 15px rgba(29,126,255,.5);
}

.about-content p{
    color:#ddd;
    line-height:1.8;
    font-size:1rem;
    margin-bottom:20px;
}

.about-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.stat{
    padding:30px;
    background:linear-gradient(135deg, rgba(29,126,255,.1) 0%, rgba(42,214,207,.08) 100%);
    border:1px solid rgba(29,126,255,.2);
    border-radius:12px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:transform 0.3s ease, border-color 0.3s ease;
}

.center-stat{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100%;
}

.stat .hours{
    font-size:1.3rem;
    color:#1d7eff;
    line-height:1.5;
}

.stat .hours .time{
    color: white;
}

.stat:hover{
    transform:translateY(-5px);
    border-color:rgba(29,126,255,.5);
    box-shadow:0 0 20px rgba(29,126,255,.2);
}

.stat h3{
    font-family:'Barlow Condensed',sans-serif;
    font-size:2.5rem;
    color:#1d7eff;
    margin-bottom:10px;
    text-shadow:0 0 10px rgba(29,126,255,.5);
}

.stat p{
    color:#aaa;
    font-size:.95rem;
    margin:0;
}

footer{
    width:100%;
    margin:auto;
    padding:20px 70px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    border-top:1px solid rgba(255,255,255,.08);
}

footer img{
    width:170px;
    flex:0 0 auto;
}

/* FOOTER STYLES */

.footer-copy{
    color:rgba(255,255,255,.72);
    font-size:.9rem;
    letter-spacing:.2px;
    flex:1;
    text-align:center;
}

.footer-copy a{
    transition:color 0.3s ease;
}

.footer-copy a:hover{
    color:#1d7eff;
}

.footer-left{
    display:flex;
    align-items:center;
    gap:20px;
}

/* ========================= */
/* BURGER MENU + SOCIALS */
/* ========================= */

.menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    min-width:44px;
    min-height:44px;
    padding:0;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    color:#fff;
    font-size:1.25rem;
    cursor:pointer;
    z-index:1002;
    transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible{
    background:rgba(29,126,255,.18);
    border-color:rgba(29,126,255,.45);
    outline:none;
}

.mobile-socials{
    display:flex;
    gap:18px;
    flex:0 0 auto;
}

.mobile-socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    font-size:1.35rem;
    color:#fff;
    border-radius:10px;
    transition:.25s ease;
}

.mobile-socials a:hover,
.mobile-socials a:focus-visible{
    color:#1d7eff;
    background:rgba(29,126,255,.12);
    transform:translateY(-2px);
    text-shadow:0 0 12px #1d7eff;
    outline:none;
}

.mobile-socials i{
    color:inherit;
    opacity:.95;
}

body.nav-open{
    overflow:hidden;
    touch-action:none;
}

/* ========================= */
/* RESPONSIVE — mobile first polish */
/* ========================= */

@media (max-width: 1180px){
    header{
        height:72px;
        padding:0 16px;
        padding-top:env(safe-area-inset-top, 0px);
        gap:12px;
    }

    .logo{
        width:min(168px, 46vw);
    }

    .menu-toggle{
        display:inline-flex;
        margin-left:auto;
    }

    /* Full-viewport drawer menu (replaces broken max-height accordion) */
    .nav-links{
        position:fixed;
        top:calc(72px + env(safe-area-inset-top, 0px));
        left:0;
        right:0;
        bottom:0;
        width:100%;
        max-height:none;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:0;
        padding:20px 20px calc(28px + env(safe-area-inset-bottom, 0px));
        background:rgba(5,5,5,.97);
        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);
        border-top:1px solid rgba(255,255,255,.08);
        overflow-x:hidden;
        overflow-y:auto;
        overscroll-behavior:contain;
        z-index:1001;
        transform:translateX(100%);
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:transform .32s cubic-bezier(.22,1,.36,1), opacity .28s ease, visibility .28s;
    }

    .nav-links.active{
        transform:translateX(0);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    nav ul{
        flex-direction:column;
        align-items:stretch;
        gap:6px;
        width:100%;
        padding:8px 0 20px;
    }

    nav ul a{
        display:flex;
        align-items:center;
        min-height:48px;
        padding:12px 16px;
        font-size:1.05rem;
        letter-spacing:.04em;
        border-radius:12px;
        background:rgba(255,255,255,.02);
        border:1px solid transparent;
    }

    nav ul a:hover,
    nav ul a:focus-visible{
        background:rgba(29,126,255,.12);
        border-color:rgba(29,126,255,.28);
        color:#fff;
        outline:none;
    }

    nav a.active{
        background:rgba(29,126,255,.16);
        border-color:rgba(29,126,255,.4);
        box-shadow:inset 0 0 0 1px rgba(0,191,255,.15);
    }

    nav a.active::after{
        display:none;
    }

    .mobile-socials{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:12px;
        margin-top:auto;
        padding:20px 0 8px;
        border-top:1px solid rgba(255,255,255,.08);
    }
}

@media (max-width: 992px){
    .hero{
        padding:104px 24px 48px;
    }

    .cards,
    .features{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:16px;
        padding-left:20px;
        padding-right:20px;
    }

    footer{
        padding:20px 24px calc(20px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width:768px){
    .about-container{
        grid-template-columns:1fr;
        gap:28px;
        padding:0 4px;
    }

    .about-us{
        padding:48px 20px;
    }

    .hero{
        min-height:auto;
        padding:96px 18px 40px;
        text-align:center;
        justify-content:center;
    }

    .hero-right img{
        object-fit:cover;
        object-position:center top;
        -webkit-mask-image:none;
        mask-image:none;
    }

    .hero-left{
        max-width:100%;
    }

    .hero-left h1{
        margin:20px 0 16px;
    }

    .hero-left p{
        margin:0 auto;
        font-size:1rem;
        line-height:1.65;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
        margin-top:28px;
        gap:12px;
    }

    .cards,
    .features{
        grid-template-columns:1fr;
        gap:14px;
        padding:24px 16px;
    }

    .card img{
        height:200px;
    }

    .card-body{
        padding:14px 16px;
    }

    .feature{
        flex-direction:row;
        align-items:center;
        text-align:left;
        gap:14px;
        padding:16px;
        min-height:72px;
    }

    .feature-icon{
        font-size:1.4rem;
    }

    .about-stats{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:12px;
    }

    .stat{
        padding:18px 12px;
    }

    .stat h3{
        font-size:clamp(1.4rem, 6vw, 2rem);
    }

    footer{
        flex-direction:column;
        gap:14px;
        text-align:center;
        padding:24px 16px calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .footer-left{
        flex-direction:column;
        gap:10px;
    }

    footer img{
        width:140px;
        margin:0 auto;
    }

    .footer-copy{
        font-size:.82rem;
        line-height:1.5;
    }
}

@media (max-width:480px){
    header{
        height:64px;
        padding:0 12px;
        padding-top:env(safe-area-inset-top, 0px);
    }

    .logo{
        width:min(148px, 48vw);
    }

    .nav-links{
        top:calc(64px + env(safe-area-inset-top, 0px));
        padding:16px 14px calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .promo{
        font-size:.72rem;
        padding:12px 14px;
        gap:6px;
        max-width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero{
        padding:88px 14px 32px;
    }

    .hero-left p{
        font-size:.95rem;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        min-height:48px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        text-align:center;
    }

    .cards,
    .features{
        padding:20px 12px;
    }

    .card-main{
        gap:12px;
    }

    .card-arrow{
        flex:0 0 auto;
    }

    .feature{
        padding:14px;
    }

    .about-stats{
        grid-template-columns:1fr 1fr;
    }

    .stat.center-stat{
        grid-column:1 / -1;
    }
}