/* ===============================
   NAVBAR BASE
================================= */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    font-size:1.2rem;
}

.logo-img{
    height:38px;
    width:auto;
    display:block;
}

.logo-text{
    white-space:nowrap;
    font-size:xx-large;
}

.logo-blue{
    color:#2EC4C7;
    font-weight:700;
}

.logo-blue-light{
    color:#1F2A6D;
    font-weight:700;
}

.logo-orange{
    color:#FF8C2A;
    font-weight:700;
}

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    background: #1A1A1B;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:18px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ===============================
   NAV MENU DESKTOP
================================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-menu a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    transition:.3s;
}

.nav-menu a:hover{
    color:#0883F2;
}

/* ===============================
   CTA BUTTON
================================= */

.nav-btn{
    background:linear-gradient(135deg,#1A4DAC,#0883F2);
    color:#fff;
    padding:10px 20px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.15);
    border:2px solid #1A4DAC;
}

/* ===============================
   DROPDOWN (DESKTOP + MOBILE BASE)
================================= */

.dropdown{
    position:relative;
}

.drop-link{
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-arrow{
    width:16px;
    transition:.3s;
}

/* dropdown panel */

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;

    background:#121212;
    border-radius:10px;
    padding:12px 0;
    min-width:260px;

    border:1px solid rgba(255,255,255,0.08);

    display:flex;
    flex-direction:column;

    /* hidden state */
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.25s ease;
    pointer-events:none;
}

.dropdown-menu a{
    padding:10px 18px;
    display:block;
}

/* DESKTOP SHOW (hover OR click) */

@media (min-width:901px){

    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
        pointer-events:auto;
    }

}

/* arrow rotate */

.dropdown.open .dropdown-arrow{
    transform:rotate(180deg);
}

/* ===============================
   HAMBURGER
================================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:26px;
    height:3px;
    background:#fff;
    transition:.3s;
}

/* hamburger animation */

.hamburger.open span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* ===============================
   MOBILE NAVBAR
================================= */

@media (max-width:900px){

/* show hamburger */
.hamburger{
    display:flex;
    z-index:10001;
}

/* mobile panel */

.nav-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:85%;
    max-width:320px;
    height:100vh;

    background:#0b0b0b;

    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;

    padding:90px 28px 40px;
    gap:18px;

    transition:.35s ease;
    z-index:10000;

    overflow-y:auto;
}

.nav-menu.active{
    left:0;
}

/* mobile links */

.nav-menu a{
    font-size:16px;
    width:100%;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

/* ===============================
   MOBILE DROPDOWN
================================= */

.dropdown{
    width:100%;
}

.drop-link{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* mobile hidden */

.dropdown-menu{
    position:static;
    background:none;
    border:none;
    padding-left:12px;
    margin-top:8px;

    opacity:1;
    visibility:hidden;
    max-height:0;
    overflow:hidden;
    transform:none;

    transition:max-height .3s ease;
}

/* mobile open */

.dropdown.open .dropdown-menu{
    visibility:visible;
    max-height:400px;
    pointer-events:auto; /* allow taps */
}

.dropdown-menu a{
    font-size:14px;
    opacity:.85;
    padding:8px 0;
    border:none;
}

/* CTA spacing */

.desktop-contact{
    margin-top:25px;
    text-align:center;
    width:100%;
}

/* ===============================
   BACKGROUND OVERLAY
================================= */

body.menu-open{
    overflow:hidden;
}

body.menu-open::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:9998;
}

}

/* ===============================
   FOOTER BASE
================================= */

/* ==========================================
   FOOTER BASE
========================================== */

.footer{
    background:#07090d;
    border-top:1px solid rgba(255,255,255,0.06);
    margin-top:100px;
    position:relative;
}

/* subtle top glow */
.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(8,131,242,0.6),
        transparent
    );
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:80px 20px 50px;

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:50px;
}

/* ==========================================
   BRAND COLUMN
========================================== */

.footer-logo{
    margin-bottom:16px;
}

.footer-logo .logo-img{
    height:36px;
}

.footer-tagline{
    color:#e6e6e6;
    font-weight:500;
    margin-bottom:14px;
}

.footer-desc{
    color:#9aa3ad;
    font-size:14px;
    line-height:1.7;
    max-width:340px;
}

/* ==========================================
   TITLES
========================================== */

.footer-col h3{
    font-size:15px;
    letter-spacing:.5px;
    text-transform:uppercase;
    color:#ffffff;
    margin-bottom:20px;
}

/* ==========================================
   LINKS
========================================== */

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul a{
    text-decoration:none;
    color:#9aa3ad;
    font-size:14px;
    transition:all .25s ease;
    position:relative;
}

.footer-col ul a:hover{
    color:#0883F2;
    transform:translateX(4px);
}

/* ==========================================
   CONTACT
========================================== */

.fcontact p{
    display:flex;
    gap:12px;
    align-items:flex-start;
    font-size:14px;
    color:#9aa3ad;
    margin-bottom:14px;
    line-height:1.6;
}

.fcontact i{
    color:#0883F2;
    margin-top:3px;
}

/* ==========================================
   SOCIALS (Modern Glass Style)
========================================== */

.footer-socials{
    margin-top:22px;
    display:flex;
    gap:14px;
}

.footer-socials a{
    width:40px;
    height:40px;
    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);

    color:#fff;
    text-decoration:none;

    transition:all .35s ease;
}

.footer-socials a:hover{
    transform:translateY(-4px);
    background:rgba(8,131,242,0.15);
    border-color:rgba(8,131,242,0.5);
    box-shadow:0 8px 20px rgba(8,131,242,0.25);
}

/* ==========================================
   BOTTOM BAR
========================================== */

.footer-bottom{
    text-align:center;
    padding:22px;
    border-top:1px solid rgba(255,255,255,0.06);
    font-size:13px;
    color:#7f8893;
    letter-spacing:.3px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:1000px){

.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:650px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
    padding:60px 20px 35px;
}

.footer-col{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-desc{
    max-width:100%;
}

.fcontact p{
    justify-content:center;
    text-align:center;
}

.footer-socials{
    justify-content:center;
}

}