/**
 * AysimaPOS - Global CTA Footer Styles
 * 
 * Footer öncesi CTA hero section'ları için global stiller
 * Tüm landing page'lerde tutarlı CTA görünümü
 * 
 * @author AysimaPOS Development Team
 * @version 1.0.0
 */

/* ============================================
   GLOBAL CTA FOOTER SECTION
   ============================================ */
.cta-footer-global {
    padding: 20px 0;
    background: var(--gradient-primary);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-footer-global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.cta-footer-content {
    position: relative;
    z-index: 10;
}

.cta-footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-footer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-footer-buttons .btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.cta-footer-buttons .btn-light {
    background: #ffffff;
    color: #1e40af;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-footer-buttons .btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #1e40af;
}

.cta-footer-buttons .btn-outline-light {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-footer-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-footer-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-footer-trust-item i {
    font-size: 1.75rem;
    opacity: 0.95;
    color: #10b981;
}

.cta-footer-trust-text {
    text-align: left;
}

.cta-footer-trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.cta-footer-trust-label {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .cta-footer-global {
        padding: 60px 0;
    }
    
    .cta-footer-title {
        font-size: 2rem;
    }
    
    .cta-footer-subtitle {
        font-size: 1rem;
    }
    
    .cta-footer-buttons .btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .cta-footer-trust {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .cta-footer-global {
        padding: 50px 0;
    }
    
    .cta-footer-title {
        font-size: 1.75rem;
    }
    
    .cta-footer-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-footer-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .cta-footer-buttons .btn {
        width: 100%;
    }
    
    .cta-footer-trust {
        gap: 1.5rem;
    }
    
    .cta-footer-trust-item i {
        font-size: 1.5rem;
    }
    
    .cta-footer-trust-number {
        font-size: 1.25rem;
    }
    
    .cta-footer-trust-label {
        font-size: 0.875rem;
    }
}
