
/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — İletişim
═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.contact-hero {
    background: var(--color-primary);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    background: rgba(197,160,89,0.04);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero-inner .text-overline { color: var(--color-accent); }

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 1.25rem;
    line-height: 1;
}

.contact-hero-sub {
    font-size: 1.05rem;
    color: rgba(253,252,248,0.6);
    margin: 0;
    max-width: 480px;
}

/* ── Main Grid ── */
.contact-main { background: var(--color-secondary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: start;
}

/* ── Shared block head ── */
.contact-block-head { margin-bottom: 2.5rem; }

.contact-block-head h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    margin: 0 0 1rem;
    color: var(--color-primary);
    line-height: 1.15;
}

.contact-block-head p {
    font-size: 0.975rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}

/* ── Contact Form fields ── */
.contact-form { display: flex; flex-direction: column; }

.cf-row { margin-bottom: 1.75rem; }

.cf-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cf-field { display: flex; flex-direction: column; }

.cf-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.cf-required { color: var(--color-accent); font-size: 1rem; line-height: 1; }

.cf-input {
    width: 100%;
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    color: var(--color-primary);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--color-border);
    border-radius: 0;
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.cf-input::placeholder { color: var(--color-text-light); opacity: 0.7; }
.cf-input:focus { border-bottom-color: var(--color-primary); }
.cf-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(18,31,43,0.18); }
.cf-submit svg   { transition: transform 0.3s ease; }
.cf-submit:hover svg { transform: translateX(4px); }

.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(39,174,96,0.08);
    border: 1.5px solid rgba(39,174,96,0.3);
    border-radius: 4px;
}

.contact-success-icon { width: 48px; height: 48px; flex-shrink: 0; color: #27ae60; }
.contact-success-icon svg { width: 100%; height: 100%; }
.contact-success h3 { font-size: 1.25rem; margin-bottom: 0.4rem; color: var(--color-primary); }
.contact-success p  { color: var(--color-text-light); margin: 0; font-size: 0.95rem; }

.contact-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(192,57,43,0.07);
    border: 1.5px solid rgba(192,57,43,0.25);
    border-radius: 4px;
    color: #c0392b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ── Contact Info Column ── */
.contact-info-col {
    padding-left: 4rem;
    border-left: 1px solid var(--color-border);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.ci-item:first-child { padding-top: 0; }
.ci-item:last-child  { border-bottom: none; }

.ci-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--color-accent);
    background: rgba(197,160,89,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px;
}

.ci-item-icon svg { width: 100%; height: 100%; }
.ci-item-body { display: flex; flex-direction: column; gap: 0.25rem; }

.ci-item-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
}

.ci-item-value {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    color: var(--color-primary);
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.ci-item-link { text-decoration: none; transition: color 0.25s; }
.ci-item-link:hover { color: var(--color-accent); }

/* ── Social Buttons ── */
.contact-social {
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
}

.contact-social-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.cs-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--color-soft-bg);
    color: var(--color-primary);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.cs-btn svg { width: 18px; height: 18px; }
.cs-btn:hover { transform: translateY(-3px); }
.cs-btn--facebook:hover  { background: #1877F2; color: #fff; }
.cs-btn--instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}
.cs-btn--youtube:hover  { background: #FF0000; color: #fff; }
.cs-btn--x:hover        { background: #000000; color: #fff; }
.cs-btn--whatsapp:hover { background: #25D366; color: #fff; }

/* ── Contact Responsive ── */
@media (max-width: 1100px) {
    .contact-grid     { grid-template-columns: 1fr 360px; gap: 3.5rem; }
    .contact-info-col { padding-left: 3rem; }
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info-col {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-top: 3rem;
    }
    .cf-row--split { grid-template-columns: 1fr; gap: 1.25rem; }
    .contact-hero  { padding: 3.5rem 0 3rem; }
}

@media (max-width: 480px) {
    .cs-btn { width: 40px; height: 40px; }
    .cs-btn svg { width: 16px; height: 16px; }
}
