/* Toast and Modal Styles for Travelario */

/* Coming Soon Modal Styles */
.coming-soon-modal-content {
    background: #f8f9fa;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon-modal-content .modal-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.coming-soon-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0047ab;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.coming-soon-modal-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.coming-soon-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
}

.coming-soon-form .form-control {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background: white;
    transition: all 0.2s ease;
}

.coming-soon-form .form-control:focus {
    border-color: #0047ab;
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.15);
    outline: none;
}

.coming-soon-form .form-control::placeholder {
    color: #6c757d;
    font-size: 0.9rem;
}

.coming-soon-form .btn {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    background: #0047ab;
    border: 1px solid #0047ab;
    color: white;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 140px;
}

.coming-soon-form .btn:hover {
    background: #003d99;
    border-color: #003d99;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.coming-soon-form .btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.25);
}

/* Waitlist Modal Styles */
.waitlist-modal-content {
    background: #f8f9fa;
    border: 2px solid #007bff;
    border-radius: 15px;
    max-width: 474px;
    margin: 0 auto;
}

.waitlist-input {
    background: white;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    color: #1a365d;
}

.waitlist-input::placeholder {
    color: #1a365d;
    opacity: 0.7;
}

.waitlist-input:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.waitlist-submit-btn {
    background: #1a365d;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
}

.waitlist-submit-btn:hover {
    background: #2c5282;
}

/* Simple Toast Styles */
.fancy-toast {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-width: 350px;
    max-width: 400px;
    animation: slideInRight 0.4s ease-out;
}

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

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

.toast-content {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.toast-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.toast-icon {
    font-size: 20px;
}

.toast-text {
    flex: 1;
    color: #374151;
}

.toast-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
    color: #6b7280;
}

.toast-close {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
}

.toast-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #e5e7eb;
    border-radius: 0 0 12px 12px;
    animation: progressBar 5s linear forwards;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Hover effects */
.fancy-toast:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .fancy-toast {
        min-width: 300px;
        max-width: 90vw;
        margin: 10px;
    }
    
    .toast-content {
        padding: 16px;
    }
    
    .toast-icon-wrapper {
        width: 36px;
        height: 36px;
        margin-right: 12px;
    }
    
    .toast-icon {
        font-size: 18px;
    }
    
    .toast-title {
        font-size: 15px;
    }
    
    .toast-message {
        font-size: 13px;
    }

    /* Coming Soon Form - Mobile Only */
    .coming-soon-form {
        flex-direction: column !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
    }

    .coming-soon-form .form-control {
        width: 100% !important;
        flex: none !important;
    }

    .coming-soon-form .btn {
        width: 100% !important;
        min-width: auto !important;
    }

    .coming-soon-modal-content .modal-body {
        padding: 2rem 1.5rem !important;
    }
}






        /* Coming Soon Modal Styles */
        .coming-soon-modal-content {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: none;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .coming-soon-modal-content .modal-body {
            padding: 3rem 2rem;
        }

        .coming-soon-modal-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .coming-soon-modal-content p {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 2rem;
        }

        .coming-soon-form {
            max-width: 400px;
            margin: 0 auto;
        }

        .coming-soon-form .form-control {
            border-radius: 10px;
            border: 2px solid #e9ecef;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .coming-soon-form .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.25);
        }

        .coming-soon-form .btn {
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .coming-soon-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 71, 171, 0.3);
        }