:root{
    --white: #ffffff;
    --text: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.74);
    --line: rgba(255,255,255,0.10);
    --line-strong: rgba(255,255,255,0.18);
    --navy: #171347;
    --navy-deep: #0f0d34;
    --blue: #3151c8;
    --red: #ff4b3e;
    --gold: #d9a431;
    --container: 1240px;
    --radius: 32px;
    --ease: 0.35s ease;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Manrope", sans-serif;
    background: #0f0d34;
    color: var(--text);
    overflow-x: hidden;
}

img,
video{
    display: block;
    max-width: 100%;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}

.container{
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

main,
.home-page-bg{
    margin: 0;
    padding: 0;
}

/* ONE BACKGROUND IMAGE FOR WHOLE HOME PAGE */
.home-page-bg{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(12,10,42,0.83), rgba(12,10,42,0.86)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.home-page-bg::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .45;
}

.topbar{
    position: relative;
    z-index: 100;
    background: rgba(9, 8, 31, 0.84);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.topbar-inner{
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left{
    font-size: 14px;
    color: var(--muted);
}

.social-icons-top{
    display: flex;
    gap: 10px;
}

.social-icons-top a,
.footer-social a{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--white);
    transition: var(--ease);
}

.social-icons-top a:hover,
.footer-social a:hover{
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.topbar-btn,
.nav-btn,
.btn,
.cookie-btn,
.nav-button-reset{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--ease);
    cursor: pointer;
}

.topbar-btn.primary,
.nav-btn,
.btn-primary{
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--white);
}

.topbar-btn.primary:hover,
.nav-btn:hover,
.btn-primary:hover{
    background: var(--blue);
}

.topbar-btn.secondary,
.btn-secondary{
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--white);
}

.topbar-btn.secondary:hover,
.btn-secondary:hover{
    background: rgba(255,255,255,0.12);
}

