/* Contattaci - Custom Styles */

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
}

.badge-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.blob-orange {
    background: radial-gradient(circle, rgba(249,115,22,0.3) 0%, transparent 70%);
}

.blob-blue {
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
}

.animate-blob {
    animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #F97316;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}
