﻿body {
    min-height: 100vh;
    background: #f8f9fb;
}

/* CSS Değişkenleri */
:root {
    --gradient: linear-gradient(135deg, #1D49F4 0%, #5D6CDB 100%);
    --radius: 16px;
    --primary-color: #181C32;
    --secondary-color: #1D49F4;
    --accent-color: #5D6CDB;
    --light-blue: #7D89E2;
    --lighter-blue: #9EA7E9;
    --lightest-blue: #BEC4F1;
    --primary-light: #82E4FF;
    --text-light: #cfd2e3;
    --bg-light: #f8f9fb;
}

/* Genel Stiller */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Container genişlik kontrolü */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navbar Stilleri */
.navbar {
    transition: all 0.3s ease;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
}

.navbar.scrolled {
    background: rgba(24, 28, 50, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link-custom {
    position: relative;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-custom:hover {
    background: rgba(29, 73, 244, 0.1);
    color: var(--secondary-color) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after {
    width: 80%;
}

.nav-link-custom.active {
    background: rgba(29, 73, 244, 0.1);
    color: var(--secondary-color) !important;
}

.nav-link-custom.active::after {
    width: 80%;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.download-btn {
    background: var(--gradient) !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(29, 73, 244, 0.2);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(29, 73, 244, 0.3);
        background: linear-gradient(135deg, #6b51e5 0%, #1a42e0 100%) !important;
    }

/* Hero Bölümü */
.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 480px;
}

.store-btn {
    border-radius: 12px;
    font-size: 18px;
    min-width: 180px;
    justify-content: center;
    transition: all 0.3s ease;
}

    .store-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

.avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

    .avatar:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 4px 15px rgba(29, 73, 244, 0.3);
    }

.avatar-overlap {
    margin-left: -16px;
}

.hero-phone {
    position: relative;
    width: 464px;
    height: 552px;
    max-width: 100%;
}

.hero-phone-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Bölüm Başlıkları */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
}

/* Özellik Kartları - Enhanced with Package-like Animations */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(24, 28, 50, 0.06);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 2rem 1.5rem;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.03), rgba(29, 73, 244, 0.03));
        border-radius: var(--radius);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(24, 28, 50, 0.15);
        border: 1px solid rgba(29, 73, 244, 0.2);
    }

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

    /* Feature Card Content Animations */
    .feature-card h5 {
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .feature-card:hover h5 {
        color: var(--secondary-color);
        transform: scale(1.05);
    }

    .feature-card p {
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .feature-card:hover p {
        color: #181C32 !important;
    }

.gradient-card {
    background: var(--gradient);
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(123, 97, 255, 0.15);
}

    .gradient-card::before {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    }

    .gradient-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 50px rgba(29, 73, 244, 0.25);
    }

        .gradient-card:hover h5,
        .gradient-card:hover p {
            color: #fff !important;
        }

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3fd;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(123, 97, 255, 0.07);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(123, 97, 255, 0.1);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(29, 73, 244, 0.2);
}

.gradient-card .feature-icon {
    background: rgba(255, 255, 255, 0.12);
}

.gradient-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

/* Öne Çıkanlar */
.featured-phone {
    position: relative;
    width: 220px;
    height: 520px;
}

.featured-phone-img {
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 30%;
    box-shadow: 0 8px 32px rgba(29, 73, 244, 0.13);
}

.badge-white {
    background: #fff !important;
    color: #333 !important;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    border-radius: 20px;
    font-weight: 500;
}

.badge-accent {
    background: var(--gradient) !important;
    color: #fff !important;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 20px;
    font-weight: 500;
}

/* Paket Kartları */
.package-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(24, 28, 50, 0.08);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.05), rgba(29, 73, 244, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(29, 73, 244, 0.2);
    border-color: rgba(29, 73, 244, 0.3);
}

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

/* Popular Package Card */
.package-card.popular {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(123, 97, 255, 0.15);
}

.package-card.popular::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.1;
}

.package-card.popular:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(29, 73, 244, 0.25);
}

.package-card.popular:hover::after {
    opacity: 0.2;
}

