/* ================================================================
   BANNER & BREADCRUMB
   ================================================================ */

.bannerp {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 267px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.banner-text {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    font-family: 'Catamaran', sans-serif;
    line-height: 100%;
}

.subtext {
    padding-top: 24px;
}

.custom-page-container > .container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================================================================
   İLETİŞİM SAYFASI — ci-*
   ================================================================ */

/* Ana grid bölümü */
.ci-section {
    padding: 72px 0;
    background: #fff;
}

.ci-inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
}

/* Sol kolon */
.ci-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Intro */
.ci-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ci-eyebrow {
    font-family: 'Catamaran', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C92127;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ci-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #C92127;
    flex-shrink: 0;
}

.ci-title {
    font-family: 'Catamaran', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.ci-desc {
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    color: #555555;
    line-height: 1.75;
    max-width: 420px;
}

.ci-desc * {
    margin: 0;
}

/* İletişim öğeleri listesi */
.ci-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e0e0;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    transition: background .2s;
}

.ci-item:last-child {
    border-bottom: none;
}

.ci-item:hover {
    background: #f9f9f9;
}

.ci-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C92127;
}

.ci-item-icon svg {
    width: 18px;
    height: 18px;
}

.ci-item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ci-item-label {
    font-family: 'Catamaran', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 2px;
}

.ci-item-value {
    font-family: 'Catamaran', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
    white-space: pre-line;
}

/* Sosyal medya */
.ci-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ci-social-label {
    font-family: 'Catamaran', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
}

.ci-social-links {
    display: flex;
    gap: 8px;
}

.ci-social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    transition: all .2s;
}

.ci-social-btn:hover {
    border-color: #C92127;
    color: #C92127;
    background: #fdf4f4;
}

.ci-social-btn svg {
    width: 18px;
    height: 18px;
}

/* Sağ kolon: Form */
.ci-form-wrap {
    background: #eeeeee;
    border: 1px solid #e0e0e0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ci-form-eyebrow {
    font-family: 'Catamaran', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C92127;
    margin-bottom: 10px;
}

.ci-form-title {
    font-family: 'Catamaran', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.ci-form-intro {
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    color: #888888;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.ci-form-row3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.ci-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.ci-form-group label {
    font-family: 'Catamaran', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #777777;
}

.ci-optional {
    font-size: 11px;
    color: #aaaaaa;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.ci-form-group input,
.ci-form-group textarea {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Catamaran', sans-serif;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.ci-form-group input::placeholder,
.ci-form-group textarea::placeholder {
    color: #aaaaaa;
}

.ci-form-group input:focus,
.ci-form-group textarea:focus {
    border-color: #888888;
}

.ci-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.ci-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #C92127;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Catamaran', sans-serif;
    transition: background .2s;
    margin-top: 4px;
}

.ci-submit-btn:hover {
    background: #a8181d;
}

.ci-submit-btn svg {
    width: 16px;
    height: 16px;
}

/* Harita */
.ci-map-section {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.ci-map-inner {
    max-width: 100%;
}

.ci-map-inner iframe {
    width: 100% !important;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .ci-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ci-section {
        padding: 48px 0;
    }

    .ci-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .ci-form-wrap {
        padding: 24px;
    }

    .ci-form-row3 {
        grid-template-columns: 1fr;
    }

    .ci-title {
        font-size: 26px;
    }

    .ci-eyebrow {
        font-size: 12px;
    }
}
