/* Header Styles with New Color Palette */
.header {
    background: var(--gradient-dark);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(177, 156, 217, 0.3);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--light-purple);
    box-shadow: 0 4px 12px rgba(177, 156, 217, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--warning-gold);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.phone-number i {
    margin-right: 5px;
}

/* Enhanced CTA Header Button with New Colors */
.cta-header {
    background: linear-gradient(45deg, var(--warning-gold), #f8d964, var(--warning-gold));
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    color: var(--charcoal);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-header:hover::before {
    left: 100%;
}

.cta-header:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 200, 66, 0.6);
    filter: brightness(1.1);
}

.cta-header i {
    margin-right: 5px;
}

/* Header Responsive */
@media (max-width: 768px) {
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .cta-header {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}