:root{
    --primary:#af0065;
    --primary-dark:#780051;
    --secondary:#2f0a2d;
    --light:#faf7fa;
    --text:#2d2d2d;
    --muted:#666;
    --line:#ece4ea;
    --white:#ffffff;
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

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

a{
    text-decoration:none;
    color:inherit;
}

.wrap{
    width:min(1240px,92%);
    margin:auto;
}

.topbar{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
}

.nav{
    height:95px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:58px;
    width:auto;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    font-size:14px;
    font-weight:700;
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:.6px;
    transition:.2s;
}

.menu a:hover{
    color:var(--primary);
}

.menu .btn-exam{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    padding:14px 22px;
    border-radius:6px;
}

.footer{
    background:#1a0617;
    color:#fff;
    padding:80px 0 40px;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:50px;
}

.footer h3{
    margin-bottom:18px;
    font-size:22px;
}

.footer p,
.footer a{
    color:#d8c9d4;
    line-height:1.9;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#c3b3c0;
}

.btn{
    display:inline-block;
    padding:16px 28px;
    border-radius:6px;
    font-weight:700;
    transition:.2s;
}

.btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
}

.btn-secondary{
    background:#fff;
    color:var(--primary-dark);
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title small{
    color:var(--primary);
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    margin:18px 0;
    color:var(--secondary);
    line-height:1.15;
}

.section-title p{
    max-width:900px;
    margin:auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}

@media(max-width:900px){

    .nav{
        height:auto;
        padding:20px 0;
        flex-direction:column;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:36px;
    }
}

/* =========================
   PREMIUM FOOTER
========================= */

.footer{
    background:
    linear-gradient(
    135deg,
    #1a0617 0%,
    #2d0825 40%,
    #780051 100%
    );

    color:#fff;
    margin-top:100px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
}

.footer::after{
    content:"";
    position:absolute;
    bottom:-140px;
    left:-140px;
    width:340px;
    height:340px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
}

.footer-top{
    padding:90px 0 60px;
    position:relative;
    z-index:2;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo img{
    height:70px;
    margin-bottom:25px;
}

.footer-about{
    color:#ead9e5;
    line-height:2;
    font-size:16px;
    max-width:420px;
}

.footer h3{
    margin-bottom:24px;
    font-size:22px;
    color:#fff;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links a{
    color:#ead9e5;
    transition:.2s;
}

.footer-links a:hover{
    color:#fff;
    transform:translateX(4px);
}

.footer-contact p{
    color:#ead9e5;
    line-height:2;
    margin-bottom:16px;
}

.footer-social{
    display:flex;
    gap:16px;
    margin-top:28px;
}

.footer-social a{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.25s;
}

.footer-social a:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:26px 0;
    text-align:center;
    color:#d8bfd0;
    position:relative;
    z-index:2;
    font-size:15px;
}

.footer-bottom strong{
    color:#fff;
}

@media(max-width:980px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-top{
        padding:70px 0 40px;
    }

}

/* =========================
   PREMIUM FOOTER GLOBAL
========================= */

.footer{
    background:
    linear-gradient(
    135deg,
    #1a0617 0%,
    #2d0825 40%,
    #780051 100%
    );
    color:#fff;
    margin-top:100px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
}

.footer::after{
    content:"";
    position:absolute;
    bottom:-140px;
    left:-140px;
    width:340px;
    height:340px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
}

.footer-top{
    padding:90px 0 60px;
    position:relative;
    z-index:2;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo img{
    height:70px;
    margin-bottom:25px;
}

.footer-about{
    color:#ead9e5;
    line-height:2;
    font-size:16px;
    max-width:420px;
}

.footer h3{
    margin-bottom:24px;
    font-size:22px;
    color:#fff;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links a{
    color:#ead9e5;
    transition:.2s;
}

.footer-links a:hover{
    color:#fff;
    transform:translateX(4px);
}

.footer-contact p{
    color:#ead9e5;
    line-height:2;
    margin-bottom:16px;
}

.footer-social{
    display:flex;
    gap:16px;
    margin-top:28px;
}

.footer-social a{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.25s;
}

.footer-social a:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:26px 0;
    text-align:center;
    color:#d8bfd0;
    position:relative;
    z-index:2;
    font-size:15px;
}

.footer-bottom strong{
    color:#fff;
}

@media(max-width:980px){
    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-top{
        padding:70px 0 40px;
    }
}
