/* Brandaft Ana Sayfa CTA Bölümü Stilleri */
.br-cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.br-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #3878C3 100%);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(56, 120, 195, 0.2);
}

/* Süsleme amaçlı arka plan objeleri */
.br-cta-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(244, 61, 5, 0.1);
    border-radius: 50%;
}

.br-cta-badge {
    background: var(--br-orange, #F43D05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.br-cta-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.br-cta-title strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--br-orange, #F43D05);
}

.br-cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.br-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.br-cta-feat-item {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-icon {
    color: var(--br-orange, #F43D05);
    font-weight: 900;
}

.br-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #1a1a1a;
    padding: 22px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.br-cta-btn:hover {
    transform: translateY(-5px);
    background: var(--br-orange, #F43D05);
    color: #fff;
    box-shadow: 0 15px 30px rgba(244, 61, 5, 0.3);
}

.br-cta-subtext {
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .br-cta-title { font-size: 2.2rem; }
    .br-cta-card { padding: 60px 20px; }
    .br-cta-features { flex-direction: column; gap: 15px; }
}