/* [Body Arka Plan] */
body.iletisim-page {
    box-sizing: border-box;
    background-image: url('/data/proje-iletisim.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* [Glass Card Efekti] */
.glass-card {
    background: rgba(128, 128, 128, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* [Neon Glow Efekti] */
.neon-glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
}

/* [Modern Input Stilleri] */
.input-modern {
    background: rgba(248, 250, 252, 0.8);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-modern:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

/* [Section Divider] */
.section-divider {
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    height: 1px;
}

/* [Form Step Animasyonu] */
.form-step {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}