/* ============ İLETİŞİM SAYFASI ============ */
.ct {
    background: var(--blush);
}

.ct-crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--rose-deep);
    padding: 22px 11px 0;
}

.ct-crumbs a:hover {
    text-decoration: underline;
}

.ct-crumbs span {
    color: var(--ink-40);
}

.ct-crumbs b {
    font-weight: 400;
    color: var(--ink-60);
}

/* ---- hero ---- */
.ct-hero {
    padding: 46px 0 34px;
    text-align: center;
}

.ct-hero .eyebrow {
    justify-content: center;
}

.ct-hero .h-sec {
    margin-top: 14px;
}

.ct-hero .lead {
    margin-inline: auto;
    text-align: center;
}

/* ---- hızlı iletişim kartları ---- */
.ct-quick {
    padding: 6px 0 40px;
}

.ct-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ct-quick__card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 20px 20px;
    box-shadow: var(--sh-1);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

a.ct-quick__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
    border-color: var(--rose-soft);
}

.ct-quick__ic {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--rose-soft), var(--sand));
}

.ct-quick__ic svg {
    width: 20px;
    height: 20px;
    stroke: var(--rose-deep);
    stroke-width: 1.7;
    fill: none;
}

.ct-quick__card small {
    display: block;
    color: var(--ink-40);
    font-size: 12px;
    letter-spacing: 0.03em;
    margin-bottom: 3px;
}

.ct-quick__card b {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 15.5px;
    color: var(--ink);
    word-break: break-word;
}

/* ---- form + sidebar ---- */
.ct-main {
    padding: 10px 0 70px;
}

.ct-main__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 26px;
    align-items: start;
}

.ct-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 36px;
    box-shadow: var(--sh-1);
}

.ct-form h3 {
    font-size: 1.5rem;
}

.ct-form>p {
    color: var(--ink-60);
    margin-top: 8px;
    font-size: 14px;
}

.ct-form form {
    margin-top: 24px;
}

.ct-field {
    margin-bottom: 18px;
}

.ct-field:last-of-type {
    margin-bottom: 0;
}

.ct-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ct-field-row .ct-field {
    margin-bottom: 0;
}

.ct-field>label {
    display: block;
    font-size: 13px;
    color: var(--ink-60);
    margin-bottom: 8px;
    font-weight: 500;
}

.ct-field input,
.ct-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 15px;
    background: var(--cream);
    font-size: 14.5px;
    font-weight: 300;
}

.ct-field textarea {
    resize: vertical;
    line-height: 1.55;
    min-height: 120px;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: var(--ink-40);
}

.ct-field input:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(214, 86, 127, .12);
}

.ct-form .btn {
    margin-top: 22px;
    width: 100%;
}

.ct-form .btn[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

/* ---- yan panel ---- */
.ct-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-side__card h4 {
    font-size: 1.12rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-side__card h4 svg {
    width: 19px;
    height: 19px;
    stroke: var(--rose-deep);
    stroke-width: 1.7;
    fill: none;
}

.ct-hours {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-hours__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line);
    color: var(--ink-60);
}

.ct-hours__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ct-hours__row b {
    color: var(--ink);
    font-weight: 500;
}

.ct-soc {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.ct-soc a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blush);
    border: 1px solid var(--line);
    transition: background 0.35s, border-color 0.35s;
}

.ct-soc a:hover {
    background: var(--plum);
    border-color: var(--plum);
}

.ct-soc a svg {
    width: 17px;
    height: 17px;
    stroke: var(--plum);
    stroke-width: 1.6;
    fill: none;
    transition: stroke 0.35s;
}

.ct-soc a:hover svg {
    stroke: var(--cream);
}

.ct-side__wa {
    background: linear-gradient(135deg, #e9fbf1, #fff);
    border-color: rgba(31, 168, 85, 0.25);
    text-align: center;
}

.ct-side__wa p {
    color: var(--ink-60);
    font-size: 13.5px;
    margin: 10px 0 18px;
}

/* ---- şubeler ---- */
.ct-branches {
    padding: 20px 0 100px;
}

.ct-branches .eyebrow,
.ct-branches .h-sec {
    display: flex;
    justify-content: center;
    text-align: center;
}

.ct-branches__head {
    text-align: center;
    margin-bottom: 44px;
}

.ct-branch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-branch-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sh-1);
    display: flex;
    flex-direction: column;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.ct-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-2);
}

.ct-branch-card__map {
    position: relative;
    height: 190px;
    background: linear-gradient(150deg, var(--sand), var(--rose-soft));
}

.ct-branch-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ct-branch-card__body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.ct-branch-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose-deep);
    font-weight: 500;
}

.ct-branch-card__tag svg {
    width: 13px;
    height: 13px;
    stroke: var(--rose-deep);
    stroke-width: 2;
    fill: none;
}

.ct-branch-card h4 {
    font-size: 1.22rem;
}

.ct-branch-card__addr {
    display: flex;
    gap: 10px;
    color: var(--ink-60);
    font-size: 13.7px;
    line-height: 1.55;
}

.ct-branch-card__addr svg {
    flex: none;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    stroke: var(--ink-40);
    stroke-width: 1.7;
    fill: none;
}

.ct-branch-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--plum);
    width: fit-content;
}

.ct-branch-card__phone svg {
    width: 16px;
    height: 16px;
    stroke: var(--rose-deep);
    stroke-width: 1.8;
    fill: none;
}

.ct-branch-card__phone:hover {
    color: var(--rose-deep);
}

.ct-branch-card__acts {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 4px;
}

.ct-branch-card__acts a {
    flex: 1;
    justify-content: center;
    padding: 11px 14px;
    font-size: 11px;
}

.ct-alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.86rem;
    margin-bottom: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.ct-alert--error {
    background: #FFF0F2;
    color: #C62828;
    border: 1px solid rgba(198, 40, 40, .15);
}

.ct-alert--success {
    background: #EEF8F2;
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, .15);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .ct-quick__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-main__grid {
        grid-template-columns: 1fr;
    }

    .ct-branch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .ct-card {
        padding: 26px 22px;
    }

    .ct-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ct-field-row .ct-field {
        margin-bottom: 18px;
    }

    .ct-branch-grid {
        grid-template-columns: 1fr;
    }

    .ct-quick__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ct-hero {
        padding: 30px 0 24px;
    }

    .ct-branches {
        padding: 10px 0 70px;
    }
}
