/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.contact-form-card {
    background: var(--color-bg-subtle);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 3rem 1.25rem;
    }
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Toast Notification System */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    min-width: 300px;
    transform-origin: bottom right;
}

.toast.enter {
    animation: toastEnter 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.toast.exit {
    animation: toastExit 0.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

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

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

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.toast-message {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: #71717a;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #fff;
}

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

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

@media (max-width: 640px) {
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: 0;
    }
}
