* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9333ea;
    --secondary: #ec4899;
    --dark: #0f0f1e;
    --darker: #080811;
    --light: #ffffff;
    --gray: #6b7280;
    --gradient: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    --gradient-hover: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Status Bar */
.status-bar {
    background: rgba(147, 51, 234, 0.1);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.status-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-text .online {
    color: #10b981;
    font-weight: 600;
}

.ping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--secondary);
}

/* Header */
header {
    position: fixed;
    top: 45px;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    z-index: 999;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
}

.desktop-nav a:hover {
    color: var(--secondary);
}

.desktop-nav a.active {
    color: var(--secondary);
}

.panel-btn {
    background: var(--gradient);
    padding: 10px 20px !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 125px;
    right: -100%;
    width: 250px;
    background: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    padding: 20px;
    z-index: 998;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 20px;
}

.mobile-menu a {
    display: block;
    color: var(--light);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.panel-btn-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 125px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 0 40px rgba(147, 51, 234, 0.3);
    letter-spacing: -1px;
}

.hero-content h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-content h1 .white-text {
    color: var(--light);
    display: inline-block;
    font-weight: 900;
}

.hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section - Premium Design */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.product-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(147, 51, 234, 0.35),
                0 0 80px rgba(236, 72, 153, 0.15);
    border-color: rgba(147, 51, 234, 0.5);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
}

.product-card.featured {
    border: 2px solid rgba(147, 51, 234, 0.5);
    box-shadow: 0 15px 45px rgba(147, 51, 234, 0.25);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
}

.free-badge, .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.free-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.6);
    font-weight: 800;
}

.popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
}

.card-header {
    margin-bottom: 25px;
}

.card-header i {
    font-size: 42px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.3));
}

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price {
    margin-bottom: 25px;
    padding: 20px 0;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.price .currency {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: super;
}

.price .amount {
    font-size: 44px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.price .free-price {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    padding: 8px 12px;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(147, 51, 234, 0.1);
    transform: translateX(5px);
}

.feature i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.feature span {
    color: var(--light);
    font-size: 14px;
    font-weight: 500;
}

.buy-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient);
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.35);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
}

.buy-btn i {
    transition: transform 0.3s;
}

.buy-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Products Slider - Premium */
.mobile-products {
    display: none;
    padding: 40px 10px 60px;
    position: relative;
}

.mobile-products .swiper-slide {
    height: auto;
    padding: 30px 5px;
    display: flex;
    justify-content: center;
}

.mobile-products .product-card {
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
    /* Mobilde hover efektini devre dışı bırak */
    transform: none !important;
}

.mobile-products .product-card:hover {
    transform: none !important;
    box-shadow: 0 15px 45px rgba(147, 51, 234, 0.25);
}

/* Badge'lerin mobilde görünmesi için */
.mobile-products .free-badge,
.mobile-products .popular-badge {
    top: 10px;
    transform: translateX(-50%);
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    border: 1px solid rgba(147, 51, 234, 0.6);
    border-radius: 50%;
    color: var(--light) !important;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.6);
}

.swiper-pagination {
    position: relative;
    margin-top: 25px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(147, 51, 234, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--gradient) !important;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
}

/* Product Features Section */
.product-features {
    background: linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.05) 50%, transparent 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.3);
    border-color: rgba(147, 51, 234, 0.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
    transition: all 0.4s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.6);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px !important;
    }
    
    .hero-content p {
        font-size: 18px !important;
        line-height: 1.7 !important;
    }

    .product-features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 30px 25px;
    }
}
.testimonials-section {
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.03) 0%, transparent 100%);
    position: relative;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 80px;
    position: relative;
}

.testimonials-slider .swiper-wrapper {
    padding: 20px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
    border-color: rgba(147, 51, 234, 0.5);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.4));
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light);
    margin-bottom: 25px;
    font-style: normal;
    position: relative;
    padding: 0;
    flex: 1;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(147, 51, 234, 0.4);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
}

.testimonials-slider .swiper-button-next {
    right: 5px;
}

.testimonials-slider .swiper-button-prev {
    left: 5px;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
    background: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-slider .swiper-pagination {
    margin-top: 30px;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(147, 51, 234, 0.4) !important;
}

.testimonials-slider .swiper-pagination-bullet-active {
    width: 35px;
    background: var(--gradient) !important;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 20px 70px;
    }
    
    .testimonial-card {
        padding: 28px 22px;
        min-height: 340px;
    }
    
    .testimonial-text {
        font-size: 15px;
        padding: 0;
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }
    
    .testimonial-author strong {
        font-size: 15px;
    }
    
    .testimonial-author span {
        font-size: 11px;
    }
    
    .testimonials-slider .swiper-button-next,
    .testimonials-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .testimonials-slider .swiper-button-next {
        right: 10px;
    }
    
    .testimonials-slider .swiper-button-prev {
        left: 10px;
    }
}

