/* Contact Section Stilleri */
.contact {
    background: #fefefe;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 36, 79, 0.15);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-form {
    width: 100%;
    padding: 2rem 0;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #00244f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form p.form-desc {
    color: #00244f;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-field {
    position: relative;
    border-bottom: 1px solid #c8dff0;
    transition: border-color 0.3s ease;
    margin-bottom: 0.5rem;
}

.form-field:focus-within {
    border-bottom-color: #4c9fd4;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    color: #00244f;
    background: transparent;
    resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #00244f;
}

.contact-form .submit-btn {
    margin-top: 2rem;
    background: #00244f;
    color: #fefefe;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
}

.contact-form .submit-btn:hover {
    background: #4c9fd4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 159, 212, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content {
        gap: 2.5rem;
    }

    .contact-image {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image {
        display: none;
    }

    .contact-form {
        padding: 1rem 0;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form .submit-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-image {
        height: 220px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
    }
}
