/* İletişim sayfası */
.cp-page {
    background: #f8fafc;
    min-height: calc(100vh - 140px);
    padding: 40px 24px 72px;
    color: var(--gf-text, #0f172a);
}

.cp-container {
    max-width: var(--site-max-width, 1600px);
    margin: 0 auto;
}

.cp-head {
    max-width: 640px;
    margin-bottom: 32px;
}

.cp-head h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.cp-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #64748b;
}

.cp-alert {
    padding: 11px 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    max-width: 720px;
}

.cp-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.cp-alert-success {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.cp-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.cp-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.cp-panel-title {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.cp-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cp-info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 59, 48, 0.08);
    color: #FF3B30;
    font-size: 16px;
}

.cp-info-body {
    min-width: 0;
}

.cp-info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.cp-info-value {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #0f172a;
}

.cp-info-value a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cp-info-value a:hover {
    color: #FF3B30;
}

.cp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cp-btn--primary {
    background: #FF3B30;
    color: #fff;
}

.cp-btn--primary:hover {
    background: #E0352B;
    color: #fff;
}

.cp-btn--outline {
    background: #fff;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.cp-btn--outline:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.cp-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.cp-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cp-social a:hover {
    color: #FF3B30;
    border-color: rgba(255, 59, 48, 0.35);
    background: rgba(255, 59, 48, 0.06);
}

.cp-form-desc {
    margin: -8px 0 20px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.cp-field {
    margin-bottom: 16px;
}

.cp-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
}

.cp-input,
.cp-textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cp-input:focus,
.cp-textarea:focus {
    outline: none;
    border-color: #FF3B30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12);
}

.cp-textarea {
    min-height: 120px;
    resize: vertical;
}

.cp-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cp-submit {
    width: 100%;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .cp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cp-page {
        padding: 28px 16px 56px;
    }

    .cp-head h1 {
        font-size: 24px;
    }

    .cp-row-2 {
        grid-template-columns: 1fr;
    }

    .cp-panel {
        padding: 20px 18px;
    }
}
