/* Booking Modal Styles */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.booking-modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideIn 0.4s ease-out 0.1s forwards;
}

.booking-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.booking-modal-close:hover {
    background-color: #f1f1f1;
    transform: scale(1.1);
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Book a Free Consultation Button */
.consultation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #3c55e0;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 8px;
}

.consultation-button:hover {
    background-color: #2e42c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 85, 224, 0.3);
}

.consultation-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(60, 85, 224, 0.2);
}

.consultation-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }
    
    .consultation-button {
        padding: 10px 20px;
        font-size: 14px;
    }
} 