/* Additional Styles for Lead Modal and Notifications */

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.notification-success .notification-content i {
    color: #10b981;
    font-size: 24px;
}

.notification-error .notification-content i {
    color: #ef4444;
    font-size: 24px;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 20px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #1f2937;
}

.notification.fade-out {
    animation: slideOut 0.3s ease-out forwards;
}

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

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Lead Modal Styles */
.lead-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lead-modal {
    background: white;
    border-radius: 16px;
    width: 95%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lead-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #1f2937;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.lead-modal-close:hover {
    background: #111827;
    transform: rotate(90deg);
}

.lead-modal-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
    text-align: center;
}

.lead-modal-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    text-align: center;
}

.lead-form-group {
    margin-bottom: 20px;
}

.lead-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.lead-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.lead-form-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 51, 91, 0.1);
}

.lead-phone-group {
    display: flex;
    gap: 10px;
}

.lead-country-select {
    width: 120px;
    flex-shrink: 0;
    padding: 14px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.lead-country-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 51, 91, 0.1);
}

.lead-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.lead-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 51, 91, 0.3);
}

.lead-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Thank You Modal */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.thank-you-modal.show {
    opacity: 1;
}

.thank-you-content {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 500px;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

.thank-you-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 20px 0 15px 0;
}

.thank-you-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.thank-you-content strong {
    color: var(--primary-blue);
    font-size: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 51, 91, 0.3);
}

/* Booking Form Styles */
#booking-form .lead-form-group {
    margin-bottom: 20px;
}

#booking-form textarea.lead-form-input {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Payment Method Selection */
.payment-method-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method-option {
    flex: 1;
    position: relative;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
    border-color: var(--primary-blue);
    background: rgba(37, 51, 91, 0.05);
}

.payment-method-label i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.payment-method-label span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .notification {
        min-width: auto;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .lead-modal {
        padding: 25px 20px;
    }
    
    .lead-modal-title {
        font-size: 22px;
    }
    
    .lead-phone-group {
        flex-direction: column;
    }
    
    .lead-country-select {
        width: 100%;
    }
    
    .thank-you-content {
        padding: 40px 25px;
    }
    
    .thank-you-content h2 {
        font-size: 26px;
    }
    
    .payment-method-group {
        flex-direction: column;
    }
}