.navbar{
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(10, 8, 35, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-inner{
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-wrap{
    display: flex;
    align-items: center;
    gap: 14px;
}

.real-logo{
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.logo-texts h2{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
}

.logo-texts p{
    margin-top: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links > a,
.nav-button-reset{
    position: relative;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 15px;
    font-weight: 700;
}

.nav-links > a::after,
.nav-button-reset::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width .3s ease;
}

.nav-links > a:hover::after,
.nav-button-reset:hover::after{
    width: 100%;
}

.inline-logout-form{
    display: inline;
}

.menu-toggle{
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span{
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 10px;
    transition: .3s ease;
}

.menu-toggle.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity: 0;
}
.menu-toggle.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.sia-home-hero{
    position: relative;
    min-height: calc(100vh - 146px);
    padding: 0;
    overflow: hidden;
}

.hero-bg-overlay,
.hero-grid-lines,
.hero-glow,
.hero-arc-line{
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-overlay{
    background: linear-gradient(90deg, rgba(15,13,52,0.88) 0%, rgba(15,13,52,0.72) 42%, rgba(15,13,52,0.35) 68%, rgba(15,13,52,0.20) 100%);
}

.hero-grid-lines{
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
}

.hero-glow{
    filter: blur(80px);
    opacity: .25;
}

.hero-glow-left{
    top: 60px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: rgba(255,75,62,0.24);
    border-radius: 50%;
}

.hero-glow-right{
    top: 40px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(49,81,200,0.24);
    border-radius: 50%;
}

.hero-arc-line{
    width: 760px;
    height: 760px;
    top: -350px;
    right: 22%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
    border-left-color: rgba(255,75,62,0.14);
    transform: rotate(18deg);
    animation: arcFloat 8s ease-in-out infinite;
}

.hero-arc-line::before,
.hero-arc-line::after{
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-arc-line::before{
    width: 500px;
    height: 500px;
    top: 560px;
    left: 130px;
    border: 4px solid transparent;
    border-bottom-color: rgba(255,75,62,0.95);
    border-right-color: rgba(255,75,62,0.14);
}

.hero-arc-line::after{
    width: 160px;
    height: 160px;
    top: 690px;
    left: 40px;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
}

@keyframes arcFloat{
    0%,100%{ transform: rotate(18deg) translateY(0); }
    50%{ transform: rotate(18deg) translateY(-15px); }
}

.hero-main-grid{
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 146px);
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 42px;
    align-items: stretch;
    padding-top: 24px;
    padding-bottom: 40px;
}

.hero-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-label{
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #dfe4ff;
}

.hero-left h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(58px, 8vw, 108px);
    line-height: .92;
    letter-spacing: -0.07em;
    font-weight: 800;
    color: var(--white);
    max-width: 760px;
}

.hero-left p{
    margin-top: 22px;
    max-width: 700px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-points{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.hero-point{
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-point strong{
    display: block;
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
}

.hero-point span{
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.hero-right{
    min-height: 100%;
    display: flex;
    align-items: stretch;
}

.hero-media-slider{
    position: relative;
    width: 100%;
    min-height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}

.hero-media-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 4s ease;
}

.hero-media-slide.active{
    opacity: 1;
    transform: scale(1);
}

.hero-media-slide img,
.hero-media-slide video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,30,0.10), rgba(10,8,30,0.34));
}

.hero-media-badge{
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

/* SECTIONS */
.section{
    position: relative;
    padding: 105px 0;
    background: transparent !important;
}

.section-heading{
    max-width: 840px;
    margin: 0 auto 54px;
}

.section-heading.center{
    text-align: center;
}

.section-heading h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--white);
}

.section-heading p{
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
}

.simple-achiever-list{
    display: grid;
    gap: 24px;
}

.simple-achiever-item{
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: var(--ease);
}

.simple-achiever-item:hover{
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.simple-achiever-image{
    width: 110px;
    height: 110px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.simple-achiever-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.simple-achiever-text span{
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.simple-achiever-text h3{
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.simple-achiever-text p{
    margin-top: 6px;
    color: var(--muted);
}

.simple-achiever-text strong{
    display: block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 18px;
}

.pathway-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pathway-item{
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    transition: var(--ease);
}

.pathway-item:hover{
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.pathway-item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 26px;
    margin-bottom: 18px;
}

.pathway-item h3{
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.pathway-item p{
    margin-top: 10px;
    line-height: 1.8;
    color: var(--muted);
}

.video-band-section{
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-band-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-band-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,10,42,0.88), rgba(12,10,42,0.58));
}

.video-band-content{
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.video-band-content h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--white);
}

.video-band-content p{
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.85;
    color: var(--muted);
}

.why-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.why-item{
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.why-item i{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 22px;
}

.why-item h3{
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.why-item p{
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.8;
}

/* FOOTER */
.footer{
    margin-top: 50px;
    border-top: 1px solid var(--line);
    background: rgba(7,6,24,0.45);
    backdrop-filter: blur(10px);
}

.footer-simple{
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 30px;
    padding: 70px 0 40px;
}

.footer-brand{
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand h3{
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    color: var(--white);
}

.footer-brand p{
    margin-top: 8px;
    color: var(--muted);
}

.footer-contact-inline{
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 24px;
    color: var(--muted);
}

.footer-extra-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 34px;
}

.footer-extra-box{
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.footer-extra-box h4{
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 800;
    color: var(--white);
}

.footer-extra-box p,
.footer-extra-box li{
    color: var(--muted);
    line-height: 1.9;
}

.footer-social{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom{
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 18px 10px;
    color: var(--muted);
}

/* FLASH */
.flash-wrap{
    margin-top: 16px;
}

.flash-success,
.flash-error{
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700;
}

.flash-success{
    background: rgba(55, 185, 113, 0.12);
    color: #86f0af;
}

.flash-error{
    background: rgba(255, 76, 76, 0.12);
    color: #ff9f9f;
}

/* COOKIE BAR */
.cookie-bar{
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(15,13,52,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
}

.cookie-bar.show{
    display: flex;
}

.cookie-bar-text strong{
    display: block;
    margin-bottom: 6px;
}

.cookie-bar-text p{
    color: var(--muted);
}

.cookie-bar-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn{
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: var(--white);
}

.cookie-btn-primary{
    border: 2px solid var(--blue);
}

.cookie-btn-outline{
    background: transparent;
}

.cookie-bar-close{
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

/* REVEAL */
.reveal,
.reveal-left,
.reveal-right{
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
}

.reveal{
    transform: translateY(36px);
}

.reveal-left{
    transform: translateX(-36px);
}

.reveal-right{
    transform: translateX(36px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active{
    opacity: 1;
    transform: translate(0,0);
}

.delay-1{ transition-delay: .12s; }
.delay-2{ transition-delay: .22s; }
.delay-3{ transition-delay: .32s; }
.delay-4{ transition-delay: .42s; }
.delay-5{ transition-delay: .52s; }

/* RESPONSIVE */
@media (max-width: 1200px){
    .hero-main-grid,
    .footer-simple,
    .why-list{
        grid-template-columns: 1fr;
    }

    .pathway-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-points{
        grid-template-columns: 1fr;
    }

    .footer-extra-grid{
        grid-template-columns: 1fr;
    }

    .footer-social{
        justify-content: flex-start;
    }
}

@media (max-width: 992px){
    .menu-toggle{
        display: flex;
    }

    .nav-links{
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
        border: 1px solid var(--line);
        background: rgba(15,13,52,0.96);
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: .3s ease;
    }

    .nav-links.show{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .topbar{
        display: none;
    }

    .hero-main-grid{
        min-height: auto;
        padding-top: 24px;
        grid-template-columns: 1fr;
    }

    .hero-arc-line{
        display: none;
    }

    .pathway-grid,
    .why-list{
        grid-template-columns: 1fr;
    }

    .cookie-bar{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px){
    .section{
        padding: 82px 0;
    }

    .nav-inner{
        min-height: 78px;
    }

    .logo-texts h2{
        font-size: 24px;
    }

    .logo-texts p{
        font-size: 11px;
    }

    .hero-left h1{
        font-size: clamp(42px, 13vw, 72px);
    }

    .hero-left p{
        font-size: 17px;
    }

    .hero-media-slider{
        min-height: 360px;
    }

    .pathway-item img{
        height: 240px;
    }

    .simple-achiever-item{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-inline{
        flex-direction: column;
        align-items: flex-start;
    }
}

.simple-achiever-group{
    margin-bottom: 60px;
}

.simple-group-head{
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.simple-group-head h3{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    color: var(--white);
}

.simple-group-head span{
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.simple-achiever-grid-2{
    grid-template-columns: repeat(2, 1fr);
}

.running-line-section{
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.running-line-track{
    display: flex;
    gap: 40px;
    width: max-content;
    white-space: nowrap;
    animation: marqueeMove 26s linear infinite;
}

.running-line-track span{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.03em;
}

@keyframes marqueeMove{
    to{ transform: translateX(-50%); }
}

.mini-stats-line{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.mini-stat{
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.mini-stat h4{
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.mini-stat p{
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.7;
}

.split-media-grid{
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 28px;
    align-items: stretch;
}

.split-video video{
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid var(--line);
}

.split-gallery{
    min-height: 520px;
}

.academy-gallery-slider{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
}

.academy-gallery-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 4s ease;
    background-position: center;
    background-size: cover;
}

.academy-gallery-slide.active{
    opacity: 1;
    transform: scale(1);
}

.academy-gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,30,0.08), rgba(10,8,30,0.32));
}

.academy-gallery-top-badge{
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.gallery-masonry{
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 18px;
}

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.gallery-item:hover img{
    transform: scale(1.05);
}

.gallery-item.tall{
    grid-row: span 2;
}

.gallery-item.wide{
    grid-column: span 2;
}

.gallery-caption{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 22px;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.58));
}

.gallery-caption span{
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
}

.future-grid{
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.future-image-wrap{
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--line);
}

.future-image-wrap img{
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.future-image-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,30,0.10), rgba(10,8,30,0.38));
}

.future-note,
.future-tag{
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.future-note{
    max-width: 240px;
    padding: 16px 18px;
    border-radius: 20px;
}

.future-note h4{
    font-size: 18px;
    font-weight: 800;
}

.future-note p{
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.7;
}

.future-note.top{
    top: 22px;
    left: 22px;
}

.future-note.bottom{
    right: 22px;
    bottom: 90px;
}

.future-tag{
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.future-content h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.04;
    color: var(--white);
    letter-spacing: -0.05em;
}

.future-content p{
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
}

.future-feature-list{
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.future-feature{
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.future-feature i{
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.future-feature h3{
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.future-feature p{
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
}

.google-reviews-slider{
    overflow: hidden;
}

.google-reviews-track{
    display: flex;
    gap: 24px;
    transition: transform .7s ease;
}

.google-review-card{
    min-width: calc(33.333% - 16px);
    padding: 24px 0 18px;
    border-bottom: 1px solid var(--line);
}

.google-review-top{
    display: flex;
    align-items: center;
    gap: 14px;
}

.google-review-avatar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.google-review-user h4{
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
}

.google-review-user span{
    color: var(--muted);
    font-size: 13px;
}

.google-review-stars{
    margin-top: 14px;
    color: var(--gold);
    letter-spacing: .14em;
    font-size: 18px;
}

.google-review-card p{
    margin-top: 14px;
    min-height: 108px;
    color: var(--muted);
    line-height: 1.8;
}

.google-review-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.google-review-dots button{
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    transition: .3s ease;
}

.google-review-dots button.active{
    width: 28px;
    background: var(--white);
}

.social-luxury-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.social-left h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    color: var(--white);
}

.social-intro-text{
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
}

.luxury-follow-icons{
    display: flex;
    gap: 14px;
    margin-top: 26px;
}

.luxury-follow-icons a{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--ease);
}

.luxury-follow-icons a:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
}

.social-story-card{
    margin-top: 34px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.social-story-head{
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.story-logo-box img{
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.social-story-head h3{
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    color: var(--white);
}

.story-mini-line{
    display: inline-block;
    margin-top: 6px;
    color: var(--gold);
    font-weight: 700;
}

.social-story-text p{
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.9;
}

.social-right{
    display: grid;
    gap: 16px;
}

.social-feature-card{
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.social-feature-icon{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-feature-card h4{
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
}

.social-feature-card p{
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.75;
}

.social-dark-banner{
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.floating-badge-mini{
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.social-dark-banner h3{
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    line-height: 1.14;
    color: var(--white);
}

.social-dark-banner p{
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.9;
}

@media (max-width: 1200px){
    .simple-achiever-grid-2,
    .mini-stats-line,
    .split-media-grid,
    .future-grid,
    .social-luxury-grid{
        grid-template-columns: 1fr;
    }

    .google-review-card{
        min-width: calc(50% - 12px);
    }

    .gallery-masonry{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px){
    .gallery-masonry,
    .simple-achiever-grid-2{
        grid-template-columns: 1fr;
    }

    .gallery-item.tall,
    .gallery-item.wide{
        grid-row: auto;
        grid-column: auto;
    }

    .google-review-card{
        min-width: 100%;
    }
}

/* COURSES PAGE - ONE BACKGROUND IMAGE */
.courses-page-bg{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(12,10,42,0.84), rgba(12,10,42,0.88)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.courses-page-bg::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .45;
}

/* HERO */
.courses-hero{
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.courses-hero-overlay,
.courses-hero-grid,
.courses-hero-glow,
.courses-hero-arc{
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.courses-hero-overlay{
    background: linear-gradient(90deg, rgba(15,13,52,0.88) 0%, rgba(15,13,52,0.68) 45%, rgba(15,13,52,0.24) 100%);
}

.courses-hero-grid{
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
}

.courses-hero-glow{
    filter: blur(80px);
    opacity: .24;
    border-radius: 50%;
}

.courses-hero-glow-left{
    top: 40px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255,75,62,0.28);
}

.courses-hero-glow-right{
    top: 50px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(49,81,200,0.25);
}

.courses-hero-arc{
    width: 620px;
    height: 620px;
    top: -280px;
    right: 18%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
    border-left-color: rgba(255,75,62,0.14);
    transform: rotate(18deg);
    animation: arcFloatCourses 8s ease-in-out infinite;
}

.courses-hero-arc::before,
.courses-hero-arc::after{
    content: "";
    position: absolute;
    border-radius: 50%;
}

.courses-hero-arc::before{
    width: 360px;
    height: 360px;
    top: 470px;
    left: 120px;
    border: 4px solid transparent;
    border-bottom-color: rgba(255,75,62,0.95);
    border-right-color: rgba(255,75,62,0.14);
}

.courses-hero-arc::after{
    width: 120px;
    height: 120px;
    top: 560px;
    left: 40px;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
}

@keyframes arcFloatCourses{
    0%,100%{ transform: rotate(18deg) translateY(0); }
    50%{ transform: rotate(18deg) translateY(-14px); }
}

.courses-hero-inner{
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 40px 0;
}

.courses-hero-inner h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .95;
    letter-spacing: -0.06em;
    color: var(--white);
    margin: 0;
}

.courses-hero-inner p{
    margin-top: 22px;
    max-width: 760px;
    font-size: 20px;
    line-height: 1.85;
    color: var(--muted);
}

/* COURSE SECTION */
.courses-grid-premium{
    display: grid;
    gap: 48px;
}

.course-premium-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: var(--ease);
}

.course-premium-row:hover{
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.course-premium-row.course-reverse .course-premium-image{
    order: 2;
}

.course-premium-row.course-reverse .course-premium-content{
    order: 1;
}

.course-premium-image{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    min-height: 460px;
}

.course-premium-image img{
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    transition: transform 1s ease;
}

.course-premium-row:hover .course-premium-image img{
    transform: scale(1.05);
}

.course-image-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,30,0.08), rgba(10,8,30,0.34));
}

.course-floating-badge{
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.course-premium-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-badge{
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.course-badge.red{ color: #ffb1ab; }
.course-badge.blue{ color: #b9c8ff; }
.course-badge.gold{ color: #ffd97a; }
.course-badge.green{ color: #aef1bc; }

.course-premium-content h3{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.05em;
    color: var(--white);
}

.course-premium-content p{
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
}

.course-feature-list{
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.course-feature-list li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--text);
    line-height: 1.75;
}

.course-feature-list i{
    margin-top: 4px;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

/* extra motion */
.course-premium-row .course-premium-content,
.course-premium-row .course-premium-image{
    transition: transform .45s ease;
}

.course-premium-row:hover .course-premium-content{
    transform: translateY(-4px);
}

.course-premium-row:hover .course-premium-image{
    transform: translateY(-4px);
}

/* responsive */
@media (max-width: 1200px){
    .course-premium-row{
        grid-template-columns: 1fr;
    }

    .course-premium-row.course-reverse .course-premium-image,
    .course-premium-row.course-reverse .course-premium-content{
        order: initial;
    }
}

@media (max-width: 992px){
    .courses-hero{
        min-height: 48vh;
    }

    .courses-hero-arc{
        display: none;
    }

    .course-premium-image,
    .course-premium-image img{
        min-height: 360px;
    }
}

@media (max-width: 768px){
    .courses-hero-inner h1{
        font-size: clamp(40px, 12vw, 64px);
    }

    .courses-hero-inner p{
        font-size: 17px;
    }

    .course-premium-image,
    .course-premium-image img{
        min-height: 300px;
    }

    .course-premium-content h3{
        font-size: 34px;
    }
}


/* =========================================
   CONTACT PAGE - KEEP EXISTING BLADE
========================================= */

.contact-ultra-hero,
.contact-ultra-section{
    position: relative;
    background: transparent !important;
}

/* HERO */
.contact-ultra-hero{
    position: relative;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 28px 0 24px;
}

/* one whole page background image */
body:has(.contact-ultra-hero) .home-page-bg,
body:has(.contact-ultra-hero) .courses-page-bg{
    background: none !important;
}

.contact-ultra-hero::before,
.contact-ultra-section::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-hero-bg{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(12,10,42,0.84), rgba(12,10,42,0.88)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.contact-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,13,52,0.90) 0%, rgba(15,13,52,0.72) 45%, rgba(15,13,52,0.24) 100%);
}

.contact-hero-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .42;
}

.contact-orb{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .26;
    pointer-events: none;
}

.contact-orb.orb-one{
    top: 20px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,75,62,0.24);
}

.contact-orb.orb-two{
    top: 30px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(49,81,200,0.24);
}

.contact-orb.orb-three{
    bottom: -100px;
    left: 40%;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.08);
}

.contact-ultra-hero::after{
    content: "";
    position: absolute;
    top: -280px;
    right: 16%;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
    border-left-color: rgba(255,75,62,0.14);
    transform: rotate(18deg);
    animation: contactArcFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactArcFloat{
    0%,100%{ transform: rotate(18deg) translateY(0); }
    50%{ transform: rotate(18deg) translateY(-14px); }
}

.contact-hero-inner{
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0;
    margin: 0;
}

.contact-hero-inner > *:first-child{
    margin-top: 0 !important;
}

.contact-hero-inner h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: .95;
    letter-spacing: -0.06em;
    color: var(--white);
    margin: 0;
}

.contact-hero-inner p{
    margin-top: 22px;
    max-width: 760px;
    font-size: 20px;
    line-height: 1.85;
    color: var(--muted);
}

.contact-hero-badges{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
    margin-bottom: 0;
}

.contact-hero-badge{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: var(--white);
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.contact-hero-badge i{
    font-size: 20px;
    color: var(--gold);
}

.contact-hero-badge span{
    font-size: 15px;
    font-weight: 700;
}

.contact-hero-badge:hover{
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
    border-color: var(--line-strong);
}

/* CONTACT SECTION */
.contact-ultra-section{
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 100px;
    margin-top: -6px;
    background:
        linear-gradient(rgba(12,10,42,0.84), rgba(12,10,42,0.88)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.contact-ultra-section::before{
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .35;
}

.contact-ultra-layout{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel{
    position: relative;
    padding: 34px 0;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.contact-info-panel h2,
.contact-form-heading h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--white);
    margin: 0;
}

.contact-info-panel > p,
.contact-form-heading p{
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
}

/* INFO STACK */
.contact-info-stack{
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.contact-info-card{
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    transition: transform .35s ease, border-color .35s ease;
}

.contact-info-card:hover{
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.contact-info-icon{
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 20px;
}

.contact-info-icon.gold-icon i{
    color: var(--gold);
}

.contact-info-icon.blue-icon i{
    color: #b9c8ff;
}

.contact-info-card h4{
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.contact-info-card p{
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.75;
}

.contact-info-card span{
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.7;
}

/* FLOATING INFO CARD */
.contact-floating-card{
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.contact-floating-card h3{
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 1.14;
    color: var(--white);
}

.contact-floating-card p{
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.85;
}

/* FORM PANEL */
.contact-form-panel{
    border-left: 1px solid rgba(255,255,255,0.06);
    padding-left: 34px;
}

.contact-form-topline{
    width: 100%;
    height: 2px;
    margin-bottom: 26px;
    background: linear-gradient(90deg, var(--red), rgba(255,255,255,0.12), transparent);
}

.contact-form-heading{
    margin-bottom: 24px;
}

/* FORM */
.contact-ultra-form{
    display: grid;
    gap: 18px;
}

.form-grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-ultra-form label{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.contact-ultra-form input,
.contact-ultra-form textarea{
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 15px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
    backdrop-filter: blur(8px);
}

.contact-ultra-form input::placeholder,
.contact-ultra-form textarea::placeholder{
    color: rgba(255,255,255,0.48);
}

.contact-ultra-form input:focus,
.contact-ultra-form textarea:focus{
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.09);
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}

.contact-ultra-form textarea{
    resize: vertical;
    min-height: 160px;
}

.contact-submit-btn{
    width: fit-content;
    margin-top: 8px;
    gap: 10px;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--white);
}

.contact-submit-btn:hover{
    background: var(--blue);
    transform: translateY(-2px);
}

/* glass helper */
.glass-card{
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

/* responsive */
@media (max-width: 1200px){
    .contact-ultra-layout{
        grid-template-columns: 1fr;
    }

    .contact-form-panel{
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 992px){
    .contact-hero-badges{
        grid-template-columns: 1fr;
    }

    .form-grid-2{
        grid-template-columns: 1fr;
    }

    .contact-ultra-hero::after{
        display: none;
    }
}

@media (max-width: 768px){
    .contact-ultra-hero{
        min-height: auto;
        height: auto;
        padding: 18px 0 18px;
    }

    .contact-hero-inner h1{
        font-size: clamp(40px, 12vw, 64px);
    }

    .contact-hero-inner p{
        font-size: 17px;
    }

    .contact-info-panel h2,
    .contact-form-heading h2{
        font-size: 36px;
    }

    .contact-ultra-section{
        padding-top: 28px;
        padding-bottom: 80px;
    }
}

.contact-ultra-hero{
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
}

.contact-hero-inner{
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* center badges */
.contact-hero-badges{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* center mini label */
.contact-hero-inner .mini-label{
    margin-left: auto;
    margin-right: auto;
}

/* center paragraph */
.contact-hero-inner p{
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:768px){

.contact-ultra-hero{
    min-height: calc(100vh - 78px);
    padding: 20px 0;
}

.contact-hero-inner{
    padding: 20px 0;
}

.contact-hero-badges{
    flex-direction: column;
}

}

/* =========================================
   NEWS PAGE - KEEP EXISTING BLADE
========================================= */

.news-page-bg{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(12,10,42,0.84), rgba(12,10,42,0.88)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.news-page-bg::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .42;
}

/* HERO */
.news-hero-premium{
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 60px;
    background: transparent !important;
}

.news-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,13,52,0.88) 0%, rgba(15,13,52,0.68) 45%, rgba(15,13,52,0.24) 100%);
    pointer-events: none;
}

.news-floating-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .24;
    pointer-events: none;
}

.news-floating-shape.shape-one{
    top: 60px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,75,62,0.22);
}

.news-floating-shape.shape-two{
    top: 40px;
    right: -70px;
    width: 280px;
    height: 280px;
    background: rgba(49,81,200,0.22);
}

.news-floating-shape.shape-three{
    bottom: -100px;
    left: 42%;
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,0.08);
}

.news-hero-premium::after{
    content: "";
    position: absolute;
    top: -270px;
    right: 16%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
    border-left-color: rgba(255,75,62,0.14);
    transform: rotate(18deg);
    animation: newsArcFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes newsArcFloat{
    0%,100%{ transform: rotate(18deg) translateY(0); }
    50%{ transform: rotate(18deg) translateY(-14px); }
}

.news-hero-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 46px;
    align-items: center;
}

.news-hero-content h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .95;
    letter-spacing: -0.06em;
    color: var(--white);
    margin: 0;
}

.news-hero-content p{
    margin-top: 22px;
    max-width: 760px;
    font-size: 20px;
    line-height: 1.85;
    color: var(--muted);
}

.news-hero-side{
    display: grid;
    gap: 18px;
}

.hero-glass-card{
    position: relative;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.hero-glass-card:hover{
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background: rgba(255,255,255,0.11);
}

.hero-card-icon{
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    color: var(--gold);
    font-size: 22px;
}

.hero-glass-card h4{
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.hero-glass-card p{
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.8;
}

.hero-stats-row{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.hero-mini-stat{
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-mini-stat strong{
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
}

.hero-mini-stat span{
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

/* FLOAT ANIMATION */
.float-y{
    animation: floatY 4.5s ease-in-out infinite;
}
.float-y-delay{
    animation: floatY 5.4s ease-in-out infinite;
}

@keyframes floatY{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
}

/* SECTION */
.news-section-bg,
.news-showcase-section,
.academy-timeline-section,
.news-cta-section{
    position: relative;
    background: transparent !important;
}

.news-pattern{
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .2;
}

.news-premium-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.news-premium-card{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    transition: transform .4s ease, border-color .4s ease, background .4s ease;
}

.news-premium-card:hover{
    transform: translateY(-6px);
    border-color: var(--line-strong);
    background: rgba(255,255,255,0.06);
}

.news-premium-image{
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-premium-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.news-premium-card:hover .news-premium-image img{
    transform: scale(1.06);
}

.news-premium-image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,30,0.08), rgba(10,8,30,0.28));
}

.news-tag{
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gold-tag{ color: #ffd97a; }
.red-tag{ color: #ffb1ab; }
.blue-tag{ color: #b9c8ff; }
.green-tag{ color: #aef1bc; }

.news-premium-body{
    padding: 24px;
}

.news-meta-row{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--muted);
}

.news-premium-body h3{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 1.08;
    color: var(--white);
    margin: 0;
}

.news-premium-body p{
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.85;
}

.news-feature-list{
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.news-feature-list li{
    position: relative;
    padding: 0 0 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--text);
    line-height: 1.75;
}

.news-feature-list li::before{
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}

.card-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--white);
    font-weight: 800;
    transition: gap .3s ease, color .3s ease;
}

.card-link:hover{
    gap: 14px;
    color: var(--gold);
}

/* SHOWCASE */
.news-showcase-bg{
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 80% 20%, rgba(49,81,200,0.14), transparent 24%);
}

.split-layout.news-split-layout{
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.image-frame{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    transition: transform .35s ease;
}

.image-frame img{
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.split-content h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--white);
    margin: 0;
}

.split-content p{
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
}

.premium-list{
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.premium-list li{
    position: relative;
    padding-left: 24px;
    color: var(--text);
    line-height: 1.75;
}

.premium-list li::before{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--gold);
}

/* TIMELINE */
.academy-timeline{
    display: grid;
    gap: 22px;
    margin-top: 20px;
}

.timeline-item{
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 18px;
    align-items: start;
}

.timeline-dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(217,164,49,0.12);
}

.timeline-card{
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.05);
    transition: transform .35s ease, border-color .35s ease;
}

.timeline-card:hover{
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.timeline-card h4{
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.timeline-card p{
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.8;
}

/* CTA */
.news-cta-box{
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    text-align: center;
}

.cta-glow{
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,75,62,0.12);
    filter: blur(70px);
    pointer-events: none;
}

.news-cta-box h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    color: var(--white);
    margin: 12px 0 0;
}

.news-cta-box p{
    max-width: 820px;
    margin: 18px auto 0;
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
}

.center-actions{
    justify-content: center;
}

/* REVEALS */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-card,
.reveal-zoom{
    opacity: 0;
    transition: opacity .85s ease, transform .85s ease;
    will-change: transform, opacity;
}

.reveal-up{ transform: translateY(36px); }
.reveal-left{ transform: translateX(-36px); }
.reveal-right{ transform: translateX(36px); }
.reveal-card{ transform: translateY(42px); }
.reveal-zoom{ transform: scale(.95); }

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-card.active,
.reveal-zoom.active{
    opacity: 1;
    transform: translate(0,0) scale(1);
}

.delay-1{ transition-delay: .10s; }
.delay-2{ transition-delay: .18s; }
.delay-3{ transition-delay: .26s; }
.delay-4{ transition-delay: .34s; }

/* RESPONSIVE */
@media (max-width: 1200px){
    .news-hero-grid,
    .split-layout.news-split-layout{
        grid-template-columns: 1fr;
    }

    .news-premium-grid{
        grid-template-columns: 1fr;
    }

    .image-frame img{
        height: 520px;
    }
}

@media (max-width: 992px){
    .news-hero-premium{
        min-height: auto;
        padding: 60px 0 50px;
    }

    .news-hero-premium::after{
        display: none;
    }

    .hero-stats-row{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    .news-hero-content h1{
        font-size: clamp(40px, 12vw, 64px);
    }

    .news-hero-content p,
    .split-content p,
    .news-cta-box p{
        font-size: 17px;
    }

    .news-premium-body{
        padding: 20px;
    }

    .news-premium-body h3{
        font-size: 26px;
    }

    .timeline-card{
        padding: 20px;
    }

    .news-cta-box{
        padding: 28px 22px;
    }

    .hero-stats-row{
        grid-template-columns: 1fr;
    }

    .image-frame img{
        height: 380px;
    }
}

/* =========================================
   PAYMENT PAGE - KEEP EXISTING BLADE
========================================= */

.payment-single-hero{
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
    background: transparent !important;
}

/* one whole background image */
.payment-single-bg{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(12,10,42,0.84), rgba(12,10,42,0.88)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.payment-single-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,13,52,0.90) 0%, rgba(15,13,52,0.72) 45%, rgba(15,13,52,0.26) 100%);
}

.payment-single-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .38;
}

.payment-single-hero::after{
    content: "";
    position: absolute;
    top: -260px;
    right: 16%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
    border-left-color: rgba(255,75,62,0.14);
    transform: rotate(18deg);
    animation: paymentArcFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes paymentArcFloat{
    0%,100%{ transform: rotate(18deg) translateY(0); }
    50%{ transform: rotate(18deg) translateY(-14px); }
}

.payment-single-orb{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .24;
    pointer-events: none;
}

.payment-single-orb.orb-one{
    top: 40px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,75,62,0.24);
}

.payment-single-orb.orb-two{
    top: 40px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(49,81,200,0.24);
}

.payment-single-wrap{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

/* LEFT SIDE */
.payment-single-content{
    max-width: 720px;
}

.payment-single-content h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .95;
    letter-spacing: -0.06em;
    color: var(--white);
    margin: 0;
}

.payment-single-content p{
    margin-top: 22px;
    max-width: 700px;
    font-size: 20px;
    line-height: 1.85;
    color: var(--muted);
}

.payment-highlight-wrap{
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.payment-highlight-card{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    transition: transform .35s ease, border-color .35s ease;
}

.payment-highlight-card:hover{
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.payment-highlight-card i{
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--gold);
    font-size: 20px;
}

.payment-highlight-card h4{
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.payment-highlight-card span{
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.7;
}

/* RIGHT FORM PANEL */
.payment-single-card{
    position: relative;
    padding: 30px 0 0 34px;
    border-left: 1px solid rgba(255,255,255,0.06);
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.payment-card-topline{
    width: 100%;
    height: 2px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--red), rgba(255,255,255,0.12), transparent);
}

.payment-card-head h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--white);
    margin: 0;
}

.payment-card-head p{
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.payment-single-form{
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.payment-single-form label{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.payment-single-form input,
.payment-single-form select,
.payment-single-form textarea{
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 15px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
    backdrop-filter: blur(8px);
}

.payment-single-form input::placeholder,
.payment-single-form textarea::placeholder{
    color: rgba(255,255,255,0.48);
}

.payment-single-form select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.75) 50%),
        linear-gradient(135deg, rgba(255,255,255,0.75) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.payment-single-form select option{
    color: #111;
}

.payment-single-form input:focus,
.payment-single-form select:focus,
.payment-single-form textarea:focus{
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.09);
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}

.payment-single-form textarea{
    resize: vertical;
    min-height: 140px;
}

.payment-single-btn{
    width: fit-content;
    margin-top: 8px;
    gap: 10px;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--white);
}

.payment-single-btn:hover{
    background: var(--blue);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1200px){
    .payment-single-wrap{
        grid-template-columns: 1fr;
    }

    .payment-single-card{
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 992px){
    .payment-single-hero{
        min-height: auto;
        padding: 36px 0 40px;
    }

    .payment-single-hero::after{
        display: none;
    }
}

@media (max-width: 768px){
    .payment-single-hero{
        padding: 22px 0 28px;
    }

    .payment-single-content h1{
        font-size: clamp(40px, 12vw, 64px);
    }

    .payment-single-content p{
        font-size: 17px;
    }

    .payment-card-head h2{
        font-size: 34px;
    }
}



/* =========================================
   GUEST / LOGIN PAGE PREMIUM
========================================= */

.auth-page-bg{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background:
        linear-gradient(rgba(12,10,42,0.82), rgba(12,10,42,0.88)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
}

.auth-page-overlay,
.auth-page-grid,
.auth-glow,
.auth-arc-line{
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.auth-page-overlay{
    background: linear-gradient(90deg, rgba(15,13,52,0.88) 0%, rgba(15,13,52,0.68) 45%, rgba(15,13,52,0.26) 100%);
}

.auth-page-grid{
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .45;
}

.auth-glow{
    border-radius: 50%;
    filter: blur(90px);
    opacity: .28;
}

.auth-glow-one{
    top: 40px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: rgba(255,75,62,0.26);
}

.auth-glow-two{
    bottom: -60px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(49,81,200,0.24);
}

.auth-arc-line{
    width: 680px;
    height: 680px;
    top: -300px;
    right: 16%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.95);
    border-left-color: rgba(255,75,62,0.12);
    transform: rotate(18deg);
    animation: authArcFloat 8s ease-in-out infinite;
}

.auth-arc-line::before,
.auth-arc-line::after{
    content: "";
    position: absolute;
    border-radius: 50%;
}

.auth-arc-line::before{
    width: 420px;
    height: 420px;
    top: 500px;
    left: 120px;
    border: 4px solid transparent;
    border-bottom-color: rgba(255,75,62,0.9);
    border-right-color: rgba(255,75,62,0.12);
}

.auth-arc-line::after{
    width: 120px;
    height: 120px;
    top: 610px;
    left: 28px;
    border: 4px solid transparent;
    border-top-color: rgba(255,75,62,0.9);
}

@keyframes authArcFloat{
    0%,100%{ transform: rotate(18deg) translateY(0); }
    50%{ transform: rotate(18deg) translateY(-14px); }
}

.auth-page-shell{
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
}

.auth-side-text{
    max-width: 700px;
}

.auth-side-text h1{
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(44px, 6vw, 88px);
    line-height: .94;
    letter-spacing: -0.06em;
    color: var(--white);
}

.auth-side-text p{
    margin-top: 22px;
    max-width: 640px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.85;
}

.auth-feature-points{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.auth-feature-point{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
    animation: authBadgeFloat 4.5s ease-in-out infinite;
}

.auth-feature-point:nth-child(2){
    animation-delay: .3s;
}

.auth-feature-point:nth-child(3){
    animation-delay: .6s;
}

.auth-feature-point i{
    color: var(--gold);
}

@keyframes authBadgeFloat{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-4px); }
}

.auth-panel{
    position: relative;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.24);
    overflow: hidden;
}

.auth-panel::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 48%, transparent 72%);
    transform: translateX(-120%);
    animation: authPanelShine 7s linear infinite;
    pointer-events: none;
}

@keyframes authPanelShine{
    to{ transform: translateX(120%); }
}

.auth-clean-form{
    position: relative;
    z-index: 2;
    padding: 0;
}

.auth-social-row{
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.social-icon-btn{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 18px;
    transition: .3s ease;
}

.social-icon-btn:hover{
    transform: translateY(-4px) scale(1.04);
    background: rgba(255,255,255,0.12);
    border-color: var(--line-strong);
}

.google-btn:hover{ color:#ff7b7b; }
.facebook-btn:hover{ color:#8db4ff; }
.twitter-btn:hover{ color:#ffffff; }

.auth-divider{
    position: relative;
    text-align: center;
    margin: 22px 0;
}

.auth-divider::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:1px;
    background: var(--line);
}

.auth-divider span{
    position: relative;
    padding:0 14px;
    background: rgba(18,16,58,0.96);
    color: var(--muted);
    font-size: 13px;
}

.auth-field{
    margin-bottom: 18px;
}

.auth-field label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:700;
    color:var(--white);
}

.auth-field input{
    width:100%;
    padding:16px 18px;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(255,255,255,0.06);
    color:var(--white);
    font-size:15px;
    transition:.3s ease;
    backdrop-filter: blur(8px);
}

.auth-field input::placeholder{
    color: rgba(255,255,255,0.46);
}

.auth-field input:focus{
    outline:none;
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.09);
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}

.auth-error{
    color:#ff8f8f;
    margin-top:6px;
    display:block;
}

.auth-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:16px 0 20px;
    gap: 10px;
}

.remember-wrap{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:13px;
}

.remember-wrap input{
    accent-color: var(--blue);
}

.auth-link{
    color:var(--blue);
    font-size:13px;
    text-decoration:none;
}

.auth-link:hover{
    text-decoration:underline;
}

.auth-link.strong{
    font-weight:700;
}

.login-main-btn,
.full-btn{
    width:100%;
}

.login-main-btn{
    margin-top:10px;
}

.auth-bottom-text{
    text-align:center;
    margin-top:18px;
    color:var(--muted);
    font-size:14px;
}

.auth-reveal-up{
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s ease, transform .85s ease;
}

.auth-reveal-up.active{
    opacity: 1;
    transform: translateY(0);
}

.auth-delay-1{
    transition-delay: .16s;
}

@media (max-width: 1100px){
    .auth-page-shell{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .auth-side-text{
        max-width: 100%;
        text-align: center;
    }

    .auth-feature-points{
        justify-content: center;
    }

    .auth-panel{
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px){
    .auth-page-bg{
        padding: 24px 16px;
    }

    .auth-arc-line{
        display: none;
    }

    .auth-side-text h1{
        font-size: clamp(38px, 11vw, 58px);
    }

    .auth-side-text p{
        font-size: 17px;
    }

    .auth-panel{
        padding: 22px;
        border-radius: 24px;
    }

    .auth-row{
        flex-direction: column;
        align-items: flex-start;
    }
}

.auth-page-shell .auth-side-text h1{
    max-width: 760px;
}

.auth-page-shell .auth-side-text p{
    max-width: 620px;
}


/* =========================================================
   ULTRA PREMIUM DASHBOARD
   Keep existing blade exactly the same
========================================================= */

body:has(.dashboard-ultra-hero){
    background:
        linear-gradient(rgba(10, 9, 35, 0.88), rgba(10, 9, 35, 0.94)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
    overflow-x: hidden;
}

body:has(.dashboard-ultra-hero)::before{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .35;
}

.dashboard-ultra-hero,
.dashboard-stat-wrap,
.white-section{
    position: relative;
    background: transparent !important;
    z-index: 1;
}

/* =========================
   HERO
========================= */

.dashboard-ultra-hero{
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 56px 0 38px;
}

.dashboard-ultra-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12,10,42,0.92) 0%, rgba(12,10,42,0.78) 48%, rgba(12,10,42,0.42) 100%);
    z-index: 0;
}

.dashboard-grid-lines{
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    animation: dashboardGridShift 18s linear infinite;
}

@keyframes dashboardGridShift{
    0%{ transform: translate3d(0,0,0); }
    50%{ transform: translate3d(12px,10px,0); }
    100%{ transform: translate3d(0,0,0); }
}

.dashboard-light{
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: .26;
    pointer-events: none;
}

.dashboard-light.light-one{
    width: 340px;
    height: 340px;
    top: 10px;
    left: -100px;
    background: rgba(255,75,62,0.28);
    animation: lightFloatOne 10s ease-in-out infinite;
}

.dashboard-light.light-two{
    width: 320px;
    height: 320px;
    top: 40px;
    right: -90px;
    background: rgba(49,81,200,0.26);
    animation: lightFloatTwo 12s ease-in-out infinite;
}

@keyframes lightFloatOne{
    0%,100%{ transform: translateY(0) translateX(0); }
    50%{ transform: translateY(-18px) translateX(10px); }
}

@keyframes lightFloatTwo{
    0%,100%{ transform: translateY(0) translateX(0); }
    50%{ transform: translateY(18px) translateX(-10px); }
}

.dashboard-ultra-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.dashboard-ultra-content h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .94;
    letter-spacing: -0.06em;
    color: var(--white);
    margin: 0;
    text-shadow: 0 10px 40px rgba(0,0,0,.22);
}

.dashboard-ultra-content p{
    margin-top: 18px;
    max-width: 720px;
    font-size: 19px;
    line-height: 1.85;
    color: var(--muted);
}

.dashboard-ultra-content .hero-actions{
    margin-top: 28px;
}

/* =========================
   STATS WRAP
========================= */

.dashboard-stat-wrap{
    position: relative;
    padding: 18px 0 20px;
}

.dashboard-ultra-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ultra-stat-card{
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 26px 24px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
    isolation: isolate;
}

.ultra-stat-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 0%, rgba(255,255,255,.10) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 1s ease;
    z-index: 0;
}

.ultra-stat-card::after{
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    filter: blur(16px);
    z-index: 0;
}

.ultra-stat-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 30px 70px rgba(0,0,0,.24);
}

.ultra-stat-card:hover::before{
    transform: translateX(120%);
}

.ultra-stat-icon,
.ultra-stat-text{
    position: relative;
    z-index: 1;
}

.ultra-stat-icon{
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.ultra-stat-text h3{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1;
    color: var(--white);
    margin: 0;
}

.ultra-stat-text h4{
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.ultra-stat-text p{
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

/* =========================
   MAIN LAYOUT
========================= */

.dashboard-main-layout{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: start;
}

.dashboard-left-column,
.dashboard-right-column{
    display: grid;
    gap: 26px;
}

/* =========================
   PANELS
========================= */

.dashboard-premium-panel{
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.dashboard-premium-panel::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 48%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 1.2s ease;
    pointer-events: none;
}

.dashboard-premium-panel:hover{
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 26px 70px rgba(0,0,0,.24);
    background: rgba(255,255,255,0.08);
}

.dashboard-premium-panel:hover::before{
    transform: translateX(120%);
}

.panel-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.panel-head h2{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.04em;
    margin: 0;
}

.mini-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gold-badge{
    color: var(--gold);
}

/* =========================
   ACCOUNT OVERVIEW
========================= */

.modern-account-grid{
    display: grid;
    gap: 12px;
}

.account-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.account-row strong{
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 700;
}

.account-row span{
    color: var(--white);
    text-align: right;
    font-weight: 700;
}

.dashboard-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* =========================
   RECENT STUDENTS
========================= */

.mini-student-grid{
    display: grid;
    gap: 14px;
}

.mini-student-card{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform .3s ease, background .3s ease;
}

.mini-student-card:hover{
    transform: translateX(6px);
    background: rgba(255,255,255,0.07);
}

.mini-student-card img{
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-student-body h4{
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.mini-student-body p{
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.mini-student-body span{
    display: inline-block;
    margin-top: 8px;
    color: var(--gold);
    font-weight: 800;
    font-size: 14px;
}

.empty-note{
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   QUICK LINKS
========================= */

.quick-links-grid.ultra-links{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quick-link-card{
    position: relative;
    overflow: hidden;
    padding: 24px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    text-align: center;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.quick-link-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.09) 48%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 1s ease;
}

.quick-link-card:hover{
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
}

.quick-link-card:hover::before{
    transform: translateX(120%);
}

.quick-link-card i,
.quick-link-card span{
    position: relative;
    z-index: 1;
}

.quick-link-card i{
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--gold);
}

.quick-link-card span{
    display: block;
    color: var(--white);
    font-weight: 800;
    line-height: 1.5;
}

/* =========================
   MINI COURSE GRID
========================= */

.mini-course-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mini-course-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: transform .35s ease, border-color .35s ease;
}

.mini-course-card:hover{
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
}

.mini-course-card img{
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform 1s ease;
}

.mini-course-card:hover img{
    transform: scale(1.07);
}

.mini-course-card h4{
    padding: 14px 16px 16px;
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    text-align: center;
}

/* =========================
   REVEAL ANIMATION
========================= */

.dashboard-ultra-hero .reveal,
.dashboard-stat-wrap .reveal,
.dashboard-main-layout .reveal{
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s ease, transform .85s ease;
}

.dashboard-ultra-hero .reveal.active,
.dashboard-stat-wrap .reveal.active,
.dashboard-main-layout .reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   BUTTON MAGNETIC FEEL
========================= */

.dashboard-ultra-hero .btn,
.dashboard-actions .btn{
    transition: transform .22s ease, box-shadow .3s ease, background .3s ease;
}

.dashboard-ultra-hero .btn:hover,
.dashboard-actions .btn:hover{
    box-shadow: 0 18px 30px rgba(0,0,0,.18);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px){
    .dashboard-ultra-stats{
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-main-layout{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px){
    .dashboard-ultra-hero{
        min-height: auto;
        padding: 40px 0 26px;
    }

    .quick-links-grid.ultra-links,
    .mini-course-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    .dashboard-ultra-content h1{
        font-size: clamp(40px, 12vw, 64px);
    }

    .dashboard-ultra-content p{
        font-size: 17px;
    }

    .dashboard-ultra-stats{
        grid-template-columns: 1fr;
    }

    .quick-links-grid.ultra-links,
    .mini-course-grid{
        grid-template-columns: 1fr;
    }

    .dashboard-premium-panel{
        padding: 22px;
        border-radius: 24px;
    }

    .account-row{
        flex-direction: column;
        align-items: flex-start;
    }

    .account-row span{
        text-align: left;
    }
}

/* =========================================================
   PREMIUM ADMIN SYSTEM
   students + course management
========================================================= */

:root{
    --admin-bg-1: #07111f;
    --admin-bg-2: #0d1830;
    --admin-bg-3: #14142b;
    --admin-glass: rgba(255,255,255,0.07);
    --admin-glass-2: rgba(255,255,255,0.10);
    --admin-border: rgba(255,255,255,0.11);
    --admin-border-strong: rgba(255,255,255,0.19);
    --admin-shadow: 0 20px 60px rgba(0,0,0,.30);
    --admin-shadow-hover: 0 28px 80px rgba(0,0,0,.38);
    --admin-text: #ffffff;
    --admin-muted: rgba(255,255,255,.70);
    --admin-soft: rgba(255,255,255,.48);
    --admin-primary: #ff6b57;
    --admin-primary-2: #ff8e6d;
    --admin-blue: #72a8ff;
    --admin-success: #9ff3bb;
    --admin-danger: #ffb1b1;
    --admin-warning: #ffd57a;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

/* =========================
   BODY / ONE BACKGROUND
========================= */
body:has(.admin-premium-hero),
body:has(.student-management-hero){
    background:
        linear-gradient(rgba(7,14,28,.90), rgba(7,14,28,.94)),
        url('/images/image14.jpg') center center / cover no-repeat fixed;
    color: var(--admin-text);
    overflow-x: hidden;
    position: relative;
}

body:has(.admin-premium-hero)::before,
body:has(.student-management-hero)::before{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: .28;
}

body:has(.admin-premium-hero)::after,
body:has(.student-management-hero)::after{
    content: "";
    position: fixed;
    inset: -10%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,107,87,.16), transparent 25%),
        radial-gradient(circle at 82% 18%, rgba(114,168,255,.14), transparent 24%),
        radial-gradient(circle at 50% 78%, rgba(255,255,255,.05), transparent 20%);
    filter: blur(30px);
    animation: adminAuroraMove 16s ease-in-out infinite alternate;
}

@keyframes adminAuroraMove{
    0%{ transform: translate3d(0,0,0) scale(1); }
    100%{ transform: translate3d(2%,-2%,0) scale(1.06); }
}

/* =========================
   SHARED WRAPPERS
========================= */
.admin-premium-hero,
.admin-section-lift,
.student-table-shell,
.admin-panel,
.course-admin-card{
    position: relative;
    z-index: 1;
}

/* =========================
   HERO
========================= */
.admin-premium-hero{
    min-height: 42vh;
    display: flex;
    align-items: center;
    padding: 64px 0 34px;
    overflow: hidden;
    position: relative;
    background: transparent !important;
}

.admin-premium-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,10,30,.88) 0%, rgba(8,10,30,.72) 45%, rgba(8,10,30,.38) 100%);
    z-index: 0;
}

.admin-premium-hero::after{
    content: "";
    position: absolute;
    top: -210px;
    right: 10%;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.06);
    box-shadow:
        0 0 0 22px rgba(255,107,87,.03),
        0 0 0 48px rgba(114,168,255,.02);
    background: radial-gradient(circle, rgba(255,107,87,.08), transparent 62%);
    animation: heroOrbFloat 9s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroOrbFloat{
    0%,100%{ transform: translateY(0) rotate(0deg); }
    50%{ transform: translateY(-12px) rotate(8deg); }
}

.admin-hero-inner{
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.admin-hero-inner h1{
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(40px, 6vw, 78px);
    line-height: .94;
    letter-spacing: -0.06em;
    color: #fff;
}

.admin-hero-inner p{
    margin-top: 16px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--admin-muted);
}

.mini-label{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mini-label::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
}

.mini-label.gold{ color: #ffd978; }
.mini-label.blue{ color: #8dc1ff; }

/* =========================
   SECTION
========================= */
.admin-section-lift{
    padding-top: 10px;
    padding-bottom: 90px;
}

.admin-section-lift .container{
    position: relative;
    z-index: 2;
}

/* =========================
   PANELS
========================= */
.admin-panel,
.student-table-shell{
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--admin-border);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
    backdrop-filter: blur(16px);
    box-shadow: var(--admin-shadow);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.admin-panel::before,
.student-table-shell::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.09) 48%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 1.1s ease;
    pointer-events: none;
}

.admin-panel:hover,
.student-table-shell:hover{
    transform: translateY(-5px);
    box-shadow: var(--admin-shadow-hover);
    border-color: var(--admin-border-strong);
}

.admin-panel:hover::before,
.student-table-shell:hover::before{
    transform: translateX(120%);
}

/* =========================
   FORM
========================= */
.admin-panel form{
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.admin-panel label{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea{
    width: 100%;
    border: 1px solid rgba(255,255,255,.11);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(8px);
    transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.admin-panel input::placeholder,
.admin-panel textarea::placeholder{
    color: rgba(255,255,255,.42);
}

.admin-panel input:hover,
.admin-panel select:hover,
.admin-panel textarea:hover{
    border-color: rgba(255,255,255,.18);
}

.admin-panel input:focus,
.admin-panel select:focus,
.admin-panel textarea:focus{
    border-color: rgba(114,168,255,.56);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(114,168,255,.10);
}

.admin-panel textarea{
    min-height: 150px;
    resize: vertical;
}

.admin-panel select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,.76) 50%),
        linear-gradient(135deg, rgba(255,255,255,.76) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.admin-panel select option{
    color: #111;
}

.admin-panel input[type="file"]{
    cursor: pointer;
}

.form-grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* =========================
   BUTTONS
========================= */
.hero-actions,
.table-actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .03em;
    overflow: hidden;
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 46%, transparent 70%);
    transform: translateX(-130%);
    transition: transform .9s ease;
}

.btn:hover::before{
    transform: translateX(130%);
}

.btn:hover{
    transform: translateY(-3px);
}

.btn-primary{
    color: #fff;
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-primary-2));
    box-shadow: 0 16px 32px rgba(255,107,87,.26);
}

.btn-primary:hover{
    box-shadow: 0 22px 40px rgba(255,107,87,.35);
}

.btn-white{
    color: #fff;
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.btn-white:hover{
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.22);
}

.btn-sm{
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 13px;
}

.btn-outline-soft{
    border-color: rgba(255,255,255,.14);
}

/* =========================
   PANEL HEAD
========================= */
.panel-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.panel-head h2{
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
}

.mini-badge{
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.12);
}

.gold-badge{
    color: #ffd978;
    background: rgba(255,217,120,.08);
}

/* =========================
   COURSE GRID
========================= */
.course-admin-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.course-admin-card{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,.20);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.course-admin-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0,0,0,.28);
    border-color: rgba(255,255,255,.18);
}

.course-admin-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.course-admin-card:hover img{
    transform: scale(1.05);
}

.course-admin-body{
    padding: 20px;
}

.course-admin-body h3{
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
}

.course-admin-body p{
    margin-top: 10px;
    color: var(--admin-muted);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-admin-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.course-admin-meta span:first-child{
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

/* =========================
   STATUS / FEE
========================= */
.status-pill,
.fee-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.10);
    white-space: nowrap;
}

.status-active,
.status-approved{
    color: var(--admin-success);
    background: rgba(70,190,120,.12);
}

.status-inactive,
.status-pending{
    color: var(--admin-danger);
    background: rgba(255,90,90,.12);
}

.fee-pill{
    color: #fff;
    background: rgba(255,255,255,.08);
}

/* =========================
   STUDENT TABLE AREA
========================= */
.student-table-shell{
    padding: 28px;
}

.student-table-header{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.student-table-header h2{
    margin: 0;
    color: #fff;
    font-size: 38px;
    font-family: "Montserrat", sans-serif;
}

.student-table-header p{
    margin: 8px 0 0;
    color: var(--admin-muted);
}

/* =========================
   TOOLBAR
========================= */
.student-toolbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.student-search-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.student-search-wrap input{
    flex: 1;
    min-width: 260px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
}

.student-search-wrap input::placeholder{
    color: rgba(255,255,255,.46);
}

.toolbar-btn{
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.toolbar-btn:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.20);
}

.export-btn{
    background: linear-gradient(135deg, rgba(255,107,87,.16), rgba(255,255,255,.08));
}

/* =========================
   PREMIUM TABLE
========================= */
.premium-table-wrap{
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}

.premium-student-table{
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
    table-layout: fixed;
}

.premium-student-table thead th{
    text-align: left;
    padding: 18px 14px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,.82);
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(255,255,255,.10);
    white-space: nowrap;
    cursor: pointer;
}

.premium-student-table thead th:last-child{
    cursor: default;
}

.premium-student-table tbody td{
    padding: 16px 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.07);
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-student-table tbody tr{
    transition: background .25s ease;
}

.premium-student-table tbody tr:hover{
    background: rgba(255,255,255,.045);
}

.premium-student-table th:nth-child(1),
.premium-student-table td:nth-child(1){ width: 70px; }

.premium-student-table th:nth-child(2),
.premium-student-table td:nth-child(2){ width: 230px; }

.premium-student-table th:nth-child(3),
.premium-student-table td:nth-child(3){ width: 150px; }

.premium-student-table th:nth-child(4),
.premium-student-table td:nth-child(4){ width: 220px; }

.premium-student-table th:nth-child(5),
.premium-student-table td:nth-child(5){ width: 150px; }

.premium-student-table th:nth-child(6),
.premium-student-table td:nth-child(6){ width: 140px; }

.premium-student-table th:nth-child(7),
.premium-student-table td:nth-child(7){ width: 110px; }

.premium-student-table th:nth-child(8),
.premium-student-table td:nth-child(8){ width: 120px; }

.premium-student-table th:nth-child(9),
.premium-student-table td:nth-child(9){ width: 180px; }

.sort-indicator{
    opacity: .7;
    margin-left: 4px;
}

/* =========================
   STUDENT CELL
========================= */
.student-cell{
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.student-avatar-wrap{
    position: relative;
    flex-shrink: 0;
}

.student-avatar-img{
    width: 62px;
    height: 62px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.student-avatar-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.student-photo-trigger{
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.student-text-block{
    min-width: 0;
}

.student-text-block strong{
    display: block;
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.student-meta{
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--admin-soft);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.student-status-dot{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(8,10,30,1);
}

.online-dot{
    background: #6dff9c;
    box-shadow: 0 0 10px #6dff9c;
}

.offline-dot{
    background: #ff9292;
    box-shadow: 0 0 10px #ff9292;
}

/* =========================
   ACTIONS IN TABLE
========================= */
.table-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table-actions form{
    margin: 0;
}

.table-actions .btn{
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
}

/* =========================
   FOOTER BAR
========================= */
.table-footer-bar{
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.table-result-info{
    color: var(--admin-muted);
    font-size: 14px;
}

.table-pagination{
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-btn{
    min-width: 86px;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.page-btn:disabled{
    opacity: .45;
    cursor: not-allowed;
}

.page-status{
    color: rgba(255,255,255,.84);
    font-size: 14px;
    font-weight: 700;
}

/* =========================
   EMPTY STATE
========================= */
.empty-admin-state{
    text-align: center;
    padding: 56px 20px;
    border-radius: 24px;
    border: 1px dashed rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
}

.empty-admin-state i{
    font-size: 42px;
    color: var(--admin-warning);
}

.empty-admin-state h3{
    margin: 18px 0 10px;
    color: #fff;
    font-size: 28px;
}

.empty-admin-state p{
    max-width: 520px;
    margin: 0 auto 22px;
    color: var(--admin-muted);
    line-height: 1.8;
}

/* =========================
   STUDENT PHOTO MODAL
========================= */
.student-photo-modal{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.student-photo-modal.active{
    display: flex;
}

.student-photo-modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(4,8,18,.78);
    backdrop-filter: blur(12px);
}

.student-photo-modal-content{
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    border-radius: 28px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 80px rgba(0,0,0,.40);
    animation: modalPop .28s ease;
}

@keyframes modalPop{
    from{ opacity: 0; transform: scale(.92) translateY(10px); }
    to{ opacity: 1; transform: scale(1) translateY(0); }
}

.student-photo-modal-content img{
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.student-photo-caption{
    margin-top: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.student-photo-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.48);
    color: #fff;
    cursor: pointer;
    z-index: 3;
}

/* =========================
   REVEAL
========================= */
.reveal{
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s ease, transform .85s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   IMAGE PREVIEW IN EDIT FORM
========================= */
.current-student-preview{
    margin-top: 12px;
}

.current-student-preview img{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px){
    .course-admin-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px){
    .admin-premium-hero{
        min-height: auto;
        padding: 46px 0 28px;
    }

    .admin-premium-hero::after{
        display: none;
    }

    .form-grid-2{
        grid-template-columns: 1fr;
    }

    .course-admin-grid{
        grid-template-columns: 1fr;
    }

    .premium-student-table{
        min-width: 1040px;
    }
}

@media (max-width: 768px){
    .admin-hero-inner h1{
        font-size: clamp(34px, 12vw, 54px);
    }

    .admin-hero-inner p{
        font-size: 16px;
    }

    .admin-panel,
    .student-table-shell{
        padding: 22px;
        border-radius: 24px;
    }

    .student-table-header{
        align-items: stretch;
    }

    .student-table-header .btn{
        width: 100%;
    }

    .student-toolbar{
        flex-direction: column;
        align-items: stretch;
    }

    .student-search-wrap{
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-btn{
        width: 100%;
    }

    .hero-actions{
        flex-direction: column;
    }

    .hero-actions .btn{
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce){
    *,
    *::before,
    *::after{
        animation: none !important;
        transition: none !important;
    }

    .reveal{
        opacity: 1 !important;
        transform: none !important;
    }
}


.real-logo{
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.logo-texts h2{
    margin: 0;
    font-size: clamp(24px, 2.2vw, 38px);
    line-height: 1.02;
    font-weight: 800;
}

#siaHeroTitle{
    font-size: clamp(48px, 6vw, 92px);
    line-height: .95;
    letter-spacing: -0.06em;
    max-width: 8ch;
}

