/* Header and Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-orange);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    backdrop-filter: blur(10px);
    background: var(--dark-orange);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.logo-image {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    drop-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.logo:hover .logo-image {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
    drop-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    position: absolute;
    right: 20px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--light-cream);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--light-cream);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--white);
    color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-cta:hover {
    background: var(--light-cream);
    color: var(--primary-orange);
    border-color: var(--white);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    position: absolute;
    right: 20px;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 20px;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: var(--light-cream);
    color: var(--primary-orange);
}

.menu-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-cream);
    border-radius: 8px;
    margin-top: 20px;
    color: var(--text-dark);
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
    z-index: 1002;
    transition: width 0.2s ease;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        padding: 10px var(--container-padding);
    }

    .logo-image {
        height: 55px;
    }
    
    .logo {
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }

    .logo-image {
        height: 45px;
    }
    
    .logo {
        padding: 5px 8px;
        border-radius: 10px;
    }
}
