/* Index Sayfası Özel Stilleri */

/* HERO SECTION - AYNEN KORUNACAK */
.hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

/* HERO ANIMATIONS */
.hero-animations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-code {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    animation: typeWriter 4s infinite;
}

    .floating-code.code1 {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-code.code2 {
        top: 30%;
        right: 15%;
        animation-delay: 1.5s;
    }

    .floating-code.code3 {
        bottom: 30%;
        left: 15%;
        animation-delay: 3s;
    }

    .floating-code.code4 {
        bottom: 20%;
        right: 10%;
        animation-delay: 4.5s;
    }

@keyframes typeWriter {
    0% {
        width: 0;
        opacity: 0;
    }

    20% {
        width: 0;
        opacity: 1;
    }

    50% {
        width: 100%;
        opacity: 1;
    }

    80% {
        width: 100%;
        opacity: 1;
    }

    100% {
        width: 0;
        opacity: 0;
    }
}

.floating-icons {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.15);
    animation: float 6s ease-in-out infinite;
}

    .floating-icons.icon1 {
        top: 15%;
        left: 5%;
        animation-delay: 0s;
    }

    .floating-icons.icon2 {
        top: 25%;
        right: 8%;
        animation-delay: 2s;
    }

    .floating-icons.icon3 {
        bottom: 25%;
        left: 8%;
        animation-delay: 4s;
    }

    .floating-icons.icon4 {
        bottom: 15%;
        right: 5%;
        animation-delay: 1s;
    }

    .floating-icons.icon5 {
        top: 50%;
        left: 3%;
        animation-delay: 3s;
    }

    .floating-icons.icon6 {
        top: 60%;
        right: 3%;
        animation-delay: 5s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.2;
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.25;
    }
}

.error-popup {
    position: absolute;
    background: rgba(255, 69, 58, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    border-left: 4px solid #ff453a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: errorPopup 8s infinite;
    opacity: 0;
}

    .error-popup.error1 {
        top: 35%;
        left: 15%;
        animation-delay: 2s;
    }

    .error-popup.error2 {
        bottom: 35%;
        right: 15%;
        animation-delay: 6s;
    }

    .error-popup.error3 {
        top: 25%;
        left: 10%;
        animation-delay: 1s;
    }

    .error-popup.error4 {
        bottom: 45%;
        right: 10%;
        animation-delay: 3s;
    }

    .error-popup.error5 {
        top: 55%;
        left: 5%;
        animation-delay: 5s;
    }

    .error-popup.error6 {
        bottom: 25%;
        left: 8%;
        animation-delay: 7s;
    }

    .error-popup.error7 {
        top: 40%;
        right: 5%;
        animation-delay: 9s;
    }

    .error-popup.error8 {
        bottom: 55%;
        right: 20%;
        animation-delay: 11s;
    }

    .error-popup.error9 {
        top: 65%;
        left: 15%;
        animation-delay: 13s;
    }

    .error-popup.error10 {
        bottom: 15%;
        right: 5%;
        animation-delay: 15s;
    }

    .error-popup.error11 {
        top: 30%;
        left: 20%;
        animation-delay: 17s;
    }

    .error-popup.error12 {
        bottom: 35%;
        left: 5%;
        animation-delay: 19s;
    }

    .error-popup.error13 {
        top: 50%;
        right: 8%;
        animation-delay: 21s;
    }

    .error-popup.error14 {
        bottom: 60%;
        left: 12%;
        animation-delay: 23s;
    }

    .error-popup.error15 {
        top: 75%;
        right: 15%;
        animation-delay: 25s;
    }

@keyframes errorPopup {
    0%, 90% {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }

    10%, 80% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-popup {
    position: absolute;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    border-left: 4px solid #28a745;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: successPopup 10s infinite;
    opacity: 0;
}

    .success-popup.success1 {
        top: 45%;
        right: 25%;
        animation-delay: 4s;
    }

    .success-popup.success2 {
        top: 35%;
        left: 25%;
        animation-delay: 8s;
    }

    .success-popup.success3 {
        bottom: 40%;
        right: 25%;
        animation-delay: 12s;
    }

    .success-popup.success4 {
        top: 60%;
        left: 10%;
        animation-delay: 16s;
    }

    .success-popup.success5 {
        bottom: 20%;
        left: 20%;
        animation-delay: 20s;
    }

    .success-popup.success6 {
        top: 45%;
        right: 12%;
        animation-delay: 24s;
    }

@keyframes successPopup {
    0%, 90% {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }

    10%, 80% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.loading-bar {
    position: absolute;
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    animation: loadingMove 12s infinite;
}

    .loading-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4);
        animation: loadingProgress 3s ease-in-out infinite;
    }

    .loading-bar.loading1 {
        top: 40%;
        left: 5%;
        animation-delay: 1s;
    }

    .loading-bar.loading2 {
        bottom: 40%;
        right: 5%;
        animation-delay: 7s;
    }

@keyframes loadingMove {
    0%, 80% {
        opacity: 0;
    }

    10%, 70% {
        opacity: 1;
    }
}

@keyframes loadingProgress {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInDown 1s ease-out;
}

[data-theme="dark"] .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Mobile animasyonları optimize et */
    .floating-code,
    .floating-icons,
    .error-popup,
    .success-popup,
    .loading-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
}

