/* =====================================
   BİZE ULAŞIN — premium iletişim sayfası
===================================== */

.page--contact-blx .contact-page {
    padding-top: 0;
    padding-bottom: 0;
    background: #f7f8fa;
}

.contact-page__wrap {
    overflow-x: clip;
}

/* --- Hero görseli (page-header içinde de kullanılır) --- */
.contact-hero-visual {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.contact-hero-visual__glow {
    position: absolute;
    inset: 12% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.22) 0%, transparent 68%);
    filter: blur(4px);
    pointer-events: none;
}

.contact-hero-visual__card {
    position: absolute;
    inset: 8% 10% 12% 10%;
    border-radius: 28px;
    background: #fff;
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.08),
        0 4px 16px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-visual__bubble {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ff4d00 0%, #ff7a3d 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 14px 32px rgba(255, 77, 0, 0.35);
}

.contact-hero-visual__float {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    color: #ff4d00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    animation: contact-float 5s ease-in-out infinite;
}

.contact-hero-visual__float--1 {
    top: 6%;
    right: 4%;
    color: #ff4d00;
    animation-delay: 0s;
}

.contact-hero-visual__float--2 {
    bottom: 18%;
    left: 0;
    color: #2563eb;
    animation-delay: 1.2s;
}

.contact-hero-visual__float--3 {
    top: 28%;
    left: -2%;
    color: #25d366;
    font-size: 1.35rem;
    animation-delay: 0.6s;
}

@keyframes contact-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Kanal kartları --- */
.contact-channels {
    padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.2vw, 44px);
}

.contact-channel {
    --ch-accent: #ff4d00;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-channel:hover {
    transform: translateY(-3px);
    box-shadow:
        0 26px 52px rgba(15, 23, 42, 0.09),
        0 4px 12px rgba(15, 23, 42, 0.04);
}

.contact-channel__ico {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 77, 0, 0.12);
    color: var(--ch-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.contact-channel--wa {
    --ch-accent: #25d366;
}

.contact-channel--wa .contact-channel__ico {
    background: rgba(37, 211, 102, 0.15);
}

.contact-channel__ico--blue {
    background: rgba(37, 99, 235, 0.12) !important;
    color: #2563eb !important;
}

.contact-channel--mail {
    --ch-accent: #2563eb;
}

.contact-channel__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 77, 0, 0.1);
    color: #ff4d00;
    margin-bottom: 10px;
}

.contact-channel__badge--green {
    background: rgba(37, 211, 102, 0.14);
    color: #16a34a;
}

.contact-channel__badge--placeholder {
    visibility: hidden;
    pointer-events: none;
    user-select: none;
}

.contact-channel__title {
    font-size: 1.125rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-channel__value {
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 800;
}

.contact-channel--phone .contact-channel__value a {
    color: #ff4d00;
    text-decoration: none;
}

.contact-channel--phone .contact-channel__value a:hover {
    text-decoration: underline;
}

.contact-channel__value--mail a {
    color: #2563eb;
    text-decoration: none;
    word-break: break-word;
}

.contact-channel__value--mail a:hover {
    text-decoration: underline;
}

.contact-channel__hint {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-channel__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.contact-channel__btn--outline {
    background: #fff;
    color: #ff4d00;
    border: 2px solid #ff4d00;
}

.contact-channel__btn--outline:hover {
    background: #fff5f0;
    color: #e64500;
    border-color: #e64500;
}

.contact-channel__btn--wa {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
}

.contact-channel__btn--wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
}

.contact-channel__btn--mail {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.contact-channel__btn--mail:hover {
    background: #eff6ff;
}

/* --- Orta bölüm --- */
.contact-mid {
    padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.contact-mid__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 28px);
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.2vw, 44px);
    align-items: stretch;
}

.contact-mid__support {
    background: #fff;
    border-radius: 22px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-mid__support-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 77, 0, 0.12);
    color: #ff4d00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.contact-mid__support-h {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.contact-mid__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-mid__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.contact-mid__list li:last-child {
    margin-bottom: 0;
}

.contact-mid__list .bi-check-circle-fill {
    color: #ff4d00;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-mid__cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.09) 0%, rgba(255, 122, 61, 0.06) 100%);
    border: 1px solid rgba(255, 77, 0, 0.14);
    box-shadow: 0 18px 40px rgba(255, 77, 0, 0.08);
}

.contact-mid__cta-deco {
    position: absolute;
    right: -12px;
    bottom: -12px;
    font-size: 7rem;
    line-height: 1;
    color: rgba(255, 77, 0, 0.08);
    pointer-events: none;
}

.contact-mid__cta-title {
    position: relative;
    font-size: 1.2rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 18px;
    max-width: 22rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.contact-mid__cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-mid__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    background: linear-gradient(145deg, #ff4d00 0%, #ff6a28 100%);
    color: #fff !important;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(255, 77, 0, 0.35);
}

.contact-mid__cta-primary:hover {
    filter: brightness(1.05);
    color: #fff !important;
}

.contact-mid__cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 14px;
    background: #fff;
    color: #0f172a !important;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid rgba(15, 23, 42, 0.1);
}

.contact-mid__cta-secondary:hover {
    border-color: #ff4d00;
    color: #ff4d00 !important;
}

/* --- Koyu bant --- */
.contact-dark {
    background: #0b1220;
    border-radius: 28px 28px 0 0;
    padding: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(2rem, 3vw, 2.75rem);
    margin-top: 0;
}

.contact-dark__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.2vw, 44px);
    justify-content: space-between;
}

.contact-dark__col {
    flex: 1 1 200px;
    min-width: 180px;
    padding: 12px 16px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-dark__col > :last-child {
    margin-top: auto;
}

.contact-dark__sep {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 8px;
    min-height: 120px;
}

.contact-dark__ico {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 77, 0, 0.15);
    color: #ff7a3d;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.contact-dark__h {
    font-size: 1rem;
    font-weight: 900;
    color: #f8fafc;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.contact-dark__txt {
    margin: 0 0 8px;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.9rem;
    line-height: 1.55;
}

.contact-dark__txt--muted {
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 12px;
}

.contact-dark__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #ff9233 !important;
    font-weight: 800;
    font-size: 0.875rem;
    text-decoration: none;
}

.contact-dark__link:hover {
    color: #ffb366 !important;
}

.contact-dark__pill {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
}

.contact-dark__pill--green {
    background: rgba(34, 197, 94, 0.18);
    color: #4ade80;
}

/* --- Güven şeridi --- */
.contact-trust {
    background: #fff;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-trust__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 20px);
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.2vw, 44px);
}

.contact-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #475569;
    line-height: 1.3;
}

.contact-trust__item i {
    color: #ff4d00;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .contact-channels__grid {
        grid-template-columns: 1fr;
    }

    .contact-mid__inner {
        grid-template-columns: 1fr;
    }

    .contact-dark__sep {
        display: none;
    }

    .contact-dark__inner {
        flex-direction: column;
    }

    .contact-dark__col {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-dark__col:last-child {
        border-bottom: none;
    }

    .contact-trust__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .contact-trust__row {
        grid-template-columns: 1fr;
    }

    .contact-mid__cta-actions {
        flex-direction: column;
    }

    .contact-mid__cta-primary,
    .contact-mid__cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
