/* ═══════════════════════════════════════════
   CTA BANNER — Teklif CTA (yeşil şerit)
══════════════════════════════════════════ */

.cta-banner-section {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-banner-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(130, 203, 48, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(163, 224, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.cta-banner-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-light);
}

.cta-banner-section:hover .cta-banner-icon {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05) rotate(10deg);
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 6px;
}

.cta-banner-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-phone svg {
    width: 18px;
    height: 18px;
    color: var(--accent-light);
}

.btn-cta-phone:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-cta-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 12px;
    color: var(--primary-darker);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(130, 203, 48, 0.3);
    text-decoration: none;
}

.btn-cta-form svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-cta-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(130, 203, 48, 0.4);
    color: var(--primary-darker);
}

.btn-cta-form:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
        gap: 32px;
    }
    .cta-banner-content {
        flex-direction: column;
    }
    .cta-banner-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 640px) {
    .cta-banner-inner {
        padding: 36px 20px;
    }
    .cta-banner-icon {
        width: 52px;
        height: 52px;
    }
    .cta-banner-icon svg {
        width: 24px;
        height: 24px;
    }
    .cta-banner-desc {
        font-size: 14px;
    }
    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-phone,
    .btn-cta-form {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}
