/* === HARİTA === */
.map-fullwidth {
    width: 100%;
    padding-top: 20px; /* Üst boşluk */
}

.map-inner {
    margin: 0 auto;
    padding: 0 20px;     /* Sağ ve sol boşluk */
}

.map-inner iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 12px;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* === ANA YAPI === */
.contact-wrapper {
    display: flex;
    gap: 30px;
    margin: 50px 20px;
    flex-wrap: wrap;
    align-items: stretch;
}
.contact-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 300px;
}
.contact-box h2 {
    color: #0A1835;
    margin-bottom: 20px;
    text-align: center;
}

/* === İLETİŞİM BİLGİLERİ === */
.info-box p {
    font-size: 16px;
    margin: 8px 0;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}
.info-box i {
    color: #00a58e;
    margin-right: 10px;
    width: 20px;
}

/* === FORM === */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.form-box label {
    font-weight: bold;
    color: #0A1835;
    margin-bottom: 5px;
}

.form-box input,
.form-box textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.form-box textarea {
    resize: vertical;
    min-height: 120px;
}
.form-box button {
    margin: 20px auto 0 auto;  /* üstten 20px, ortalanmış */
    padding: 12px 30px;
    background-color: #00a58e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
}
.form-box button:hover {
    background-color: #088272;
}

/* === MOBİL UYUMLULUK === */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.info-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 300px;
    box-sizing: border-box;
    overflow: hidden; /* taşmayı engeller */
}

/* Metin içeriği için padding korunur */
.info-image-centered {
    display: flex;
    justify-content: center;
    padding: 10px; /* her kenardan boşluk */
}

.info-image-centered img {
    max-height: 200px;
    width: 100%;           /* genişliği kutuya oturt */
    height: auto;
    object-fit: contain;   /* orantılı şekilde sığsın */
    border-radius: 12px;
    display: block;
}