/* .contact-hero {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4fe 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
}

.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 145, 255, 0.1);
} */
/* .notfound-container {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    z-index: 2;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
} */
/* .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 145, 255, 0.12);
    border-color: rgba(0, 145, 255, 0.3);
} */

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0091ff 0%, #0066cc 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.form-control-custom {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.form-control-custom:focus {
    border-color: #0091ff;
    box-shadow: 0 0 0 3px rgba(0, 145, 255, 0.1);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, #0091ff 0%, #0066cc 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 145, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 145, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #0091ff;
}

.info-text h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0a2540;
}

.info-text p,
.info-text a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.info-text a:hover {
    color: #0091ff;
}

.map-placeholder {
    background: linear-gradient(135deg, #e9f0ff 0%, #d9e4ff 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 145, 255, 0.2);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 145, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #0091ff;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #0091ff;
    color: white;
    transform: translateY(-3px);
}

/* Toast notification styles */
.toast-notification {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-toast {
    background: white;
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid;
    font-size: 14px;
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast.success {
    border-left-color: #10b981;
}

.custom-toast.error {
    border-left-color: #ef4444;
}

.toast-icon {
    width: 22px;
    height: 22px;
    background: #10b98120;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #10b981;
}

.custom-toast.error .toast-icon {
    background: #ef444420;
    color: #ef4444;
}

.toast-text {
    color: #1e293b;
    flex: 1;
}

/* Spinner animation */
.spinner-sm {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .toast-notification {
        top: 70px;
        right: 12px;
        left: 12px;
    }

    .custom-toast {
        min-width: auto;
        max-width: none;
        width: calc(100% - 24px);
    }
}