.header {
    background: var(--background-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    width: 100%;
    z-index: 1000;
}

.header nav {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    gap: 50px;
}

.dropdown {
    height: 100%;
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 20px;
}

.dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    list-style: none;
    display: none;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.dropdown:hover ul {
    display: block;
}

.dropdown ul li {
    border-bottom: 2px solid var(--primary-color);
}

.dropdown ul li:last-child {
    border-bottom: none;
}

.dropdown ul li a {
    
    padding: 10px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.nav-left,
.nav-right {
    height : 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1;
}

.nav-logo .logo {
    width: 60px;
    height: 60px;
}

.nav-btn {
    position: relative;
    text-decoration: none;
    margin-left: 20px;
}

.dropdown-toggle,
.nav-btn,
.dropdown ul li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-color);
    letter-spacing: 6%;
}

.dropdown ul li:hover {
    background-color: var(--primary-color);
}

.nav-right a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.3s ease;
    transform-origin: left;
}

.nav-right a:hover::before {
    width: 100%;
    left: 0;
    transform: right;
}

/* CTA Button */
.nav-btn.nav-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff4444 100%);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: ctaGlow 2s ease-in-out infinite;
}

.nav-btn.nav-cta::before {
    display: none;
}

.nav-btn.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(218, 27, 27, 0.5);
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(218, 27, 27, 0.3); }
    50% { box-shadow: 0 0 20px rgba(218, 27, 27, 0.6); }
}

/* ── Responsive ─────────────────────────────────── */

@media (max-width: 900px) {
    .header nav {
        padding: 0 20px;
        gap: 20px;
    }

    .dropdown-toggle,
    .nav-btn,
    .dropdown ul li a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .nav-logo .logo {
        width: 50px;
        height: 50px;
    }

    .nav-btn {
        margin-left: 10px;
    }
}

@media (max-width: 700px) {
    .header {
        height: 60px;
    }

    .header nav {
        padding: 0 15px;
        gap: 10px;
    }

    .dropdown-toggle,
    .nav-btn,
    .dropdown ul li a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .nav-logo .logo {
        width: 40px;
        height: 40px;
    }

    .dropdown-toggle i {
        font-size: 14px;
    }

    .nav-btn {
        margin-left: 5px;
    }
}

@media (max-width: 500px) {
    .nav-left,
    .nav-right {
        flex-direction: column;
        gap: 2px;
    }

    .dropdown-toggle,
    .nav-btn {
        font-size: 9px;
    }
}