/* Footer */
footer {
    background: rgba(15, 15, 30, 0.95);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}

.social-links a i {
    line-height: 1;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.footer-links .panel-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links .panel-link:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 20px;
}

.copyright p {
    color: var(--gray);
    font-size: 14px;
}

/* Modal - Fixed and Premium - Body scroll engelleme ile */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

/* Body modal açıkken scroll engelleme */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(8, 8, 17, 0.98) 100%);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 28px;
    padding: 45px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(147, 51, 234, 0.3);
    backdrop-filter: blur(20px);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Touch scroll için */
    -webkit-overflow-scrolling: touch;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: var(--light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close:hover {
    background: var(--gradient);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.5);
}

.modal-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    margin-bottom: 35px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--light);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 14px;
    color: var(--light);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(147, 51, 234, 0.12);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}

/* Price Display Styles */
.price-breakdown {
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    color: var(--light);
    font-size: 15px;
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-row.commission {
    color: #fbbf24;
}

.price-row.commission span:last-child {
    font-weight: 600;
}

.price-row.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid rgba(147, 51, 234, 0.3);
    font-size: 20px;
    font-weight: 700;
}

.price-row.total span:last-child {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: #93c5fd;
    font-size: 13px;
}

.price-note i {
    font-size: 16px;
}


/* Payment Method Selection - Geliştirilmiş */
.payment-methods-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.payment-method-option {
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-card {
    background: rgba(147, 51, 234, 0.08);
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 110px;
}

.payment-method-card i {
    font-size: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.3));
}

.payment-method-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--light);
}

.payment-method-card small {
    font-size: 11px;
    color: var(--gray);
}

.payment-method-option input:checked + .payment-method-card {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4);
    transform: scale(1.05);
}

.payment-method-card:hover {
    background: rgba(147, 51, 234, 0.15);
    transform: translateY(-3px);
}


.submit-btn {
    width: 100%;
    background: var(--gradient);
    color: var(--light);
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
}

/* Updates List */
.updates-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.updates-list::-webkit-scrollbar {
    width: 8px;
}

.updates-list::-webkit-scrollbar-track {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 10px;
}

.updates-list::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.update-item {
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.update-item:hover {
    background: rgba(147, 51, 234, 0.12);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.2);
}

