/**
 * Diş kliniği demo — sektörel ön yüz katmanı
 * Görsel placeholder'lar panelden değiştirilebilir alanları temsil eder.
 */

/* —— Görsel placeholder kutuları —— */
.kobi-img-placeholder {
    position: relative;
    border-radius: var(--kobi-radius-lg, 1.35rem);
    overflow: hidden;
    background:
        linear-gradient(145deg,
            color-mix(in srgb, var(--bs-primary) 18%, #e0f2fe) 0%,
            color-mix(in srgb, var(--bs-primary) 8%, #f0f9ff) 45%,
            #f8fafc 100%);
    border: 1px dashed color-mix(in srgb, var(--bs-primary) 35%, #cbd5e1);
    box-shadow: var(--kobi-shadow-sm, 0 4px 16px rgba(15, 23, 42, 0.06));
    min-height: 220px;
}

.kobi-img-placeholder--hero {
    min-height: clamp(260px, 42vw, 420px);
    aspect-ratio: 4 / 3;
}

.kobi-img-placeholder--about {
    min-height: clamp(260px, 36vw, 360px);
}

.kobi-img-placeholder__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.5rem;
    text-align: center;
}

.kobi-img-placeholder__inner > i {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: color-mix(in srgb, var(--bs-primary) 75%, #0f172a);
    opacity: 0.85;
    line-height: 1;
}

.kobi-img-placeholder__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--kobi-ink, #0f172a);
    letter-spacing: -0.02em;
}

.kobi-img-placeholder__hint {
    font-size: 0.78rem;
    color: var(--kobi-ink-muted, #64748b);
    max-width: 16rem;
    line-height: 1.45;
}

/* Hizmet / blog kart placeholder */
.kobi-card-placeholder {
    background:
        linear-gradient(160deg,
            color-mix(in srgb, var(--bs-primary) 12%, #fff) 0%,
            color-mix(in srgb, var(--bs-primary) 6%, #f1f5f9) 100%) !important;
    border-bottom: 1px solid color-mix(in srgb, var(--bs-primary) 12%, transparent);
}

.kobi-card-placeholder__icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bs-primary) 14%, #fff);
    border: 1px solid color-mix(in srgb, var(--bs-primary) 22%, transparent);
    box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.12);
}

.kobi-card-placeholder__icon-wrap i {
    font-size: 1.85rem;
    color: var(--bs-primary);
}

/* —— Hero —— */
.dental-hero {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    background:
        radial-gradient(ellipse 90% 70% at 10% 0%, color-mix(in srgb, var(--bs-primary) 10%, transparent), transparent 55%),
        radial-gradient(ellipse 60% 50% at 95% 20%, color-mix(in srgb, var(--bs-primary) 8%, transparent), transparent 50%),
        var(--kobi-surface, #fff);
    border-bottom: 1px solid var(--kobi-border, #e2e8f0);
}

.dental-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: color-mix(in srgb, var(--bs-primary) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--bs-primary) 18%, transparent);
}

.dental-hero__title {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--kobi-ink, #0f172a);
}

.dental-hero__lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--kobi-ink-muted, #64748b);
    margin-bottom: 1.5rem;
    max-width: 34rem;
}

.dental-hero__actions .btn {
    border-radius: 999px;
}

.dental-hero__visual {
    box-shadow: var(--kobi-shadow-md, 0 8px 30px rgba(15, 23, 42, 0.08));
}

/* —— Güven özellikleri —— */
.dental-trust-features {
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
    background: var(--kobi-surface-muted, #f8fafc);
    border-bottom: 1px solid var(--kobi-border-soft, #f1f5f9);
}

.dental-feature-card {
    background: var(--kobi-surface, #fff);
    border: 1px solid var(--kobi-border, #e2e8f0);
    border-radius: var(--kobi-radius, 1rem);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--kobi-shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    height: 100%;
}

.dental-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--kobi-shadow-md);
    border-color: color-mix(in srgb, var(--bs-primary) 25%, var(--kobi-border));
}

.dental-feature-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bs-primary) 12%, #fff);
    color: var(--bs-primary);
    font-size: 1.25rem;
}

.dental-feature-card__title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--kobi-ink, #0f172a);
}

.dental-feature-card__text {
    color: var(--kobi-ink-muted, #64748b);
    line-height: 1.5;
}

/* —— Neden biz —— */
.dental-why-us {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}

.dental-why-card {
    background: var(--kobi-surface, #fff);
    border: 1px solid var(--kobi-border, #e2e8f0);
    border-radius: var(--kobi-radius-lg, 1.35rem);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--kobi-shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dental-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kobi-shadow-md);
}

.dental-why-card__icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--bs-primary) 16%, #fff), color-mix(in srgb, var(--bs-primary) 6%, #f8fafc));
    color: var(--bs-primary);
    font-size: 1.2rem;
}

.dental-why-card__title {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

/* —— İletişim CTA —— */
.dental-contact-cta__inner {
    max-width: 40rem;
    padding: clamp(2rem, 4vw, 3rem);
    background:
        linear-gradient(145deg,
            color-mix(in srgb, var(--bs-primary) 8%, #fff) 0%,
            #fff 55%,
            color-mix(in srgb, var(--bs-primary) 4%, #f8fafc) 100%);
    border: 1px solid color-mix(in srgb, var(--bs-primary) 18%, var(--kobi-border));
    border-radius: var(--kobi-radius-lg);
    box-shadow: var(--kobi-shadow-md);
}

.dental-contact-cta__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.3);
}

.dental-contact-cta__title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--kobi-ink);
}

.dental-contact-cta__text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--kobi-ink-muted);
    margin-left: auto;
    margin-right: auto;
    max-width: 32rem;
}

.dental-contact-cta .btn {
    border-radius: 999px;
}

/* —— İlk ana sayfa bölümü üst boşluk —— */
body.theme-kobi .kobi-home-section:first-of-type {
    padding-top: clamp(2rem, 4vw, 3rem) !important;
}

@media (max-width: 991.98px) {
    .dental-hero__lead {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .dental-feature-card {
        padding: 1rem 0.75rem;
    }

    .dental-feature-card__title {
        font-size: 0.85rem;
    }

    .dental-feature-card__text {
        font-size: 0.75rem;
    }
}
