/**
 * Modern CTA Section Styles
 * Hizmetler sayfası için modern CTA tasarımı
 */

/* CTA Section */
.modern-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #006233 0%, #004d26 100%);
}

/* Background Shapes */
.modern-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape-1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-2 {
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(210, 16, 52, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Wrapper */
.modern-cta-wrapper {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Content */
.modern-cta-content {
    padding-right: 30px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-title span {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.cta-title span.light-green {
    color: #a8e6cf !important;
}

.cta-title span:not(.light-green)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d21034;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.modern-cta-section:hover .cta-title span:not(.light-green)::after {
    transform: scaleX(1);
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Features */
.cta-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    font-weight: 500;
}

.cta-feature-item span {
    color: #ffffff !important;
}

.cta-feature-item i {
    font-size: 20px;
    color: #ffffff !important;
}

/* Buttons */
.modern-cta-buttons {
    text-align: center;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d21034;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(210, 16, 52, 0.3);
}

.cta-primary-btn:hover {
    background: #b00d2b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(210, 16, 52, 0.4);
}

.cta-primary-btn i {
    font-size: 20px;
}

/* Or Divider */
.cta-or-divider {
    margin: 25px 0;
    position: relative;
    text-align: center;
}

.cta-or-divider span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: inline-block;
    position: relative;
}

.cta-or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* Contact Options */
.cta-contact-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #006233;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-contact-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-contact-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.cta-contact-btn.whatsapp:hover {
    background: transparent;
    color: #25d366;
    border-color: #25d366;
}

.cta-contact-btn i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .modern-cta-wrapper {
        padding: 40px;
    }
    
    .modern-cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-cta-section {
        padding: 60px 0;
    }
    
    .modern-cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-contact-options {
        flex-direction: column;
    }
    
    .cta-contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-shape-1,
    .cta-shape-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 24px;
    }
    
    .cta-primary-btn {
        width: 100%;
        justify-content: center;
    }
}