/* =========================
   İLETİŞİM SAYFASI GENEL
========================= */

.contact-page {
    padding: 20px 20px;
    background: #fff;
}

/* =========================
   ANA CONTAINER
========================= */

.contact-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* =========================
   SOL BİLGİLER
========================= */

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-title {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}

.contact-info p {
    font-size: 15px;
    color: #111;
    line-height: 1.6;
}

.contact-info .highlight {
    color: #caa84a;
    font-size: 20px;
    font-weight: bold;
}

/* =========================
   FORM ALANI
========================= */

.contact-form {
    background: #fff;
    border-radius: 14px;
    padding: 35px 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact-form h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* =========================
   INPUTLAR
========================= */

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: border .2s ease;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #caa84a;
}

/* =========================
   KVKK
========================= */

.kvkk {
    font-size: 12px;
    color: #555;
    display: block;
    margin-bottom: 20px;
}

/* =========================
   BUTON
========================= */

.contact-form button {
    background: #caa84a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease;
}

.contact-form button:hover {
    background: #b89532;
    transform: translateY(-1px);
}

/* =========================
   MOBİL
========================= */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
    }
}

/* ORTAK KART YAPI */
.contact-card {
    background: #fff;
    padding: 35px 40px;
    border-radius: 14px;
    border: 1.5px solid rgba(202,168,74,0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.contact-container {
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
}
.contact-card:hover {
    transform: translateY(-2px);
    transition: 0.2s ease;
}
.info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-row i {
    font-size: 18px;
    color: #caa84a;
    margin-top: 4px;
}
.info-item:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 55%; /* oran */
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}
.wp-link,
.wp-link:visited,
.wp-link:hover,
.wp-link:active {
    color: #25D366;
}
.wp-link {
    margin-left: 10px;
    font-size: 26px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.wp-link:hover {
    transform: scale(1.15);
}
.phone-link,
.phone-link:visited,
.phone-link:hover,
.phone-link:active {
    color: #caa84a; /* senin gold rengin */
    text-decoration: none;
}
.phone-link:hover {
    opacity: 0.8;
}
.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-title i {
    font-size: 14px;
    color: #caa84a;
    margin-top: 4px;
}