.contact-page {
    padding: 120px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-header p {
    color: #94a3b8;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: rgba(30, 41, 59, 0.4);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(49, 168, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Bilgi Kısmı */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item h3 {
    color: #31a8ff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: #cbd5e1;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #31a8ff;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.social-links a:hover {
    border-color: #31a8ff;
}

/* Form Kısmı */
.contact-form-container {
    flex: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #31a8ff;
    box-shadow: 0 0 10px rgba(49, 168, 255, 0.2);
}

.submit-btn {
    padding: 15px;
    background: #31a8ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #0084ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(49, 168, 255, 0.4);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 30px;
    }
    .contact-header h1 {
        font-size: 2rem;
    }
}
/* İletişim sayfasındaki inputlar boş değilse hafif mavi kalsın */
.input-group input:valid, .input-group textarea:valid {
    border-color: rgba(49, 168, 255, 0.5);
}