/* Premium Availability Bar */
.premium-availability-bar {
    margin-top: 50px;
}

.availability-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.availability-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #28a745 50%, #0066cc 100%);
}

.availability-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.primary-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: premiumPulse 2s infinite;
}

@keyframes premiumPulse {
    0% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% { 
        opacity: 0.7; 
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.live-text {
    font-size: 11px;
    font-weight: 700;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.availability-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.service-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}

.highlight::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.call-to-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 280px;
}

.phone-display {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 22px;
    font-weight: 900;
    color: #0066cc;
    letter-spacing: 1px;
    line-height: 1.1;
}

.phone-note {
    font-size: 11px;
    color: #28a745;
    font-weight: 600;
}

.action-button {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

@media (max-width: 991px) {
    .availability-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .primary-info {
        align-items: center;
        text-align: center;
    }
    
    .live-status {
        justify-content: center;
    }
    
    .availability-title {
        font-size: 22px;
    }
    
    .service-highlights {
        justify-content: center;
        gap: 16px;
    }
    
    .call-to-action {
        align-items: center;
        min-width: auto;
        width: 100%;
    }
    
    .phone-display {
        text-align: center;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .action-button {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .availability-container {
        padding: 24px 20px;
    }
    
    .availability-title {
        font-size: 20px;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .highlight {
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .action-button {
        font-size: 14px;
        padding: 14px 24px;
    }
}