:root{
    --brand-blue:#0094D9;
    --brand-indigo:#0077C8;
    --brand-cyan:#38BDF8;
    --brand-orange:#00AEEF;
    --brand-amber:#7DD3FC;
    --brand-dark:#071827;

    --bg-main:#EEF7FC;
    --bg-alt:#E2F0F8;

    --text:#0B172A;
    --text-light:#5B6B7E;

    --white:#FFFFFF;
    --border:rgba(11,23,42,.08);

    --gradient-brand:linear-gradient(135deg,#0094D9,#38BDF8);
    --gradient-blue:linear-gradient(135deg,#0077C8,#00AEEF);
    --gradient-warm:linear-gradient(135deg,#0094D9,#7DD3FC);
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;

    background:
        radial-gradient(circle at top left,
        rgba(0,119,200,.16),
        transparent 24%),

        radial-gradient(circle at top right,
        rgba(56,189,248,.12),
        transparent 22%),

        linear-gradient(
            180deg,
            #E4EEF6 0%,
            #DCE9F3 40%,
            #D4E3EE 100%);

    color:var(--text);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

section{
    position:relative;
    overflow:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

iframe{
    max-width:100%;
}

a{
    text-decoration:none;
}

.container{
    position:relative;
    z-index:2;
}

/* NAVBAR */
.navbar-custom{
    background:rgba(255,255,255,.92)!important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    padding:14px 0;
    min-height:92px;
    border-bottom:1px solid rgba(16,24,40,.06);
    box-shadow:0 14px 40px rgba(16,24,40,.08);
    overflow:visible;
    transition:
        padding .35s ease,
        min-height .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.navbar-custom.navbar-scrolled{
    padding:6px 0;
    min-height:72px;
    background:rgba(255,255,255,.96)!important;
    box-shadow:0 18px 45px rgba(16,24,40,.12);
}

.nav-container{
    min-height:86px;
    display:flex;
    align-items:center;
    transition:min-height .35s ease;
}

.navbar-scrolled .nav-container{
    min-height:66px;
}

.navbar-brand{
    padding:0;
    margin:0;
    position:relative;
}

.navbar-brand-custom{
    position:relative;
    z-index:20;
    width:330px;
    max-width:330px;
    height:74px;
    display:flex;
    align-items:center;
    flex-shrink:0;
    transition:
        width .35s ease,
        max-width .35s ease,
        height .35s ease;
}

.navbar-logo{
    position:absolute;
    left:0;
    top:50%;
    width:320px;
    max-height:120px;
    object-fit:contain;
    transform:translateY(-58%);
    transition:
        width .35s ease,
        max-height .35s ease,
        transform .35s ease,
        filter .35s ease;
    filter:drop-shadow(0 16px 28px rgba(16,24,40,.18));
    will-change:width, transform;
}

.navbar-scrolled .navbar-brand-custom{
    width:225px;
    max-width:225px;
    height:58px;
}

.navbar-scrolled .navbar-logo{
    width:215px;
    max-height:58px;
    transform:translateY(-50%);
    filter:drop-shadow(0 8px 18px rgba(16,24,40,.12));
}

.nav-pill{
    margin-left:34px;
    background:rgba(243,246,251,.92);
    border:1px solid rgba(16,24,40,.07);
    border-radius:999px;
    padding:7px;
    transition:margin .35s ease;
}

.navbar-scrolled .nav-pill{
    margin-left:22px;
}

.navbar-custom .nav-link{
    color:var(--text)!important;
    font-size:14px;
    font-weight:700;
    padding:11px 18px!important;
    border-radius:999px;
    transition:.25s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active{
    background:var(--gradient-brand);
    color:#fff!important;
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(79,70,229,.22);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:18px;
}

.nav-socials{
    display:flex;
    align-items:center;
    gap:8px;
}

.social-icon{
    width:40px;
    height:40px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F3F6FB;
    color:var(--text);
    border:1px solid rgba(16,24,40,.07);
    transition:.25s ease;
}

.social-icon:hover{
    background:var(--brand-indigo);
    color:white;
    transform:translateY(-2px);
}

.nav-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    color:#fff;
    font-size:14px;
    font-weight:800;
    background:var(--gradient-brand);
    box-shadow:0 12px 28px rgba(79,70,229,.24);
    transition:.3s ease;
}

.nav-cta:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 16px 35px rgba(249,115,22,.28);
}

.custom-toggler,
.navbar-toggler{
    width:46px;
    height:46px;
    border-radius:14px;
    background:#F3F6FB;
    border:1px solid rgba(16,24,40,.08)!important;
    box-shadow:none!important;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
}

.custom-toggler span{
    width:22px;
    height:2px;
    border-radius:20px;
    background:var(--text);
}

/* DROPDOWN */
.dropdown-menu{
    border:none;
    border-radius:22px;
    background:white;
    box-shadow:0 25px 45px rgba(16,24,40,.12);
}

.premium-dropdown{
    min-width:380px;
    padding:18px;
    border-radius:26px;
    border:1px solid rgba(16,24,40,.07);
    background:white;
    box-shadow:0 30px 70px rgba(16,24,40,.18);
}

.dropdown-header-custom{
    padding:8px 10px 16px;
}

.dropdown-header-custom span{
    display:block;
    color:var(--text);
    font-size:15px;
    font-weight:800;
}

.dropdown-header-custom small{
    color:var(--text-light);
    font-size:12px;
}

.premium-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    border-radius:18px;
    position:relative;
    transition:.25s ease;
}

.premium-item strong{
    display:block;
    color:var(--text);
    font-size:14px;
}

.premium-item small{
    display:block;
    color:var(--text-light);
    font-size:12px;
}

.premium-item:hover{
    background:rgba(79,70,229,.08);
    transform:translateX(4px);
}

.premium-item.highlighted{
    background:linear-gradient(135deg,rgba(79,70,229,.09),rgba(249,115,22,.10));
}

.item-arrow{
    margin-left:auto;
    color:var(--brand-indigo);
    opacity:0;
    transition:.25s ease;
    font-size:22px;
}

.premium-item:hover .item-arrow{
    opacity:1;
}

.menu-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.menu-icon.excel{
    background:rgba(16,185,129,.12);
    color:#059669;
}

.menu-icon.word{
    background:rgba(37,99,235,.12);
    color:#2563EB;
}

.menu-icon.powerbi{
    background:rgba(245,158,11,.16);
    color:#D97706;
}

.menu-icon.cert{
    background:rgba(79,70,229,.12);
    color:var(--brand-indigo);
}

/* BUTTONS */
.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--gradient-brand);
    color:white!important;
    padding:14px 26px;
    border-radius:16px;
    font-size:14px;
    font-weight:700;
    border:none;
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
    box-shadow:0 10px 30px rgba(79,70,229,.25);
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 40px rgba(249,115,22,.28);
}

.btn-outline-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 24px;
    border-radius:16px;
    border:2px solid rgba(79,70,229,.18);
    background:white;
    color:var(--brand-indigo)!important;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
}

.btn-outline-custom:hover{
    border-color:var(--brand-indigo);
    background:rgba(79,70,229,.06);
    transform:translateY(-2px);
}

/* HERO */
.hero-section{
    padding-top:185px;
    padding-bottom:120px;

    background:
        radial-gradient(circle at top left,
        rgba(0,119,200,.22) 0%,
        transparent 30%),

        radial-gradient(circle at top right,
        rgba(56,189,248,.18) 0%,
        transparent 28%),

        radial-gradient(circle at bottom left,
        rgba(0,148,217,.14) 0%,
        transparent 32%),

        linear-gradient(
            180deg,
            #E6F0F7 0%,
            #DCE9F3 45%,
            #D2E1EC 100%);
}

.hero-section::before{
    content:'';
    position:absolute;
    top:-180px;
    right:-120px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(79,70,229,.20),transparent 70%);
    filter:blur(34px);
}

.hero-section::after{
    content:'';
    position:absolute;
    bottom:-220px;
    left:-120px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(249,115,22,.16),transparent 70%);
    filter:blur(44px);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(79,70,229,.18);
    color:var(--brand-indigo);
    border-radius:999px;
    padding:10px 18px;
    font-size:13px;
    font-weight:800;
    margin-bottom:26px;
    backdrop-filter:blur(14px);
}

.hero-title{
    font-size:clamp(2.8rem,5vw,5.2rem);
    line-height:1.02;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.hero-title span,
.section-title h2 span,
.about-title span{
    background:var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-description{
    max-width:600px;
    color:var(--text-light);
    font-size:1.08rem;
    line-height:1.9;
}

.hero-buttons,
.hero-features{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:35px;
}

.hero-feature{
    background:rgba(255,255,255,.80);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.75);
    box-shadow:0 14px 34px rgba(16,24,40,.07);
    padding:12px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
}

.hero-feature i{
    color:var(--brand-orange);
    margin-right:6px;
}

.hero-image{
    max-width:100%;
    animation:float 5s ease-in-out infinite;
    filter:drop-shadow(0 40px 60px rgba(16,24,40,.18));
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

/* SECTIONS */
.services-section,
.courses-section,
.stats-section,
.cta-section{
    padding:100px 0;
}

.services-section{
    background:
        radial-gradient(circle at top right,
        rgba(0,119,200,.14),
        transparent 26%),

        radial-gradient(circle at bottom left,
        rgba(56,189,248,.10),
        transparent 24%),

        linear-gradient(
            180deg,
            #DDEAF3 0%,
            #EAF3F9 100%);
}

.stats-section{
    background:
        radial-gradient(circle at bottom left,rgba(249,115,22,.08),transparent 24%),
        linear-gradient(180deg,#FAFBFF 0%,#EEF2F8 100%);
}

.courses-section{
    background:
        radial-gradient(circle at top left,
        rgba(0,119,200,.10),
        transparent 26%),

        linear-gradient(
            180deg,
            #E0ECF5 0%,
            #F0F7FB 100%);
}

.services-section::before,
.stats-section::before,
.courses-section::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:82%;
    height:1px;
    background:linear-gradient(to right,transparent,rgba(16,24,40,.08),transparent);
}

/* TITLES */
.section-title{
    max-width:760px;
    margin-inline:auto;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(79,70,229,.10);
    color:var(--brand-indigo);
    border-radius:999px;
    padding:8px 16px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.section-title h2{
    font-size:clamp(2rem,4vw,3.5rem);
    font-weight:900;
    line-height:1.1;
    margin-bottom:18px;
}

.section-title p{
    color:var(--text-light);
    line-height:1.9;
    font-size:1.05rem;
}

/* CARDS */
.service-card,
.course-card,
.stat-card{
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:30px;
    padding:34px;
    border:1px solid rgba(255,255,255,.78);
    height:100%;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(16,24,40,.07);
}

.service-card::before,
.course-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--gradient-brand);
    opacity:0;
    transition:.3s ease;
}

.service-card:hover::before,
.course-card:hover::before{
    opacity:1;
}

.service-card:hover,
.course-card:hover,
.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 52px rgba(16,24,40,.12);
}

.service-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(79,70,229,.11);
    color:var(--brand-indigo);
    font-size:30px;
    margin-bottom:24px;
}

.service-card h4,
.course-card h4{
    font-size:1.3rem;
    font-weight:800;
    margin-bottom:14px;
}

.service-card p,
.course-card p{
    color:var(--text-light);
    line-height:1.8;
    font-size:15px;
}

/* COURSE */
.course-image{
    margin-bottom:22px;
}

.course-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:var(--brand-indigo);
    font-weight:800;
    transition:.25s ease;
}

.course-btn:hover{
    gap:12px;
    color:var(--brand-orange);
}

/* STATS */
.stat-card h2{
    font-size:3rem;
    font-weight:900;
    margin-bottom:10px;
    background:var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* CTA */
.cta-box{
    background:
        radial-gradient(circle at top right,rgba(255,255,255,.22),transparent 35%),
        var(--gradient-brand);
    border-radius:38px;
    padding:90px 50px;
    color:white;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(79,70,229,.22);
}

.cta-box h2{
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.1;
    font-weight:900;
}

.cta-box p{
    color:rgba(255,255,255,.88);
    line-height:1.9;
}

/* PROCESS */
.process-section{
    background:
        radial-gradient(circle at top right,
        rgba(0,119,200,.14),
        transparent 28%),

        radial-gradient(circle at bottom left,
        rgba(56,189,248,.12),
        transparent 28%),

        linear-gradient(
            180deg,
            #DCE9F3 0%,
            #EDF5FA 100%);
}

.process-card{
    height:100%;
    position:relative;
    overflow:hidden;
    padding:22px;
    border-radius:32px;
    background:rgba(255,255,255,.84);
    border:1px solid rgba(255,255,255,.78);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 24px 50px rgba(16,24,40,.08);
    transition:.35s ease;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 32px 65px rgba(16,24,40,.13);
}

.process-card.featured{
    background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.80));
    border:1px solid rgba(79,70,229,.18);
}

.process-image{
    height:190px;
    border-radius:24px;
    overflow:hidden;
    margin-bottom:24px;
    background:linear-gradient(135deg,rgba(79,70,229,.08),rgba(249,115,22,.08));
}

.process-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.process-card:hover .process-image img{
    transform:scale(1.06);
}

.process-number{
    position:absolute;
    top:32px;
    right:32px;
    z-index:2;
    width:54px;
    height:54px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:900;
    font-size:15px;
    background:var(--gradient-brand);
    box-shadow:0 14px 30px rgba(79,70,229,.28);
}

.process-icon{
    width:62px;
    height:62px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:var(--brand-indigo);
    background:rgba(79,70,229,.10);
    margin-bottom:18px;
}

.process-card h4{
    font-size:1.25rem;
    font-weight:900;
    margin-bottom:12px;
    color:var(--text);
}

.process-card p{
    color:var(--text-light);
    line-height:1.8;
    font-size:15px;
    margin-bottom:0;
}

/* ABOUT */
.about-index-section{
    position:relative;
    background:
        radial-gradient(circle at top left,rgba(79,70,229,.08),transparent 28%),
        radial-gradient(circle at bottom right,rgba(249,115,22,.08),transparent 28%),
        linear-gradient(180deg,#EEF2F8 0%,#FAFBFF 100%);
    padding:100px 0;
}

.about-image-card{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(255,255,255,.78);
    box-shadow:0 28px 60px rgba(16,24,40,.10);
    padding:18px;
}

.about-image-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:26px;
}

.about-title{
    font-size:clamp(2rem,4vw,3.2rem);
    font-weight:900;
    line-height:1.1;
    margin:18px 0;
}

.about-text{
    color:var(--text-light);
    line-height:1.9;
    font-size:1rem;
    margin-bottom:16px;
}

.about-highlights{
    display:grid;
    gap:12px;
    margin-top:24px;
}

.about-highlights div{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(255,255,255,.78);
    color:var(--text);
    font-weight:700;
    box-shadow:0 12px 28px rgba(16,24,40,.05);
}

.about-highlights i{
    color:var(--brand-orange);
    font-size:18px;
    margin-top:2px;
}

/* CONTACT PAGE */
.contact-hero{
    position:relative;
    padding:150px 0 90px;
    background:
        radial-gradient(circle at top left,rgba(79,70,229,.15),transparent 30%),
        radial-gradient(circle at top right,rgba(249,115,22,.13),transparent 28%),
        linear-gradient(180deg,#F8FAFC 0%,#EFF4FF 100%);
    overflow:hidden;
}

.contact-hero-content{
    position:relative;
    z-index:2;
}

.contact-hero h1{
    max-width:780px;
    margin:24px auto 18px;
    font-size:clamp(2.8rem,6vw,5rem);
    line-height:1;
    font-weight:900;
    letter-spacing:-2px;
    color:var(--text);
}

.contact-hero h1 span{
    background:var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-hero p{
    max-width:650px;
    margin:0 auto;
    color:var(--text-light);
    font-size:1.08rem;
    line-height:1.8;
}

.contact-page-section{
    padding:90px 0;

    background:
        radial-gradient(circle at top right,
        rgba(0,119,200,.16),
        transparent 28%),

        radial-gradient(circle at bottom left,
        rgba(56,189,248,.12),
        transparent 24%),

        linear-gradient(
            180deg,
            #DDEAF3 0%,
            #EEF5FA 100%);
}

.contact-panel{
    height:100%;
    padding:34px;
    border-radius:32px;
    background:rgba(255,255,255,.84);
    border:1px solid rgba(255,255,255,.78);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 26px 60px rgba(16,24,40,.08);
}

.contact-panel h2{
    margin:18px 0 10px;
    font-size:clamp(1.8rem,3vw,2.6rem);
    font-weight:900;
    line-height:1.12;
    color:var(--text);
}

.contact-panel h2 span{
    background:var(--gradient-brand);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-muted{
    color:var(--text-light);
    margin-bottom:26px;
}

.contact-form-card .form-label{
    font-size:13px;
    font-weight:800;
    color:var(--text);
    margin-bottom:8px;
}

.custom-input{
    height:50px;
    border-radius:12px;
    border:1px solid rgba(16,24,40,.10);
    background:rgba(255,255,255,.88);
    color:var(--text);
    font-size:14px;
    box-shadow:none!important;
}

textarea.custom-input{
    height:auto;
    min-height:145px;
    resize:vertical;
}

.custom-input:focus{
    border-color:rgba(79,70,229,.45);
    box-shadow:0 0 0 4px rgba(79,70,229,.10)!important;
}

.input-icon{
    position:relative;
}

.input-icon i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:var(--text-light);
    font-size:15px;
    z-index:2;
}

.input-icon .custom-input{
    padding-left:44px;
}

.contact-safe{
    margin-top:18px;
    text-align:center;
    color:var(--text-light);
    font-size:13px;
}

.contact-safe i{
    color:var(--brand-indigo);
    margin-right:6px;
}

.contact-methods{
    display:grid;
    gap:14px;
    margin-top:24px;
}

.contact-method{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px;
    border-radius:18px;
    background:white;
    border:1px solid rgba(16,24,40,.06);
    box-shadow:0 14px 32px rgba(16,24,40,.055);
    color:var(--text);
    transition:.25s ease;
}

.contact-method:hover{
    transform:translateY(-4px);
    color:var(--text);
    box-shadow:0 20px 45px rgba(16,24,40,.10);
}

.contact-method h5{
    font-size:15px;
    font-weight:900;
    margin-bottom:4px;
}

.contact-method p{
    margin:0;
    color:var(--text-light);
    font-size:13px;
    line-height:1.4;
    overflow-wrap:anywhere;
}

.contact-method-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:white;
    font-size:22px;
}

.contact-method-icon.whatsapp{background:#25D366;}
.contact-method-icon.email{background:var(--brand-indigo);}
.contact-method-icon.facebook{background:#1877F2;}
.contact-method-icon.instagram{background:linear-gradient(135deg,#833AB4,#FD1D1D,#FCAF45);}
.contact-method-icon.help{background:var(--gradient-brand);}

.contact-arrow{
    margin-left:auto;
    color:var(--text-light);
    font-size:18px;
}

.contact-help-box{
    margin-top:28px;
    padding:20px;
    border-radius:22px;
    display:flex;
    gap:14px;
    align-items:center;
    background:linear-gradient(135deg,rgba(79,70,229,.10),rgba(249,115,22,.08));
    border:1px solid rgba(79,70,229,.12);
}

.contact-help-box h5{
    font-weight:900;
    margin-bottom:4px;
}

.contact-help-box p{
    margin:0;
    color:var(--text-light);
    font-size:14px;
    line-height:1.5;
}

.contact-benefits{
    margin-top:28px;
    padding:24px;
    border-radius:28px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(255,255,255,.78);
    box-shadow:0 20px 50px rgba(16,24,40,.06);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.contact-benefit{
    display:flex;
    align-items:center;
    gap:14px;
}

.contact-benefit:not(:last-child){
    border-right:1px solid rgba(16,24,40,.08);
    padding-right:18px;
}

.contact-benefit-icon{
    width:48px;
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:20px;
    flex-shrink:0;
}

.contact-benefit-icon.blue{background:var(--gradient-blue);}
.contact-benefit-icon.green{background:linear-gradient(135deg,#10B981,#06B6D4);}
.contact-benefit-icon.purple{background:linear-gradient(135deg,#4F46E5,#8B5CF6);}
.contact-benefit-icon.orange{background:var(--gradient-warm);}

.contact-benefit h5{
    margin:0 0 3px;
    font-size:14px;
    font-weight:900;
}

.contact-benefit p{
    margin:0;
    font-size:12px;
    color:var(--text-light);
    line-height:1.4;
}

/* FOOTER */
.footer-section{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,rgba(79,70,229,.24),transparent 30%),
        radial-gradient(circle at bottom right,rgba(249,115,22,.18),transparent 30%),
        linear-gradient(135deg,#070B16 0%,#0B1120 48%,#111827 100%);
    color:rgba(255,255,255,.72);
    padding:110px 0 34px;
}

.footer-main{
    position:relative;
    z-index:2;
    padding:36px;
    border-radius:36px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 30px 80px rgba(0,0,0,.22);
}

.footer-brand-card{
    height:100%;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.footer-logo{
    width:230px;
    max-width:100%;
    margin-bottom:22px;
}

.footer-brand-card p{
    font-size:14px;
    line-height:1.9;
    color:rgba(255,255,255,.68);
    margin-bottom:24px;
}

.footer-socials{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s ease;
}

.footer-socials a:hover{
    background:var(--gradient-brand);
    transform:translateY(-3px);
}

.footer-section h5{
    color:white;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:22px;
}

.footer-links{
    list-style:none;
    padding-left:0;
    margin:0;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.68);
    font-size:14px;
    text-decoration:none;
    transition:.25s ease;
}

.footer-links a i{
    color:var(--brand-orange);
    font-size:16px;
}

.footer-links a:hover{
    color:white;
    transform:translateX(5px);
}

.footer-contact-list,
.footer-contact-grid{
    width:100%;
    max-width:100%;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-contact-item{
    width:100%;
    min-width:0;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:18px;
    color:rgba(255,255,255,.78);
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.07);
    text-decoration:none;
    transition:.25s ease;
    overflow:hidden;
    backdrop-filter:blur(12px);
}

.footer-contact-item:hover{
    color:white;
    background:rgba(255,255,255,.08);
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.footer-contact-content{
    min-width:0;
    flex:1;
    display:block;
}

.footer-contact-content small{
    display:block;
    color:rgba(255,255,255,.45);
    font-size:11px;
    margin-bottom:4px;
}

.footer-contact-content a{
    display:block;
    color:rgba(255,255,255,.88);
    font-size:13px;
    line-height:1.5;
    word-break:break-word;
    overflow-wrap:anywhere;
    text-decoration:none;
}

.footer-contact-icon{
    width:38px;
    height:38px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.footer-contact-icon.blue{
    background:rgba(79,70,229,.18);
    color:#A5B4FC;
}

.footer-contact-icon.green{
    background:rgba(249,115,22,.18);
    color:#FDBA74;
}

.footer-bottom{
    position:relative;
    z-index:2;
    margin-top:26px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    color:rgba(255,255,255,.48);
    font-size:13px;
}

.footer-legal{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-legal a{
    color:rgba(255,255,255,.48);
    text-decoration:none;
    transition:.25s ease;
}

.footer-legal a:hover{
    color:white;
}

/* BACK TO TOP */
.back-to-top{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    border:none;
    border-radius:18px;
    background:var(--gradient-brand);
    color:white;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.3s ease;
    box-shadow:0 12px 30px rgba(79,70,229,.28),0 8px 20px rgba(249,115,22,.18);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    transform:translateY(-5px) scale(1.05);
}

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:all .7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ADMIN ACCESS BUTTON */
.nav-admin-access{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 16px;
    border-radius:20px;
    min-width:245px;
    background:
        linear-gradient(135deg,
        rgba(255,255,255,.92),
        rgba(255,255,255,.78));
    border:1px solid rgba(0,148,217,.14);
    box-shadow:
        0 12px 30px rgba(0,148,217,.10),
        inset 0 1px 0 rgba(255,255,255,.7);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:.35s ease;
}

.nav-admin-access:hover{
    transform:translateY(-3px);
    box-shadow:
        0 20px 45px rgba(0,148,217,.18),
        0 10px 25px rgba(56,189,248,.12);
}

.nav-admin-glow{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(56,189,248,.18),
        transparent 35%);
    opacity:.9;
    pointer-events:none;
}

.nav-admin-icon{
    position:relative;
    width:48px;
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--gradient-brand);
    color:white;
    font-size:20px;
    flex-shrink:0;
    box-shadow:
        0 10px 22px rgba(0,148,217,.24);
}

.nav-admin-content{
    position:relative;
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.nav-admin-content small{
    font-size:11px;
    font-weight:700;
    color:var(--text-light);
    text-transform:uppercase;
    letter-spacing:.6px;
}

.nav-admin-content span{
    font-size:14px;
    font-weight:800;
    color:var(--text);
}

.nav-admin-arrow{
    margin-left:auto;
    font-size:24px;
    color:var(--brand-blue);
    transition:.25s ease;
}

.nav-admin-access:hover .nav-admin-arrow{
    transform:translateX(4px);
}

/* RESPONSIVE */
@media(max-width:1200px){
    .navbar-brand-custom{
        width:260px;
        max-width:260px;
    }

    .navbar-logo{
        width:250px;
        max-height:92px;
    }

    .navbar-scrolled .navbar-brand-custom{
        width:210px;
        max-width:210px;
    }

    .navbar-scrolled .navbar-logo{
        width:200px;
        max-height:54px;
    }

    .navbar-custom .nav-link{
        padding:10px 13px!important;
        font-size:13px;
    }
}

@media(max-width:991px){
    .navbar-custom{
        padding:10px 0;
        min-height:78px;
    }

    .navbar-custom.navbar-scrolled{
        min-height:68px;
    }

    .nav-container{
        min-height:72px;
    }

    .navbar-scrolled .nav-container{
        min-height:60px;
    }

    .navbar-brand-custom{
        width:240px;
        max-width:240px;
        height:62px;
    }

    .navbar-logo{
        width:230px;
        max-height:66px;
        transform:translateY(-50%);
    }

    .navbar-scrolled .navbar-brand-custom{
        width:195px;
        max-width:195px;
        height:54px;
    }

    .navbar-scrolled .navbar-logo{
        width:185px;
        max-height:52px;
    }

    .navbar-collapse{
        margin-top:14px;
        background:white;
        padding:22px;
        border-radius:24px;
        border:1px solid rgba(16,24,40,.08);
        box-shadow:0 20px 45px rgba(16,24,40,.10);
    }

    .nav-pill,
    .navbar-scrolled .nav-pill{
        margin-left:0;
        background:transparent;
        border:none;
        padding:0;
    }

    .navbar-custom .nav-link{
        display:flex;
        align-items:center;
        gap:10px;
        padding:14px 16px!important;
        border-radius:16px;
    }

    .premium-dropdown{
        min-width:100%;
        box-shadow:none;
        border-radius:20px;
        margin-top:10px;
    }

    .nav-actions{
        flex-direction:column;
        align-items:stretch;
        margin-top:20px;
    }

    .nav-socials,
    .hero-buttons,
    .hero-features{
        justify-content:center;
    }

    .nav-cta{
        width:100%;
        justify-content:center;
    }

    .nav-admin-access{
        width:100%;
        justify-content:flex-start;
        min-width:100%;
    }

    .hero-section{
        padding-top:135px;
        text-align:center;
    }

    .hero-description{
        margin-inline:auto;
    }

    .footer-main{
        padding:28px;
    }

    .contact-hero{
        padding:130px 0 70px;
    }

    .contact-benefits{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-benefit:nth-child(2){
        border-right:none;
    }
}

@media(max-width:768px){
    .hero-section{
        padding-top:130px;
        padding-bottom:70px;
    }

    .hero-title{
        font-size:2.5rem;
        line-height:1.08;
    }

    .hero-description{
        font-size:.98rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .service-card,
    .course-card,
    .stat-card{
        padding:26px;
    }

    .cta-box{
        padding:50px 24px;
        border-radius:28px;
    }

    .footer-section{
        padding:80px 0 28px;
        text-align:center;
    }

    .footer-main{
        padding:24px;
        border-radius:28px;
    }

    .footer-logo{
        margin-inline:auto;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-contact-item{
        text-align:left;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .process-section,
    .about-index-section{
        padding:80px 0;
    }

    .process-image{
        height:210px;
    }

    .process-card{
        padding:20px;
    }

    .about-index-section{
        text-align:center;
    }

    .about-image-card img{
        height:300px;
    }

    .about-highlights div{
        text-align:left;
    }
}

@media(max-width:576px){
    .navbar-brand-custom{
        width:205px;
        max-width:205px;
        height:58px;
    }

    .navbar-logo{
        width:195px;
        max-height:58px;
    }

    .navbar-scrolled .navbar-brand-custom{
        width:165px;
        max-width:165px;
        height:48px;
    }

    .navbar-scrolled .navbar-logo{
        width:158px;
        max-height:46px;
    }

    .hero-title{
        font-size:2.2rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
    }

    .hero-feature{
        width:100%;
        justify-content:center;
    }

    .stat-card h2{
        font-size:2.4rem;
    }

    .contact-panel{
        padding:24px;
        border-radius:26px;
    }

    .contact-benefits{
        grid-template-columns:1fr;
    }

    .contact-benefit{
        border-right:none!important;
        padding-right:0!important;
    }

    .contact-hero h1{
        font-size:2.5rem;
    }

    .back-to-top{
        width:52px;
        height:52px;
        right:16px;
        bottom:16px;
        border-radius:16px;
        font-size:20px;
    }
}
