/* ============================================================
   İLETİŞİM SAYFASI — birebir tasarım
   ============================================================ */

/* ---- Üst bilgi alanı — krem bg + wave img + doodle ---- */
.contact-section {
    background-color: #F4EAE2;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 50px) 0 70px;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image: url('../images/doodle-pattern.svg');
    background-repeat: repeat;
    background-size: 260px;
    pointer-events: none;
    z-index: 0;
}

.contact-section > .container { position: relative; z-index: 2; }

/* Sol: İletişim bilgileri */
.contact-info-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 36px;
    line-height: 1.2;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(116,89,68,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-dark-brown);
    font-size: 13px;
    margin-top: 1px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--color-dark-brown);
}

.contact-info-text a {
    color: var(--color-dark-brown);
    text-decoration: none;
}
.contact-info-text a:hover { color: var(--color-accent); }

/* Yol Tarifi pill */
.contact-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-accent);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.25s, transform 0.25s;
}
.contact-map-btn:hover { background: var(--color-dark-brown); color: #fff; transform: translateY(-1px); }

/* Sağ: Food görseli — doğal, biraz döndürülmüş */
.contact-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-img-main {
    width: 100%;
    max-width: max-content;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 20px 48px rgba(116,89,68,0.22));
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}
.contact-img-main:hover { transform: rotate(0deg) scale(1.02); }

/* ---- TALEP FORMU — beyaz bg ---- */
.contact-form-section {
    background: #F4EAE2;
    padding: 72px 0 90px;
}

/* Başlık: — TALEP FORMU — */
.contact-form-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.contact-form-line {
    width: 60px;
    height: 2.5px;
    background: var(--color-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.contact-form-desc {
    text-align: center;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--color-dark-brown);
    opacity: 0.65;
    max-width: 440px;
    margin: 0 auto 38px;
}

/* Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #BE601B;
    border-radius: 12px;
    background: transparent;
    font-size: 13.5px;
    color: var(--color-dark-brown);
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: #745944; font-size: 13px; }
.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(190,96,27,0.08);
}

.contact-textarea {
    resize: vertical;
    min-height: 108px;
    margin-bottom: 14px;
}

/* Alt: disclaimer + buton */
.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-disclaimer {
    font-size: 12px;
    line-height: 1.7;
    color: var(--color-dark-brown);
    opacity: 0.50;
    max-width: 240px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark-brown);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    letter-spacing: 0.03em;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(116,89,68,0.20);
    white-space: nowrap;
}
.contact-submit:hover {
    background: var(--color-accent);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 24px rgba(190,96,27,0.30);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .contact-section { padding: calc(var(--nav-height) + 28px) 0 50px; }
    .contact-img-col { justify-content: center; }
    .contact-img-main { max-width: 340px; transform: rotate(0); }
    .contact-row { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
    .contact-form-footer { flex-direction: column; align-items: flex-start; }
    .contact-form-line { width: 36px; }
    .contact-img-main { max-width: 280px; }
}


/* Başarı mesajı */
.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0faf4;
    border: 1.5px solid #a8d5b5;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.contact-success i {
    font-size: 22px;
    color: #2e7d52;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-success p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #1e5c3a;
    margin: 0;
}

/* Hata mesajı */
.contact-error {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff5f5;
    border: 1.5px solid #f5c2c2;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 20px;
}
.contact-error i {
    font-size: 20px;
    color: #c0392b;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-error p {
    font-size: 14px;
    color: #922b21;
    margin: 0;
}