/* Trust & Stats Section */
.trust-section {
    padding: 80px 0 60px;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .trust-section {
    background: var(--bg-color);
    border-bottom-color: var(--border-color);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.trust-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

[data-theme="dark"] .stat-item {
    background: var(--surface-color);
    border-color: var(--border-color);
}

/* Solutions Overview */
.solutions-overview {
    padding: 80px 0;
    background: var(--surface-color);
}

[data-theme="dark"] .solutions-overview {
    background: var(--surface-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.solution-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .solution-card.primary::before {
        background: var(--gradient-main);
        transform: scaleX(1);
    }

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .solution-features li {
        padding: 0.5rem 0;
        color: var(--text-color);
        font-size: 0.9rem;
    }

.solution-cta {
    margin-top: auto;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .solution-link:hover {
        color: var(--primary-dark);
        transform: translateX(4px);
    }

[data-theme="dark"] .solution-card {
    background: var(--gray-800);
    border-color: var(--border-color);
}

/* Video Demo Section */
.video-demo-section {
    padding: 80px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .video-demo-section {
    background: var(--bg-color);
}

.video-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Desktop'ta video boyutunu küçült */
@media (min-width: 769px) {
    .video-wrapper {
        max-width: 350px; 
        margin: 0 auto;
    }
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-button:hover {
        background: var(--primary-dark);
        transform: scale(1.1);
    }

.video-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.video-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.demo-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.demo-icon {
    font-size: 1.2rem;
}

.demo-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.demo-calendar {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .demo-calendar:hover {
        color: var(--primary-dark);
    }

/* Features Modern */
.features-modern {
    padding: 80px 0;
    background: var(--surface-color);
}

[data-theme="dark"] .features-modern {
    background: var(--surface-color);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-modern-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

    .feature-modern-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.feature-modern-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-modern-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-modern-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .feature-modern-card {
    background: var(--gray-800);
    border-color: var(--border-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .testimonials-section {
    background: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

    .testimonial-content p::before {
        content: '"';
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .testimonial-content p::after {
        content: '"';
        font-size: 1.5rem;
        color: var(--primary-color);
    }

.author-info h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

[data-theme="dark"] .testimonial-card {
    background: var(--surface-color);
    border-color: var(--border-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

[data-theme="dark"] .cta-section {
    background: var(--primary-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-support {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.support-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .support-link:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #4a90e2 0%, #293d81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-partners-logos img {
    width: 570px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .trust-text h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 2rem 1.5rem;
    }

    .video-demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-features {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-support {
        flex-direction: column;
        gap: 0.5rem;
    }

    .index-partners-logos img {
        width: 315px;
    }
}

@media (max-width: 480px) {
    .trust-section,
    .solutions-overview,
    .video-demo-section,
    .features-modern,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .solution-card,
    .feature-modern-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .trust-text h2,
    .cta-text h2 {
        font-size: 1.6rem;
    }

    .video-info h3 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .index-partners-logos img {
        width:315px;
    }
}

/* Animation Enhancements */
.stat-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .stat-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .stat-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .stat-item:nth-child(4) {
        animation-delay: 0.4s;
    }

.solution-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .solution-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .solution-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .solution-card:nth-child(3) {
        animation-delay: 0.3s;
    }

.feature-modern-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .feature-modern-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature-modern-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature-modern-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature-modern-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .feature-modern-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .feature-modern-card:nth-child(6) {
        animation-delay: 0.6s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Auto-play Enhancement */
.demo-video {
    transition: all 0.3s ease;
}

.video-wrapper:hover .demo-video {
    transform: scale(1.02);
}

/* Interactive Hover Effects */
.solution-card {
    cursor: pointer;
}

    .solution-card:hover .solution-icon {
        transform: scale(1.1) rotate(5deg);
        transition: transform 0.3s ease;
    }

.feature-modern-card:hover .feature-modern-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Dark Mode Specific Adjustments */
[data-theme="dark"] .trust-text h2,
[data-theme="dark"] .video-info h3,
[data-theme="dark"] .cta-text h2 {
    color: var(--white);
}

[data-theme="dark"] .solution-card h3,
[data-theme="dark"] .feature-modern-card h4,
[data-theme="dark"] .testimonial-content p,
[data-theme="dark"] .author-info h5 {
    color: var(--white);
}

.demo-video {
    pointer-events: none; /* videoya tıklamayı engeller */
}

    /* WebKit tabanlı tarayıcılar için play ikonunu gizle */
    .demo-video::-webkit-media-controls {
        display: none !important;
        opacity: 0;
        pointer-events: none;
    }

    /* Firefox için */
    .demo-video::-moz-media-controls {
        display: none !important;
        opacity: 0;
        pointer-events: none;
    }


.index-partners-section {
    padding: 80px 0;
    background: var(--surface-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .index-partners-section {
    background: var(--surface-color);
}

.index-partners-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Floating Background Elements */
.index-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.index-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    animation: indexFloatBackground 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes indexFloatBackground {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(10px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

/* Partner Logos Grid */
.index-partners-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.index-main-partner {
    margin-bottom: 1rem;
}

.index-main-logo {
    width: 160px !important;
    height: 160px !important;
    border: 3px solid var(--primary-color) !important;
    box-shadow: var(--shadow-lg) !important;
}

    .index-main-logo span:first-child {
        font-size: 3.5rem !important;
    }

    .index-main-logo span:last-child {
        font-size: 1.2rem !important;
        font-weight: 900 !important;
    }

.index-other-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.index-partner-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: indexSlideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .index-partner-logo[data-delay="0.2s"] {
        animation-delay: 0.2s;
    }

    .index-partner-logo[data-delay="0.4s"] {
        animation-delay: 0.4s;
    }

    .index-partner-logo[data-delay="0.6s"] {
        animation-delay: 0.6s;
    }

    .index-partner-logo[data-delay="0.8s"] {
        animation-delay: 0.8s;
    }

    .index-partner-logo:hover {
        transform: translateY(-15px) scale(1.1) rotate(5deg);
    }

.index-main-partner:hover {
    transform: translateY(-20px) scale(1.08) rotate(-3deg);
}

@keyframes indexSlideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-logo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Glow Effect for Main Logo */
.index-logo-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 20px;
    opacity: 0;
    animation: indexGlowPulse 3s ease-in-out infinite;
}

@keyframes indexGlowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

/* Sparkles for Main Logo */
.index-logo-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.2rem;
    animation: indexSparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    top: 15%;
    left: 15%;
    animation-delay: 1.4s;
}

@keyframes indexSparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Pulse Effect for Main Logo */
.index-logo-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0;
    animation: indexPulseRing 4s ease-in-out infinite;
}

@keyframes indexPulseRing {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* Ripple Effect for Other Logos */
.index-logo-ripple {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.index-partner-logo:hover .index-logo-ripple {
    opacity: 0.2;
    transform: scale(1);
    animation: indexRippleWave 0.6s ease-out;
}

@keyframes indexRippleWave {
    0% {
        transform: scale(0);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.index-logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 61, 129, 0.1), transparent);
    transition: left 0.6s;
}

.index-partner-logo:hover .index-logo-placeholder::before {
    left: 100%;
}

.index-partner-logo:hover .index-logo-placeholder {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.index-logo-placeholder span:first-child {
    font-size: 2.5rem;
    line-height: 1;
}

.index-logo-placeholder span:last-child {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

[data-theme="dark"] .index-logo-placeholder {
    background: var(--gray-800);
    border-color: var(--border-color);
}

[data-theme="dark"] .index-partner-logo:hover .index-logo-placeholder {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
}

/* Section Title */
.index-partners-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Section Subtitle */
.index-partners-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Integration Stats - REMOVED */

/* Animation Effects */
@keyframes index-float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.index-partner-logo:nth-child(1) {
    animation: index-float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.index-partner-logo:nth-child(2) {
    animation: index-float 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.index-partner-logo:nth-child(3) {
    animation: index-float 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

.index-partner-logo:nth-child(4) {
    animation: index-float 4s ease-in-out infinite;
    animation-delay: 2.4s;
}

.index-partner-logo:nth-child(5) {
    animation: index-float 4s ease-in-out infinite;
    animation-delay: 3.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .index-partners-section {
        padding: 60px 0;
    }

    .index-main-logo {
        width: 130px !important;
        height: 130px !important;
    }

        .index-main-logo span:first-child {
            font-size: 2.8rem !important;
        }

        .index-main-logo span:last-child {
            font-size: 1rem !important;
        }

    .index-other-partners {
        gap: 1.5rem;
    }

    .index-logo-placeholder {
        width: 90px;
        height: 90px;
    }

        .index-logo-placeholder span:first-child {
            font-size: 2rem;
        }

        .index-logo-placeholder span:last-child {
            font-size: 0.8rem;
        }

    .index-partners-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .index-partners-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .index-other-partners {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    .index-logo-placeholder {
        width: 80px;
        height: 80px;
    }

        .index-logo-placeholder span:first-child {
            font-size: 1.5rem;
        }

        .index-logo-placeholder span:last-child {
            font-size: 0.7rem;
        }

    .index-partners-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .index-main-logo {
        width: 110px !important;
        height: 110px !important;
    }

        .index-main-logo span:first-child {
            font-size: 2.2rem !important;
        }

    .index-partners-title {
        font-size: 1.6rem;
    }

    .index-partners-subtitle {
        font-size: 1rem;
    }
}

/* Intersection Observer Animation */
.index-partners-section.fade-in {
    animation: indexFadeInUp 0.8s ease-out forwards;
}

@keyframes indexFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*.logos-wrapper {
    display: flex;
    justify-content: space-between;*/ /* biri sola, diğeri sağa */
    /*align-items: center;
    margin-bottom: 30px;
}

.index-partners-logos img {
    max-width: 285px;
    height: auto;
}

.index-partners-logos1 img {
    max-width: 315px;
    height: auto;
    margin-bottom: 39px;
}*/


/* Genel: sarmalayıcı */
.logos-wrapper {
    display: flex;
    flex-wrap: wrap; /* Gerekirse alta geçsin */
    align-items: center;
    justify-content: center; /* Varsayılan: ortala */
    gap: clamp(16px, 4vw, 48px); /* Esneyen aralık */
    margin-bottom: clamp(16px, 3vw, 40px);
}

/* Logo öğeleri */
.index-partners-logos img,
.index-partners-logos1 img {
    display: block; /* alt boşlukları kaldır */
    height: auto;
    width: 100%;
}

.index-partners-logos img {
    max-width: 285px;
}

.index-partners-logos1 img {
    max-width: 315px;
    margin-bottom: 40px;
}

/* === KIRILIMLAR === */

/* Tablet ve aşağısı: ortalı, yan yana mümkünse; değilse alta */
@media (max-width: 991.98px) {
    .logos-wrapper {
        justify-content: center;
    }
}

/* Küçük ekran: dikey diz, daha dar göster */
@media (max-width: 575.98px) {
    .logos-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .index-partners-logos img,
    .index-partners-logos1 img {
        max-width: 70%; /* Mobilde biraz küçült */
        margin-inline: auto; /* Ortala */
    }
}

/* Büyük ekran: iki logo varsa sağa-sola yay (space-between) */
@media (min-width: 992px) {
    .logos-wrapper {
        justify-content: space-between; /* biri sola, diğeri sağa */
    }
}

@media (max-width: 575.98px) {
    .index-partners-logos1 {
        display: none;
    }
}