.update-version {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.update-date {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.update-description {
    color: var(--light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .desktop-products {
        display: none !important;
    }
    
    .mobile-products {
        display: block;
        position: relative;
    }
    
    .swipe-hint {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Mobile'de kartların hover efektini kaldır */
    .mobile-products .product-card {
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .mobile-products .product-card:active {
        transform: none !important;
        box-shadow: 0 15px 45px rgba(147, 51, 234, 0.25) !important;
    }
    
    /* Badge'lerin mobilde tam görünmesi */
    .mobile-products .product-card {
        margin-top: 15px;
        padding-top: 40px;
    }
    
    .mobile-products .free-badge,
    .mobile-products .popular-badge {
        top: 8px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods-select {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 35px 25px;
        max-width: 95%;
        border-radius: 24px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        margin: 0;
    }
    
    .modal-content h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 40px;
    }
    
    .modal-content {
        padding: 35px 25px;
        max-width: 95%;
        max-height: 85vh;
        border-radius: 24px;
        margin: 0 auto;
        position: relative;
        /* Modal'ın ekranda kalmasını sağla */
        top: 0;
        left: 0;
        transform: none !important;
    }
    
    .modal-content h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .payment-methods-select {
        grid-template-columns: 1fr;
    }
    
    .payment-method-card {
        min-height: 90px;
    }
    
    .price-breakdown {
        padding: 16px;
    }
    
    .price-row {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .price-row.total {
        font-size: 18px;
    }
    
    .price-note {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
        max-height: 80vh;
    }
    
    .modal {
        padding-top: 30px;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-row.total {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Touch event optimizations for mobile */
@media (hover: none) and (pointer: coarse) {
    .modal-content {
        /* Dokunmatik cihazlarda momentum scroll */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .payment-method-card:active {
        transform: scale(0.98);
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Modal Yatay Kaydırma Engelleme - DÜZELTME */
.modal {
    overflow-x: hidden !important;
    overflow-y: auto;
    touch-action: pan-y !important;
}

.modal-content {
    /* max-width: 520px orijinal kuralı korunuyor - DEĞIŞMEDI */
    overflow-x: hidden !important;
    overflow-y: auto;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
}

/* HTML ve Body yatay kaydırma engelleme */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Modal açıkken body kaydırma engelleme */
body.modal-open {
    overflow: hidden !important;
    overflow-x: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Form elementleri için yatay kaydırma engelleme */
.modal-content form,
.modal-content .form-group,
.modal-content input,
.modal-content .payment-method-btn {
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Mobil için özel ayarlar */

/* Modal Yatay Kaydırma Engelleme - DÜZELTİLMİŞ */
.modal {
    overflow-x: hidden !important;
    overflow-y: auto;
    touch-action: pan-y !important;
}

.modal-content {
    overflow-x: hidden !important;
    overflow-y: auto;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
}

/* HTML ve Body yatay kaydırma engelleme */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Modal açıkken body kaydırma engelleme */
body.modal-open {
    overflow: hidden !important;
    overflow-x: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Form elementleri için yatay kaydırma engelleme - PAYMENT-METHOD-CARD HARİÇ */
.modal-content form,
.modal-content .form-group,
.modal-content input:not(.payment-method-card input),
.modal-content .payment-method-btn {
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Mobil için özel ayarlar - PAYMENT-METHOD-CARD HARİÇ */
@media (max-width: 768px) {
    * {
        overscroll-behavior-x: none !important;
    }
    
    .modal {
        overflow-x: hidden !important;
    }
    
    .modal-content {
        overflow-x: hidden !important;
    }
    
    /* Tüm modal içeriği için yatay kaydırma engelleme - PAYMENT CARDS HARİÇ */
    .modal-content *:not(.payment-method-card):not(.payment-method-option):not(.payment-method-card *) {
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
}

/* Ödeme yöntemi butonları için */
.payment-method-btn {
    box-sizing: border-box !important;
}

/* Input alanları için */
.form-group input,
.form-group select,
.form-group textarea {
    box-sizing: border-box !important;
}

/* ÖDEME YÖNTEMİ BORDER-RADIUS DÜZELTMESİ - AGRESİF */

/* Tüm durumlar için border-radius zorlaması */
.payment-method-card,
.payment-method-card:hover,
.payment-method-card:active,
.payment-method-card:focus {
    border-radius: 16px !important;
    overflow: visible !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

/* Seçili durumda */
.payment-method-option input:checked + .payment-method-card,
.payment-method-option input:checked + .payment-method-card:hover,
.payment-method-option input:checked + .payment-method-card:active {
    border-radius: 16px !important;
    overflow: visible !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

/* Genel overflow kuralını ezip payment-method-card için iptal et */
.modal-content .payment-method-card {
    overflow: visible !important;
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

.modal-content .payment-method-option input:checked + .payment-method-card {
    overflow: visible !important;
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

/* Mobil özel */
@media (max-width: 768px) {
    .payment-method-card,
    .payment-method-option input:checked + .payment-method-card,
    .modal-content .payment-method-card,
    .modal-content .payment-method-option input:checked + .payment-method-card {
        border-radius: 16px !important;
        overflow: visible !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
    }
    
    /* Modal içindeki payment-method-card ve child'ları için overflow visible */
    .modal-content .payment-method-card,
    .modal-content .payment-method-card *,
    .modal-content .payment-method-option,
    .modal-content .payment-method-option * {
        overflow-x: visible !important;
        overflow-y: visible !important;
        overflow: visible !important;
    }
}

/* Touch cihazlar için */
@media (hover: none) and (pointer: coarse) {
    .payment-method-card,
    .payment-method-card:active,
    .payment-method-option input:checked + .payment-method-card,
    .payment-method-option input:checked + .payment-method-card:active {
        border-radius: 16px !important;
        overflow: visible !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
        transform: scale(0.98);
    }
}

/* Küçük ekranlar için */
@media (max-width: 480px) {
    .payment-method-card,
    .payment-method-option input:checked + .payment-method-card,
    .modal-content .payment-method-card {
        border-radius: 16px !important;
        overflow: visible !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
    }
}

/* ÖDEME YÖNTEMİ BUTONLARI - KOMPAKT VE YUVARLAK */

/* Desktop için daha kompakt */
.payment-method-card {
    padding: 14px 10px !important;
    min-height: 90px !important;
    gap: 6px !important;
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
}

.payment-method-card i {
    font-size: 24px !important;
}

.payment-method-card span {
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.payment-method-card small {
    font-size: 10px !important;
}

/* Seçili durumda */
.payment-method-option input:checked + .payment-method-card {
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
}

/* Hover durumunda */
.payment-method-card:hover {
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
}

/* Mobil için daha da kompakt */
@media (max-width: 768px) {
    .payment-method-card {
        padding: 12px 8px !important;
        min-height: 75px !important;
        gap: 5px !important;
        border-radius: 18px !important;
        -webkit-border-radius: 18px !important;
        -moz-border-radius: 18px !important;
    }
    
    .payment-method-card i {
        font-size: 22px !important;
    }
    
    .payment-method-card span {
        font-size: 11px !important;
    }
    
    .payment-method-card small {
        font-size: 9px !important;
    }
    
    .payment-method-option input:checked + .payment-method-card {
        border-radius: 18px !important;
        -webkit-border-radius: 18px !important;
        -moz-border-radius: 18px !important;
    }
}

/* Küçük ekranlar */
@media (max-width: 480px) {
    .payment-method-card {
        padding: 10px 8px !important;
        min-height: 70px !important;
        border-radius: 16px !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
    }
    
    .payment-method-card i {
        font-size: 20px !important;
    }
    
    .payment-method-card span {
        font-size: 10px !important;
    }
    
    .payment-method-card small {
        font-size: 8.5px !important;
    }
}

/* Grid düzeni - Daha dar gap */
.payment-methods-select {
    gap: 10px !important;
}

@media (max-width: 768px) {
    .payment-methods-select {
        gap: 8px !important;
    }
}

/* ============================================
   TESTIMONIALS SECTION - TAMAMEN YENİ TASARIM
   ============================================ */

.testimonials-section {
    background: linear-gradient(180deg, 
        rgba(8, 8, 17, 1) 0%,
        rgba(147, 51, 234, 0.04) 20%,
        rgba(236, 72, 153, 0.04) 50%,
        rgba(147, 51, 234, 0.04) 80%,
        rgba(8, 8, 17, 1) 100%
    );
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.testimonials-section::before {
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, #9333ea, transparent);
}

.testimonials-section::after {
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, #ec4899, transparent);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    position: relative;
    z-index: 2;
}

/* Testimonials Container */
.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    min-height: 450px; /* Sabit minimum yükseklik */
    display: flex;
    align-items: center;
}

/* Testimonial Item */
.testimonial-item {
    background: linear-gradient(155deg, 
        rgba(15, 15, 30, 0.98) 0%, 
        rgba(147, 51, 234, 0.1) 50%,
        rgba(236, 72, 153, 0.1) 100%
    );
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 30px;
    padding: 0;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(147, 51, 234, 0.1) inset;
    overflow: hidden;
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: testimonialFadeIn 0.6s ease-out;
}

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

.testimonial-item:hover {
    transform: translateY(-8px);
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 30px 80px rgba(147, 51, 234, 0.3),
                0 0 0 1px rgba(147, 51, 234, 0.2) inset;
}

/* Decorative Corner Element */
.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, 
        rgba(147, 51, 234, 0.2), 
        transparent 70%
    );
    pointer-events: none;
    transition: all 0.5s;
}

.testimonial-item:hover::before {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at top right, 
        rgba(236, 72, 153, 0.25), 
        transparent 70%
    );
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 40px 25px;
    position: relative;
    z-index: 2;
}

/* Avatar Wrapper */
.testimonial-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #9333ea, #ec4899) border-box;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
    transition: all 0.4s;
}

.testimonial-item:hover .testimonial-avatar {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.6);
}

/* Verified Badge */
.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(15, 15, 30, 0.98);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.verified-badge i {
    font-size: 13px;
    color: white;
    font-weight: bold;
}

/* Author Info */
.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info h4 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    font-size: 18px;
    color: #fbbf24;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
    animation: starFloat 3s ease-in-out infinite;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.15s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.3s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.45s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.6s; }

@keyframes starFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

/* Testimonial Body */
.testimonial-body {
    padding: 0 40px 35px;
    position: relative;
}

/* Quote Mark */
.quote-mark {
    font-size: 120px;
    line-height: 0;
    color: rgba(147, 51, 234, 0.1);
    font-family: Georgia, serif;
    position: absolute;
    top: -40px;
    left: 30px;
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s;
}

.testimonial-item:hover .quote-mark {
    color: rgba(236, 72, 153, 0.15);
    transform: scale(1.1);
}

/* Testimonial Message */
.testimonial-message {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(147, 51, 234, 0.8);
    font-weight: 500;
}

.testimonial-date i {
    font-size: 13px;
}

.testimonial-badge {
    font-size: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.2), 
        rgba(236, 72, 153, 0.2)
    );
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 20px;
    color: rgba(236, 72, 153, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

/* Navigation Buttons */
.testimonial-nav-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.15), 
        rgba(236, 72, 153, 0.15)
    );
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 50%;
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-nav-btn i {
    position: relative;
    z-index: 1;
}

.testimonial-nav-btn:hover {
    transform: scale(1.15);
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 15px 45px rgba(147, 51, 234, 0.5);
}

.testimonial-nav-btn:hover::before {
    opacity: 1;
}

.testimonial-nav-btn:active {
    transform: scale(1.05);
}

/* Dots Navigation */
.testimonials-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.testimonial-dot:hover {
    background: rgba(147, 51, 234, 0.5);
    transform: scale(1.2);
}

.testimonial-dot.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.8);
    border-color: rgba(147, 51, 234, 0.6);
}

.testimonial-dot.active::before {
    border-color: rgba(147, 51, 234, 0.3);
}

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

@media (max-width: 968px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-container {
        padding: 30px 15px;
    }

    .testimonial-header {
        padding: 30px 30px 20px;
    }

    .testimonial-body {
        padding: 0 30px 30px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .verified-badge {
        width: 26px;
        height: 26px;
    }

    .testimonial-author-info h4 {
        font-size: 20px;
    }

    .testimonial-stars i {
        font-size: 16px;
    }

    .testimonial-message {
        font-size: 16px;
    }

    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .testimonials-navigation {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 20px 10px;
    }

    .testimonial-item {
        border-radius: 24px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 25px 15px;
        gap: 15px;
    }

    .testimonial-avatar {
        width: 65px;
        height: 65px;
        border-width: 3px;
    }

    .verified-badge {
        width: 24px;
        height: 24px;
        border-width: 2.5px;
    }

    .verified-badge i {
        font-size: 11px;
    }

    .testimonial-author-info h4 {
        font-size: 19px;
        margin-bottom: 6px;
    }

    .testimonial-stars {
        justify-content: center;
        gap: 3px;
    }

    .testimonial-stars i {
        font-size: 15px;
    }

    .testimonial-body {
        padding: 0 25px 25px;
    }

    .quote-mark {
        font-size: 90px;
        top: -30px;
        left: 20px;
    }

    .testimonial-message {
        font-size: 15px;
        line-height: 1.75;
        text-align: center;
        margin-bottom: 20px;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 12px;
        padding-top: 15px;
        text-align: center;
    }

    .testimonial-date {
        font-size: 13px;
    }

    .testimonial-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .testimonials-navigation {
        gap: 20px;
        margin-top: 40px;
    }

    .testimonial-nav-btn {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-dot.active {
        width: 34px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-item {
        border-radius: 20px;
    }

    .testimonial-header {
        padding: 20px 20px 12px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .verified-badge {
        width: 22px;
        height: 22px;
    }

    .verified-badge i {
        font-size: 10px;
    }

    .testimonial-author-info h4 {
        font-size: 18px;
    }

    .testimonial-stars i {
        font-size: 14px;
    }

    .testimonial-body {
        padding: 0 20px 20px;
    }

    .quote-mark {
        font-size: 75px;
        top: -25px;
        left: 15px;
    }

    .testimonial-message {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-footer {
        gap: 10px;
    }

    .testimonial-date {
        font-size: 12px;
    }

    .testimonial-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .testimonials-navigation {
        gap: 15px;
        margin-top: 35px;
    }

    .testimonial-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .testimonials-dots {
        gap: 10px;
    }

    .testimonial-dot {
        width: 9px;
        height: 9px;
    }

    .testimonial-dot.active {
        width: 30px;
    }
}
	
/* Swipe Hint - Sadece mobilde görünür */
.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
    border: 2px solid rgba(147, 51, 234, 0.4);
    border-radius: 50px;
    color: var(--light);
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 30px;
    max-width: fit-content;
    animation: swipeHintPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.swipe-hint i:first-child {
    font-size: 18px;
    color: var(--secondary);
}

.swipe-hint i:last-child {
    font-size: 14px;
    animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes swipeHintPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.swipe-hint.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
}

/* Mobilde swipe hint'i göster */
@media (max-width: 768px) {
    .swipe-hint {
        display: flex !important;
    }
}

