/* İletişim Formu Pro Modern CSS */
.wpcp-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wpcp-form-container h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.wpcp-field {
    margin-bottom: 20px;
}

.wpcp-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.wpcp-field input[type="text"],
.wpcp-field input[type="email"],
.wpcp-field input[type="tel"],
.wpcp-field input[type="number"],
.wpcp-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.wpcp-field input:focus,
.wpcp-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

.wpcp-captcha {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.wpcp-captcha label {
    margin-bottom: 0;
    flex: 1;
}

.wpcp-captcha input {
    width: 100px !important;
}

.wpcp-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.wpcp-submit:hover {
    background: #005a87;
    transform: translateY(-1px);
}

.wpcp-submit:active {
    transform: translateY(0);
}

.wpcp-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#wpcp-response {
    margin: 15px 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

#wpcp-response.success {
    display: block;
    background: #e7f9ed;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

#wpcp-response.error {
    display: block;
    background: #fdf2f2;
    color: #d32f2f;
    border: 1px solid #f5c2c7;
}

/* Responsive */
@media (max-width: 480px) {
    .wpcp-form-container {
        padding: 20px;
    }
    .wpcp-captcha {
        flex-direction: column;
        align-items: flex-start;
    }
    .wpcp-captcha input {
        width: 100% !important;
    }
}