/* Package Card Content Animations */
.package-card h5 {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.package-card:hover h5 {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.package-card .fs-2 {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.package-card:hover .fs-2 {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.package-card ul {
    position: relative;
    z-index: 2;
}

.package-card ul li {
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.package-card:hover ul li {
    transform: translateX(5px);
    color: #181C32;
}

.package-card .package-btn {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-card .package-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.package-card:hover .package-btn {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 73, 244, 0.3);
}

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

/* Popular Badge Animation */
.package-card:hover .popular-badge {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(123, 97, 255, 0.4);
}

/* Package Content Flexbox */
.package-content {
    width: 100%; /* İçeriğin tam genişliği */
}

/* Kullanıcı Yorumları */
.review-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
}

.reviews-container {
    background: #f8f9fb;
    border-radius: 20px;
    padding: 20px;
}

.reviews-column {
    overflow: hidden;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(24, 28, 50, 0.08);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

    .review-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 8px 25px rgba(24, 28, 50, 0.12);
    }

/* Sliding Animations */
@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.reviews-scroll {
    animation: smoothSlide 30s linear infinite;
    animation-delay: 0s;
}

.reviews-scroll-delayed {
    animation: smoothSlide 35s linear infinite;
    animation-delay: -10s;
}

.reviews-scroll-slow {
    animation: smoothSlide 40s linear infinite;
    animation-delay: -20s;
}

/* Yeni animasyon - daha düzgün döngü */
@keyframes smoothSlide {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Pause animation on hover */
.reviews-container:hover .reviews-scroll,
.reviews-container:hover .reviews-scroll-delayed,
.reviews-container:hover .reviews-scroll-slow {
    animation-play-state: paused;
}

/* Responsive için yorumlar */
@media (max-width: 768px) {
    .reviews-container {
        height: 245px !important;
    }

    .reviews-column {
        width: 100% !important;
        left: 0 !important;
        right: auto !important;
    }

        .reviews-column:nth-child(2),
        .reviews-column:nth-child(3) {
            display: none;
        }

    .review-card {
        font-size: 14px;
        padding: 16px !important;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    margin: 15px 5px;
    padding: 30px 10px;
    border-radius: 12px;
}

.cta-btn {
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

/* Accordion Stilleri */
.accordion-button {
    background: #fff;
    border: none;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(24, 28, 50, 0.06);
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .accordion-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(123, 97, 255, 0.05), rgba(29, 73, 244, 0.05));
        transition: width 0.3s ease;
        z-index: 0;
    }

    .accordion-button:hover::before {
        width: 100%;
    }

    .accordion-button:hover {
        background: #fff;
        box-shadow: 0 4px 20px rgba(24, 28, 50, 0.1);
        transform: translateY(-2px);
        color: var(--secondary-color);
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #1d49f4 100%);
        color: #fff;
        box-shadow: 0 6px 24px rgba(29, 73, 244, 0.25);
        transform: translateY(-2px);
    }

        .accordion-button:not(.collapsed)::before {
            width: 0;
        }

    .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(29, 73, 244, 0.2);
        border: none;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23181C32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 1.5rem;
        height: 1.5rem;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(180deg);
    }

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
    background: #fff;
    color: #666;
    line-height: 1.7;
    padding: 24px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(24, 28, 50, 0.06);
    margin-top: -2px;
    position: relative;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section Enhancements */
.faq-section {
    position: relative;
}

    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 100px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
        transform: translateX(-50%);
    }

/* Footer */
.footer {
    background: #181C32;
    border-top: none;
    margin-top: 0;
}

.footer-link-new {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .footer-link-new:hover {
        color: var(--secondary-color);
        text-decoration: none;
    }

.social-link-footer {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

    .social-link-footer:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.15);
    }

    .social-link-footer img {
        transition: opacity 0.3s ease;
        filter: brightness(0) invert(1);
    }

    .social-link-footer:hover img {
        opacity: 0.8;
    }

.footer-app-btn {
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(24, 28, 50, 0.12);
    border: 1px solid rgba(240, 242, 245, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-highlight-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(24, 28, 50, 0.12);
    border: 1px solid rgba(240, 242, 245, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .feature-highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.02), rgba(123, 97, 255, 0.05));
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 20px;
    }

    .feature-highlight-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 35px rgba(24, 28, 50, 0.18);
        border-color: rgba(29, 73, 244, 0.3);
    }

        .feature-highlight-card:hover::before {
            opacity: 1;
        }

.feature-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(123, 97, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-highlight-card:hover .feature-highlight-icon {
    background: rgba(29, 73, 244, 0.2);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(29, 73, 244, 0.2);
}

.feature-highlight-icon i {
    font-size: 20px;
    position: relative;
    z-index: 2;
}

/* Feature Highlight Cards - Mobile */
.feature-highlight-card-mobile {
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 3px 15px rgba(24, 28, 50, 0.1);
    border: 1px solid rgba(240, 242, 245, 0.8);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

    .feature-highlight-card-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.02), rgba(123, 97, 255, 0.04));
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 16px;
    }

    .feature-highlight-card-mobile:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(24, 28, 50, 0.15);
        border-color: rgba(29, 73, 244, 0.2);
    }

        .feature-highlight-card-mobile:hover::before {
            opacity: 1;
        }

.feature-highlight-icon-mobile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(123, 97, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-highlight-card-mobile:hover .feature-highlight-icon-mobile {
    background: rgba(29, 73, 244, 0.2);
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 3px 10px rgba(123, 97, 255, 0.15);
}

.feature-highlight-icon-mobile i {
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Color variations for icons */
.text-purple {
    color: var(--secondary-color) !important;
}



/* Mobile specific adjustments */
@media (max-width: 768px) {
    .feature-highlight-card-mobile {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .feature-highlight-icon-mobile {
        width: 36px;
        height: 36px;
    }

        .feature-highlight-icon-mobile i {
            font-size: 14px;
        }

    .feature-highlight-card-mobile h6 {
        font-size: 0.9rem;
    }

    .feature-highlight-card-mobile p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    .feature-highlight-card-mobile {
        padding: 0.5rem;
    }

        .feature-highlight-card-mobile h6 {
            font-size: 0.85rem;
        }

        .feature-highlight-card-mobile p {
            font-size: 0.75rem;
        }
}

/* CTA Section Mobile - Enhanced */
@media (max-width: 768px) {
    .cta-section {
        margin: 15px 10px !important;
        padding: 35px 15px !important;
        border-radius: 14px !important;
    }

        .cta-section h2 {
            font-size: 1.7rem !important;
            line-height: 1.3 !important;
            margin-bottom: 1rem !important;
            text-align: center !important;
        }

        .cta-section p {
            font-size: 0.95rem !important;
            line-height: 1.5 !important;
            margin-bottom: 1.75rem !important;
            text-align: center !important;
        }

        .cta-section .col-lg-6 {
            padding: 0 1rem !important;
            text-align: center !important;
        }

    .store-logo-btn-cta {
        width: 155px !important;
        height: 48px !important;
        padding: 6px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .store-logo-cta {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .cta-mockup {
        max-height: 230px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .cta-section .d-flex {
        gap: 0.875rem !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width: 576px) {
    .cta-section {
        margin: 10px 5px !important;
        padding: 30px 10px !important;
        border-radius: 12px !important;
        text-align: center !important;
    }

        .cta-section h2 {
            font-size: 1.6rem !important;
            line-height: 1.3 !important;
            margin-bottom: 1rem !important;
        }

        .cta-section p {
            font-size: 0.9rem !important;
            line-height: 1.5 !important;
            margin-bottom: 1.5rem !important;
            color: #e0e0e0 !important;
        }

    .store-logo-btn-cta {
        width: 150px !important;
        height: 45px !important;
        padding: 5px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .store-logo-cta {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .cta-mockup {
        max-height: 200px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .cta-section .d-flex {
        gap: 0.75rem !important;
        justify-content: center !important;
    }
}

/* Store Logo Buttons */
.store-logo-btn {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transform-origin: center;
}

    .store-logo-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.1), rgba(156, 136, 255, 0.1));
        opacity: 0;
        transition: all 0.4s ease;
        border-radius: 12px;
    }

    .store-logo-btn:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

        .store-logo-btn:hover::before {
            opacity: 1;
        }

.store-logo {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
}

.store-logo-btn:hover .store-logo {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

/* Footer Store Logo Buttons */
.store-logo-btn-footer {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    overflow: hidden;
    width: 140px;
    height: 40px;
    background: #fff;
    padding: 4px;
    box-sizing: border-box;
    position: relative;
    transform-origin: center;
}

    .store-logo-btn-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.05), rgba(156, 136, 255, 0.05));
        opacity: 0;
        transition: all 0.4s ease;
        border-radius: 8px;
    }

    .store-logo-btn-footer:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        background: #f8f9ff;
    }

        .store-logo-btn-footer:hover::before {
            opacity: 1;
        }

.store-logo-footer {
    height: 100%;
    width: 100%;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
}

.store-logo-btn-footer:hover .store-logo-footer {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.05) saturate(1.1);
}

/* CTA Store Logo Buttons */
.store-logo-btn-cta {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    backdrop-filter: blur(10px);
    width: 160px;
    height: 50px;
    box-sizing: border-box;
    position: relative;
    transform-origin: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .store-logo-btn-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        opacity: 0;
        transition: all 0.4s ease;
        border-radius: 16px;
    }

    .store-logo-btn-cta:hover {
        transform: translateY(-6px) scale(1.08);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        border-color: rgba(255, 255, 255, 0.3);
    }

        .store-logo-btn-cta:hover::before {
            opacity: 1;
        }

.store-logo-cta {
    height: 100%;
    width: 100%;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.1);
    object-fit: cover;
    object-position: center;
}

.store-logo-btn-cta:hover .store-logo-cta {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(1.3) saturate(1.3) contrast(1.1);
}

/* CTA Mockup */
.cta-mockup {
    max-height: 220px;
    width: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

    .cta-mockup:hover {
        transform: translateY(-5px);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    }

/* CTA Section Enhanced */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    margin: 40px 20px;
    border-radius: 20px;
    padding: 60px 20px;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        pointer-events: none;
    }

    .cta-section .container {
        position: relative;
        z-index: 2;
    }

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(29, 73, 244, 0.3);
    white-space: nowrap;
}

/* Package Button */
.package-btn {
    border-radius: 12px;
}

/* Button Gradient */
.btn-gradient {
    background: var(--gradient) !important;
    color: #fff !important;
    border: none;
}

    .btn-gradient:hover {
        background: linear-gradient(135deg, #6b51e5 0%, #1a42e0 100%) !important;
        color: #fff !important;
    }

/* Social Media Buttons - Footer */
.social-media-btn-footer {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background: #fff;
    padding: 8px;
    box-sizing: border-box;
    position: relative;
    transform-origin: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .social-media-btn-footer:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: #f8f9ff;
    }

.social-media-icon {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* Sosyal medya ikonlarının renkleri */
.social-media-btn-footer:nth-child(1) .social-media-icon {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(1738%) hue-rotate(213deg) brightness(97%) contrast(97%); /* Facebook mavi */
}

.social-media-btn-footer:nth-child(2) .social-media-icon {
    filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(6816%) hue-rotate(293deg) brightness(103%) contrast(107%); /* Instagram mor-pembe */
}

.social-media-btn-footer:nth-child(3) .social-media-icon {
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(7223%) hue-rotate(356deg) brightness(97%) contrast(97%); /* YouTube kırmızı */
}

.social-media-btn-footer:nth-child(4) .social-media-icon {
    filter: brightness(0) saturate(100%) invert(21%) sepia(100%) saturate(2313%) hue-rotate(197deg) brightness(103%) contrast(97%); /* LinkedIn mavi */
}

.social-media-btn-footer:hover .social-media-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Story Card - About Page */
.story-card {
    position: relative;
    overflow: hidden;
}

    .story-card .section-title {
        position: relative;
        z-index: 2;
    }

    .story-card .story-content {
        position: relative;
        z-index: 2;
    }

    .story-card .stats-container {
        position: relative;
        z-index: 2;
    }

    .story-card .stat-item {
        /* No transitions or hover effects */
    }

/* Hakkımızda sayfasındaki story-card için hover animasyonlarını kaldır */
.story-card.feature-card:hover {
    transform: none !important;
    box-shadow: 0 4px 24px rgba(24, 28, 50, 0.06) !important;
    border: none !important;
}

.story-card.feature-card:hover::before {
    opacity: 0 !important;
}

.story-card.feature-card:hover h5,
.story-card.feature-card:hover h2 {
    color: var(--primary-color) !important;
    transform: none !important;
}

.story-card.feature-card:hover p {
    color: #6c757d !important;
}

/* ===== CHECKOUT PAGE STYLES ===== */

/* Progress Indicator */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 73, 244, 0.3);
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 1rem;
    position: relative;
    top: -20px;
    transition: all 0.3s ease;
}

    .progress-line.active {
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    }

/* Checkout Cards */
.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(24, 28, 50, 0.08);
    border: 1px solid rgba(24, 28, 50, 0.06);
    transition: all 0.3s ease;
}

    .checkout-card:hover {
        box-shadow: 0 8px 30px rgba(24, 28, 50, 0.12);
        transform: translateY(-2px);
    }

.checkout-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #181c32;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fb;
}

