/*
 * Hero Builder CSS
 *
 * Bu dosya index.php tarafından sadece "özel hero kurulduysa" yüklenir.
 * Mevcut hero stilleri index.php içine inline yazılı durumda, bu yüzden
 * burada sadece ufak destekleyici kurallar var.
 *
 * Genişletmek isterseniz buraya hero-builder spesifik stiller ekleyebilirsiniz.
 */

/* Trust badge ikonu hizalama (Bootstrap Icons fontu kullanılınca) */
.hero-trust-badge .bi {
    line-height: 1;
}

/* Builder'da yeni eklenen blokların ufak iyileştirmeleri */
.hero-bg .hero-stats {
    margin-top: 1.5rem;
}

/* Hero Builder Buton Stilleri */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    text-decoration: none !important;
}

.btn-hero-primary {
    background: #1a2a4a;
    color: #ffffff;
}

.btn-hero-primary:hover {
    background: #0f172a;
    color: #fff;
}

.btn-hero-secondary {
    background: #ffffff;
    color: #1a2a4a;
    border: 2px solid #e2e8f0;
}

.btn-hero-secondary:hover {
    border-color: #1a2a4a;
    color: #1a2a4a;
}

/* Tekil sayfa hero butonları */
.sp-hero-extra-btn .btn-hero {
    text-decoration: none !important;
}

.sp-hero-extra-btn a,
.sp-hero-extra-btn button {
    text-decoration: none !important;
}

/* Hover durumunda underline engelle */
.btn-hero:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

@media (max-width: 480px) {
    .btn-hero {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.35rem;
    }
    .btn-hero svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}
