.contact-info {
    background: #1a1a1a;
    color: #eaeaea;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
}

.contact-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
}

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #fff;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper span {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border-radius: 8px;
    border: 1px solid #444;
    font-size: 16px;
    color: #eaeaea;
    background: #2a2a2a;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: #ffffff;
    outline: none;
}

.textarea-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-left button {
    background: #333;
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-left button:hover {
    background: #808080;
    color: #fff;
    transform: translateY(-2px);
}

#form-status {
    margin-top: 12px;
    font-size: 14px;
    color: #4da6ff;
}

.contact-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}

.contact-right h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #fff;
}

.contact-box {
    background: #2a2a2a;
    color: #eaeaea;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #8e8e8e;
    text-decoration: none;
}

.contact-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.contact-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-box ul li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.contact-box ul li span {
    color: #ffffff;
    font-size: 18px;
}

.social-icons a {
    display: inline-block;
    color: #eaeaea;
    margin-right: 16px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #8e8e8e;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 100%;
    }
}

.kvkk-wrapper {
    margin-bottom: 20px;
    font-size: 14px;
    color: #eaeaea;
}

.kvkk-wrapper input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.kvkk-link {
    color: #999999;
    cursor: pointer;
    margin-left: 5px;
    text-decoration: underline;
}

.kvkk-text {
    display: none;
    background: #2a2a2a;
    border: 1px solid #444;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
    color: #eaeaea;
    font-size: 13px;
    line-height: 1.5;
}

.kvkk-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .kvkk-text {
        font-size: 12px;
        padding: 10px;
    }

    .kvkk-wrapper label {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}


/* === Tarayıcı otomatik doldurma (autofill) sorununu düzelt === */
/* Chrome, Safari, Edge */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #2a2a2a inset;
    /* arka plan koyu tema ile uyumlu */
    -webkit-text-fill-color: #eaeaea;
    /* yazı rengi beyaz */
    transition: background-color 5000s ease-in-out 0s;
    /* animasyonlu düzeltme */
}

/* Firefox */
input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
    box-shadow: 0 0 0px 1000px #2a2a2a inset;
    -moz-text-fill-color: #eaeaea;
}