/* Package Selection Cards */
.package-selection-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

    .package-selection-card:hover {
        border-color: var(--secondary-color);
        box-shadow: 0 8px 25px rgba(123, 97, 255, 0.15);
        transform: translateY(-3px);
    }

    .package-selection-card.selected {
        border-color: var(--secondary-color);
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.05) 0%, rgba(156, 136, 255, 0.05) 100%);
        box-shadow: 0 8px 25px rgba(29, 73, 244, 0.2);
    }

.package-header {
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #181c32;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

    .package-price .period {
        font-size: 0.875rem;
        font-weight: 500;
        color: #6c757d;
    }

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .package-features li {
        padding: 0.5rem 0;
        color: #6c757d;
        position: relative;
        padding-left: 1.5rem;
    }

        .package-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: 600;
        }

.package-selection-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.package-selection-card.selected .package-selection-indicator {
    opacity: 1;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #181c32;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.required {
    color: #dc3545;
}

.optional {
    color: #6c757d;
    font-weight: 400;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(123, 97, 255, 0.15);
    }

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

    .payment-method:hover {
        border-color: var(--secondary-color);
        background: rgba(123, 97, 255, 0.05);
    }

    .payment-method.active {
        border-color: var(--secondary-color);
        background: linear-gradient(135deg, rgba(123, 97, 255, 0.1) 0%, rgba(156, 136, 255, 0.1) 100%);
        box-shadow: 0 4px 15px rgba(123, 97, 255, 0.15);
    }

    .payment-method i {
        font-size: 1.25rem;
        color: var(--secondary-color);
    }

    .payment-method span {
        font-weight: 600;
        color: #181c32;
    }

