/* Müşteri Çekme Özellikleri CSS */

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin: 0;
}

.client-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0 0;
}

.client-company {
    font-size: 0.85rem;
    color: var(--neon-green);
    margin: 0.25rem 0 0 0;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-project {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.03) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem 2rem;
    padding-top: 3.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card.popular {
    border-color: var(--neon-green);
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.4);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    color: var(--bg-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(10, 255, 157, 0.4);
    z-index: 10;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 255, 157, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(10, 255, 157, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    background: rgba(10, 255, 157, 0.15);
    box-shadow: 0 0 30px rgba(10, 255, 157, 0.4);
    transform: scale(1.05);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-btn {
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green)) !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3) !important;
}

.service-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5) !important;
}

.service-btn span {
    position: relative;
    z-index: 2;
    color: var(--bg-dark) !important;
}

.service-btn .btn-glow {
    display: none;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Statistics Section */
.statistics-section {
    padding: 4rem 0;
    background: rgba(0, 240, 255, 0.03);
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Trust Badges */
.trust-badges-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge:hover {
    transform: scale(1.1);
    color: var(--neon-cyan);
}

.trust-badge img {
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trust-badge:hover img {
    filter: grayscale(0%);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

/* Exit Intent Popup */
.cta-popup {
    max-width: 500px;
    padding: 3rem;
    text-align: center;
    animation: slideInDown 0.5s ease;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    background: rgba(0, 240, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: var(--neon-cyan);
    font-weight: 600;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.95), rgba(10, 255, 157, 0.95));
    padding: 1rem 2rem;
    z-index: 998;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 240, 255, 0.5);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sticky-cta-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Live Visitors */
.live-visitors {
    position: fixed;
    bottom: 110px;
    right: 30px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    z-index: 997;
    animation: fadeInUp 0.5s ease;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Urgency Timer */
.urgency-timer {
    position: fixed;
    bottom: 180px;
    right: 30px;
    padding: 1.5rem;
    max-width: 250px;
    z-index: 997;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.urgency-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.urgency-content h4 {
    color: var(--neon-cyan);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.countdown {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-float,
    .live-visitors,
    .urgency-timer {
        right: 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-popup {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
}
