/* ========================================
   09-contact.css — İletişim sayfası
   Sade, modern, kart bazlı tasarım
======================================== */

/* ====== HERO ====== */
.contact-hero {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, #fdfaf0 0%, #ffffff 100%);
}
.contact-hero__head {
    text-align: center;
    max-width: 760px;
    margin: 18px auto 36px;
}
.contact-hero__head h1 {
    font-size: clamp(28px, 4.4vw, 44px);
    line-height: 1.15;
    margin: 10px 0 12px;
    color: #1A2B45;
    letter-spacing: -0.4px;
}
.contact-hero__head h1 em {
    font-style: normal;
    color: #d4af37;
}
.contact-hero__head p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto;
}

/* ====== QUICK CONTACT CARDS ====== */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.contact-quick__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 22px 20px;
    background: #ffffff;
    border: 1px solid #ebe4d4;
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-quick__item:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 14px 30px -16px rgba(26,43,69,0.20);
}
.contact-quick__icon {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fdfaf0;
    color: #d4af37;
    font-size: 20px;
    border: 1px solid #ecdfb6;
    margin-bottom: 6px;
}
.contact-quick__label {
    font-size: 11.5px;
    font-weight: 700;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.contact-quick__value {
    font-size: 16px;
    font-weight: 700;
    color: #1A2B45;
    line-height: 1.3;
}
.contact-quick__hint {
    font-size: 12.5px;
    color: #6b6457;
    margin-top: 2px;
}
.contact-quick__item--wa .contact-quick__icon {
    background: #e7f9ec;
    color: #1faa50;
    border-color: #bfeacd;
}

/* ====== MAIN GRID (Form + Info) ====== */
.contact-main {
    padding: 50px 0;
    background: #ffffff;
}
.contact-main__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
}

/* ====== FORM ====== */
.contact-form {
    background: #ffffff;
    border: 1px solid #ebe4d4;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 14px 40px -28px rgba(26,43,69,0.22);
}
.contact-form__head {
    margin-bottom: 22px;
}
.contact-form__head h2 {
    font-size: 24px;
    color: #1A2B45;
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.contact-form__head p {
    margin: 0;
    color: #6b6457;
    font-size: 14.5px;
}

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

.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.contact-form__row .contact-field { margin-bottom: 0; }
.contact-field > span {
    font-size: 13px;
    font-weight: 600;
    color: #1A2B45;
    margin-bottom: 6px;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e0d0;
    border-radius: 12px;
    background: #fdfcf8;
    font-family: inherit;
    font-size: 14.5px;
    color: #1A2B45;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #a59c89; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}
.contact-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
}

.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 18px;
    font-size: 13px;
    color: #6b6457;
    line-height: 1.5;
}
.contact-check input {
    margin-top: 3px;
    accent-color: #d4af37;
    width: 16px; height: 16px;
}
.contact-check a {
    color: #1A2B45;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.contact-form__hint {
    font-size: 12.5px;
    color: #6b6457;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.contact-form__hint i { color: #1faa50; font-size: 14px; }

/* ====== INFO SIDEBAR ====== */
.contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-info__card,
.contact-info__hours {
    background: #ffffff;
    border: 1px solid #ebe4d4;
    border-radius: 18px;
    padding: 26px 24px;
}
.contact-info__card h3 {
    font-size: 17px;
    color: #1A2B45;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}
.contact-info__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-info__icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fdfaf0;
    color: #d4af37;
    border: 1px solid #ecdfb6;
    font-size: 18px;
}
.contact-info__list strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}
.contact-info__list a,
.contact-info__list span:not(.contact-info__icon) {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1A2B45;
    text-decoration: none;
    line-height: 1.35;
}
.contact-info__list a:hover { color: #d4af37; }
.contact-info__list small {
    display: block;
    font-size: 12.5px;
    color: #6b6457;
    margin-top: 2px;
    font-weight: 400;
}

.contact-info__hours h4 {
    font-size: 14px;
    color: #1A2B45;
    margin: 0 0 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.contact-info__hours h4 i { color: #d4af37; }
.contact-info__hours ul {
    list-style: none;
    margin: 0; padding: 0;
}
.contact-info__hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #ecdfb6;
    font-size: 13.5px;
}
.contact-info__hours li:last-child { border-bottom: none; }
.contact-info__hours li span { color: #6b6457; }
.contact-info__hours li strong { color: #1A2B45; font-weight: 700; }

/* ====== OFİSLER ====== */
.contact-offices {
    padding: 60px 0;
    background: #fdfaf0;
}
.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.office-card {
    background: #ffffff;
    border: 1px solid #ebe4d4;
    border-radius: 16px;
    padding: 22px 20px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.office-card:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 14px 30px -16px rgba(26,43,69,0.18);
}
.office-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.office-card__icon {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fdfaf0;
    color: #d4af37;
    border: 1px solid #ecdfb6;
    font-size: 18px;
}
.office-card__label {
    font-size: 11.5px;
    font-weight: 700;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.office-card__city {
    font-size: 19px;
    color: #1A2B45;
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: -0.2px;
}
.office-card__desc {
    margin: 0 0 14px;
    font-size: 13.5px;
    color: #6b6457;
    line-height: 1.55;
}
.office-card__foot {
    padding-top: 12px;
    border-top: 1px dashed #ecdfb6;
    font-size: 13px;
}
.office-card__foot a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1A2B45;
    text-decoration: none;
    font-weight: 600;
}
.office-card__foot a:hover { color: #d4af37; }
.office-card__foot a i { color: #d4af37; font-size: 14px; }

/* Ana merkez kartı vurgulu */
.office-card--main {
    background: linear-gradient(180deg, #0A1628 0%, #122140 100%);
    border-color: #0A1628;
    color: #f3eedd;
}
.office-card--main .office-card__icon {
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    border-color: rgba(212,175,55,0.35);
}
.office-card--main .office-card__label { color: #d4af37; }
.office-card--main .office-card__city { color: #ffffff; }
.office-card--main .office-card__desc { color: rgba(243,238,221,0.78); }
.office-card--main .office-card__foot {
    border-top-color: rgba(212,175,55,0.25);
}
.office-card--main .office-card__foot a { color: #ffffff; }
.office-card--main .office-card__foot a:hover { color: #d4af37; }

/* Bölge ofisi (Antalya) farklı vurgu */
.office-card--office .office-card__icon {
    background: #f3f7ff;
    color: #1A2B45;
    border-color: #d9e3f5;
}
.office-card--office .office-card__label { color: #1A2B45; }

.contact-offices__note {
    text-align: center;
    margin-top: 32px;
    font-size: 14.5px;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.contact-offices__note i { color: #d4af37; font-size: 18px; }
.contact-offices__note a { color: #1A2B45; text-decoration: none; }
.contact-offices__note a:hover { color: #d4af37; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .contact-main__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .contact-hero { padding: 28px 0 20px; }
    .contact-quick { grid-template-columns: repeat(2, 1fr); }
    .contact-main { padding: 32px 0; }
    .contact-form { padding: 22px 18px; }
    .contact-form__row { grid-template-columns: 1fr; gap: 0; }
    .contact-form__row .contact-field { margin-bottom: 14px; }
    .contact-offices { padding: 40px 0; }
}
@media (max-width: 380px) {
    .contact-quick { grid-template-columns: 1fr; }
}
