/* Free Consultation Banner - Sticky Top Bar */
.consultation-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.consultation-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.consultation-banner-text {
    flex: 1;
    min-width: 250px;
}

.consultation-banner-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.consultation-banner-text p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
}

.consultation-banner-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.consultation-banner-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.consultation-banner-btn-primary {
    background: white;
    color: #d97706;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.consultation-banner-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #d97706;
}

.consultation-banner-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.consultation-banner-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.consultation-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: all 0.2s;
    flex-shrink: 0;
}

.consultation-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.consultation-banner.hidden {
    display: none;
}

/* Countdown Timer */
.consultation-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.consultation-timer i {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consultation-banner {
        padding: 1rem 0.75rem;
    }
    
    .consultation-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .consultation-banner-text h3 {
        font-size: 1rem;
    }
    
    .consultation-banner-text p {
        font-size: 0.8125rem;
    }
    
    .consultation-banner-cta {
        width: 100%;
    }
    
    .consultation-banner-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        flex: 1;
        justify-content: center;
    }
    
    .consultation-banner-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-banner-btn {
        width: 100%;
    }
}
