/**
 * CTA Section Styles
 * Enhanced call-to-action with parallax background
 * 
 * 🇹🇷 TR: Çağrı-eylem bölümü stilleri - parallax arka plan
 * 🇬🇧 EN: Call-to-action section styles - parallax background
 * 🎯 PURPOSE: Modern CTA design matching @site/esk/
 * 
 * @package GRPCMedia
 */

/* ============================================
   ULTIMATE CTA SECTION STYLES
   ============================================ */

/* Enhanced Title Styles */
.grpc-cta-description .highlight-stats {
    color: #4a90e2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    color: #4a90e2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Button Styles */
.grpc-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.grpc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.grpc-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.grpc-btn:hover::before {
    left: 100%;
}

.grpc-btn-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    border: 2px solid #4a90e2;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.grpc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
    color: #ffffff;
}

.grpc-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.grpc-btn-secondary:hover {
    background: #ffffff;
    color: #4a90e2;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.grpc-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.grpc-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   CTA SECTION WITH PARALLAX
   ============================================ */

/* Target CTA section with high specificity */
.elementor .elementor-element.elementor-element-35e2f748,
.elementor-7 .elementor-element.elementor-element-35e2f748,
section.elementor-element-35e2f748.elementor-section,
.grpcmedia-cta-parallax {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    position: relative;
    min-height: 400px !important;
}

/* Enhanced dark overlay */
.elementor-element-35e2f748 .elementor-background-overlay,
section.elementor-element-35e2f748 .elementor-background-overlay,
.grpcmedia-cta-parallax .elementor-background-overlay {
    background-color: rgba(39, 36, 59, 0.85) !important;
    opacity: 1 !important;
}

/* White text for dark background */
.elementor-element-35e2f748 .elementor-heading-title,
.elementor-element-35e2f748 .elementor-text-editor,
.grpcmedia-cta-parallax h2,
.grpcmedia-cta-parallax p {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.elementor-element-35e2f748 .elementor-heading-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
}

.elementor-element-35e2f748 .elementor-text-editor {
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
    opacity: 0.95;
}

/* Modern button styles for dark background */
.elementor-element-35e2f748 .elementor-button {
    background: #ffffff !important;
    color: var(--grpc-primary, #2F2483) !important;
    border: 2px solid #ffffff !important;
    font-weight: 600 !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.elementor-element-35e2f748 .elementor-button:hover {
    background: var(--grpc-primary, #2F2483) !important;
    color: #ffffff !important;
    border-color: var(--grpc-primary, #2F2483) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(47, 36, 131, 0.4) !important;
}

/* Secondary button (phone button) */
.elementor-element-35e2f748 .elementor-button-info {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.elementor-element-35e2f748 .elementor-button-info:hover {
    background: #ffffff !important;
    color: var(--grpc-primary, #2F2483) !important;
}

/* Button group spacing */
.elementor-element-35e2f748 .elementor-button-wrapper {
    display: inline-block;
    margin: 10px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes ctaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ctaScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium Badge Animation */
.grpc-premium-badge {
    animation: ctaScaleIn 0.6s ease both;
    animation-delay: 0.1s;
}

/* Enhanced Widget Animations */
.elementor-element-35e2f748 .elementor-widget:nth-child(1) {
    animation: ctaScaleIn 0.6s ease both;
    animation-delay: 0.1s;
}

.elementor-element-35e2f748 .elementor-widget:nth-child(2) {
    animation: ctaFadeInUp 0.8s ease both;
    animation-delay: 0.2s;
}

.elementor-element-35e2f748 .elementor-widget:nth-child(3) {
    animation: ctaFadeInUp 0.8s ease both;
    animation-delay: 0.3s;
}

.elementor-element-35e2f748 .elementor-widget:nth-child(4) {
    animation: ctaFadeInUp 0.8s ease both;
    animation-delay: 0.4s;
}

.elementor-element-35e2f748 .elementor-widget:nth-child(5) {
    animation: ctaFadeInUp 0.8s ease both;
    animation-delay: 0.5s;
}

/* Statistics Bar Individual Items */
.grpc-stat-item {
    animation: ctaSlideInLeft 0.6s ease both;
}

.grpc-stat-item:nth-child(1) {
    animation-delay: 0.6s;
}

.grpc-stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.grpc-stat-item:nth-child(3) {
    animation-delay: 0.8s;
}

/* Button Animations */
.grpc-btn {
    animation: ctaScaleIn 0.6s ease both;
}

.grpc-btn:nth-child(1) {
    animation-delay: 0.4s;
}

.grpc-btn:nth-child(2) {
    animation-delay: 0.5s;
}

/* ============================================
   PREMIUM BADGE STYLES
   ============================================ */

.grpc-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin-bottom: 20px;
    animation: premiumPulse 2s ease-in-out infinite;
}

.grpc-premium-badge i {
    font-size: 16px;
    color: #ffd700;
}

@keyframes premiumPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   STATISTICS BAR STYLES
   ============================================ */

.grpc-statistics-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.grpc-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.grpc-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.grpc-stat-icon i {
    font-size: 20px;
    color: #ffffff;
}

.grpc-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.grpc-stat-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grpc-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.grpc-stat-item:hover .grpc-stat-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .elementor-element-35e2f748 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .elementor-element-35e2f748 .elementor-heading-title {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    .elementor-element-35e2f748 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        background-attachment: scroll !important;
    }
    
    .elementor-element-35e2f748 .elementor-heading-title {
        font-size: 28px !important;
    }
    
    .elementor-element-35e2f748 .elementor-text-editor {
        font-size: 16px !important;
    }
    
    .elementor-element-35e2f748 .elementor-button {
        padding: 12px 30px !important;
        font-size: 14px !important;
    }
    
    .elementor-element-35e2f748 .elementor-button-wrapper {
        display: block;
        margin: 8px 0;
    }
    
    /* Mobile Premium Badge */
    .grpc-premium-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    /* Mobile Statistics Bar */
    .grpc-statistics-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .grpc-stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .grpc-stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .grpc-stat-icon i {
        font-size: 16px;
    }
    
    .grpc-stat-title {
        font-size: 11px;
    }
    
    .grpc-stat-value {
        font-size: 16px;
    }
}
