@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@700;900&family=Barlow:wght@400;500;600;700&display=swap');

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 55px;
    width: 180px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 18px 10px;
    gap: 4px;
    list-style: none;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: visible;
    position: relative;
    z-index: 200;
}

.nav-links a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    background: #2a2a2a;
    color: #ffffff;
}

.nav-links a.active {
    color: #F97316;
}

.nav-cta {
    background: #F97316;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #ea6a00;
}

/* ===== DROPDOWN ===== */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 190px;
    z-index: 9999;
    list-style: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    color: #F97316;
    background: #222;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
        padding-left: 0px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: #1a1a1a;
        border: none;
        border-radius: 10px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }

    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        z-index: 999;
        justify-content: center;
        align-items: center;
        gap: 6px;
        border-radius: 0;
        padding: 40px 20px;
    }

    .nav-links.mobile-open li {
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .nav-links.mobile-open li a {
        font-size: 15px;
        padding: 14px 60px;
        width: 90%;
        text-align: center;
        display: block;
        border-radius: 50px;
        margin: 0 auto;
    }

    .nav-links.mobile-open .nav-cta {
        display: flex !important;
        position: static;
        width: 90%;
        justify-content: center;
        margin-top: 10px;
        padding: 18px 0;
        font-size: 18px;
        border-radius: 50px;
    }

    .mobile-nav-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 20px;
        position: absolute;
        top: 0; left: 0;
        box-sizing: border-box;
    }

    .mobile-nav-logo {
        height: 54px;
        width: auto;
        display: block;
    }

    .mobile-close-btn {
        width: 44px;
        height: 44px;
        background: #1a1a1a;
        border: none;
        border-radius: 10px;
        color: #ff6a00;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}