/* Order Summary */
.order-item {
    padding: 1rem 0;
}

.order-summary {
    font-size: 0.875rem;
}

    .order-summary .d-flex {
        margin-bottom: 0.5rem;
    }

    .order-summary hr {
        margin: 1rem 0;
        border-color: #e9ecef;
    }

/* Security Badges */
.security-badges {
    text-align: center;
    padding: 1rem 0;
}

    .security-badges img {
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

        .security-badges img:hover {
            opacity: 1;
        }

/* Success Icon */
.success-icon {
    font-size: 4rem;
    color: #28a745;
}

    .success-icon i {
        animation: successPulse 2s infinite;
    }

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Support Info */
.support-info {
    border: 1px solid #e9ecef;
}

    .support-info i {
        color: var(--secondary-color);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-progress {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-line {
        display: none;
    }

    .checkout-card {
        padding: 1.5rem;
    }

    .payment-methods {
        flex-direction: column;
    }

    .payment-method {
        min-width: auto;
    }

    .package-selection-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .checkout-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .checkout-card-title {
        font-size: 1.25rem;
    }

    .package-name {
        font-size: 1.125rem;
    }

    .package-price {
        font-size: 1.25rem;
    }
}

/* Button Enhancements for Checkout */
.btn-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(29, 73, 244, 0.3);
        color: white;
    }

    .btn-gradient:active {
        transform: translateY(0);
    }

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-outline-secondary:hover {
        background: #6c757d;
        border-color: #6c757d;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    }

.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(29, 73, 244, 0.3);
    }

/* Form Check Enhancements */
.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(123, 97, 255, 0.15);
}

.form-check-label {
    font-size: 0.875rem;
    line-height: 1.5;
}

    .form-check-label a {
        text-decoration: none;
    }

        .form-check-label a:hover {
            text-decoration: underline;
        }
