/* ============================================
   CTA Support Section V2 - Premium Design
   Çözüm Odaklı 7/24 Destek Bölümü
============================================ */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.cta-support-v2 {
    background: linear-gradient(135deg, #0369a1 0%, #0891b2 50%, #22d3ee 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.cta-support-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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;
}

/* Floating Elements */
.cta-support-v2::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-support-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Illustration */
.cta-support-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-support-illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.cta-support-illustration img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Placeholder SVG Illustration */
.cta-illustration-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-illustration-placeholder::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 50%;
}

.cta-illustration-placeholder svg {
    width: 200px;
    height: 200px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* Floating Device Icons */
.floating-device {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-device svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.floating-device.device-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.floating-device.device-2 {
    top: 50%;
    right: 0;
    animation-delay: 0.5s;
}

.floating-device.device-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Right Side - Content */
.cta-support-content {
    color: #fff;
}

.cta-support-title {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 16px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-support-title strong {
    font-weight: 700;
}

.cta-support-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Contact Cards */
.cta-contact-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-contact-card {
    background: #fff;
    border-radius: 50px;
    padding: 12px 24px 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-contact-card-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.cta-contact-card-content {
    display: flex;
    flex-direction: column;
}

.cta-contact-card-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.cta-contact-card-value {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* Newsletter Section */
.cta-newsletter {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-newsletter-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-newsletter-title strong {
    font-weight: 700;
}

.cta-newsletter-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.cta-newsletter-form {
    display: flex;
    max-width: 500px;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
}

.cta-newsletter-form input[type="email"]::placeholder {
    color: #94a3b8;
}

.cta-newsletter-form button {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-newsletter-form button:hover {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    transform: scale(1.02);
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1024px) {
    .cta-support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-support-illustration {
        order: -1;
    }
    
    .cta-support-illustration-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-support-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-contact-cards {
        justify-content: center;
    }
    
    .cta-newsletter-form {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-support-v2 {
        padding: 60px 0;
    }
    
    .cta-support-title {
        font-size: 28px;
    }
    
    .cta-contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact-card {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
    
    .floating-device {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-support-title {
        font-size: 24px;
    }
    
    .cta-newsletter-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }
    
    .cta-newsletter-form input[type="email"] {
        border-radius: 12px;
        background: #f1f5f9;
        margin-bottom: 8px;
    }
    
    .cta-newsletter-form button {
        width: 100%;
        border-radius: 12px;
    }
}

/* ============================================
   Animation
============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-support-content {
    animation: slideInUp 0.6s ease forwards;
}

.cta-contact-card {
    animation: slideInUp 0.6s ease forwards;
}

.cta-contact-card:nth-child(1) { animation-delay: 0.1s; }
.cta-contact-card:nth-child(2) { animation-delay: 0.2s; }
.cta-contact-card:nth-child(3) { animation-delay: 0.3s; }

