/* Reset ve temel yapı */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    min-height: 100vh;
}

/* Başlık */
h2 {
    color: #00ffff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* Dış kutu (tam sayfada ortalanmış) */
.contact-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

/* Form kutusu */
.contact-container {
    background-color: #111;
    border: 1px solid #00ffff;
    border-radius: 12px;
    padding: 30px 24px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 12px #00ffff33;
}

/* Etiketler */
#contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ccc;
}

/* Giriş alanları */
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    background-color: #000;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
    resize: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #0ff;
    outline: none;
}

/* Dosya alanı */
#contact-form input[type="file"] {
    padding: 8px;
    background-color: #111;
    border: 1px solid #333;
    color: #ccc;
}

/* Buton */
#contact-form button {
    background-color: #00ffff;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

#contact-form button:hover {
    box-shadow: 0 0 10px #00ffff88;
}

/* Geri bildirim mesajı */
#contact-response {
    margin-bottom: 16px;
    font-size: 14px;
    text-align: center;
}

.logo-top-left {
    position: fixed;
    top: 20px;
    left: 24px;
    font-size: 35px;
    color: #0ff;
    font-weight: 600;
    text-shadow: 0 0 8px #0ff;
    z-index: 9999;
    pointer-events: none;
}