/* CSS Değişkenleri */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --border-color: #e5e7eb;
    --container-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Stilleri */
.main-header {
    background: var(--background);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--light-background);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.main-nav .cta {
    margin-left: 1rem;
}

.main-nav .cta a {
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.main-nav .cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 4px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .main-header .container {
        padding: 0 1rem;
    }

    .logo-text {
        display: none;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--background);
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: var(--border-radius);
    }

    .nav-link:hover::after {
        width: 0;
    }

    .main-nav .cta {
        margin: 1rem 0 0 0;
    }

    .main-nav .cta a {
        display: block;
        text-align: center;
    }
}

/* Paketler Hero Bölümü */
.packages-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    margin-top: var(--header-height);
}

.packages-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.packages-hero .hero-description {
    color: #e2e8f0;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.package-types {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.package-type {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-type:first-child {
    background: var(--primary-color);
    color: #ffffff;
}

.package-type:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.package-type:hover {
    transform: translateY(-2px);
}

.package-type:first-child:hover {
    background: var(--primary-color-dark);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.package-type:last-child:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .packages-hero {
        padding: 6rem 0 3rem;
        margin-top: var(--header-height);
    }

    .packages-hero h1 {
        font-size: 2.25rem;
    }

    .packages-hero .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .package-types {
        flex-direction: column;
        padding: 0 1rem;
    }

    .package-type {
        width: 100%;
    }
}

/* Hero Bölümü */
.hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: var(--header-height);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(29, 78, 216, 0.15) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite alternate;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleSlide 0.8s ease-out;
}

.hero-description {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

.devices-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    animation: glow 4s ease-in-out infinite alternate;
}

.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero-shape-1 {
    width: 250px;
    height: 250px;
    background: rgba(37, 99, 235, 0.2);
    top: -30px;
    right: -30px;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(29, 78, 216, 0.15);
    bottom: -20px;
    left: -20px;
}

@keyframes glow {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.4;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes titleSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        align-items: center;
        margin: 0 auto;
    }
    
    .devices-illustration {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .devices-illustration {
        max-width: 280px;
    }
}

/* Özellikler Bölümü */
.features {
    padding: 80px 0;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-description {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 1rem;
}

.feature-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 240px;
    max-width: 300px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-background);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.device-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
}

.device-list li {
    padding: 0.35rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-list li::before {
    content: '✓';
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 1200px) {
    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-card {
        min-width: 220px;
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: 2rem;
    }

    .features-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Fiyatlandırma Bölümü */
.pricing {
    padding: 8rem 0 4rem;
}

.pricing-alt {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing h1, .pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f0f0f, #022e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-description {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 8px 12px rgba(37, 99, 235, 0.15);
}

.package-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #1f2937;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-button {
    display: block;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.pricing-button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 6rem 0 3rem;
    }

    .pricing-alt {
        padding: 3rem 0;
    }

    .pricing h1, .pricing h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        text-align: center;
    }

    .amount {
        font-size: 2.25rem;
    }
}

/* Footer Stilleri */
.main-footer {
    background: linear-gradient(135deg, var(--text-color), #0f172a);
    color: #e2e8f0;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-menu h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 0.75rem;
}

.footer-menu ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-menu ul li a:hover {
    color: #fff;
}

.footer-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-menu ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-brand {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 2rem 3rem;
    }

    .footer-menu {
        flex: 1 0 calc(50% - 1.5rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-wrapper {
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-menu {
        flex: 1 0 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Müşteri Yorumları Bölümü */
.testimonials {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-description {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--light-background);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .testimonial-card:hover {
        transform: none;
    }
}

/* Kurulum Sayfası Stilleri */
.setup-page {
    padding-top: 0;
}

.setup-section {
    padding: 5rem 0;
    background: var(--background);
}

.setup-section-alt {
    background: var(--light-background);
}

.setup-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: var(--container-width);
}

.setup-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.setup-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.setup-icon {
    width: 64px;
    height: 64px;
    background: var(--light-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.setup-card:hover .setup-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.setup-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.setup-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: var(--container-width);
}

.faq-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .setup-section h2 {
        font-size: 2rem;
    }

    .setup-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .setup-section {
        padding: 3rem 0;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .setup-grid {
        grid-template-columns: 1fr;
    }

    .setup-card {
        padding: 1.5rem;
    }
}

/* İçerik Sayfası Stilleri */
.content-page {
    padding-top: 0;
}

.content-section {
    padding: 5rem 0;
    background: var(--background);
}

.content-section-alt {
    background: var(--light-background);
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: var(--container-width);
}

.content-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.content-icon {
    width: 64px;
    height: 64px;
    background: var(--light-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.content-card:hover .content-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.content-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .content-section h2 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 1.5rem;
    }
}

/* İçerik Sayfası Galeri Stili */
.gallery-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-description {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.gallery-container {
    max-width: 100%;
    padding: 0 0.5rem;
    margin: 0 auto;
}

.gallery-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-item {
        width: 150px;
        height: 100px;
    }
}

/* Galeri Kontrolleri */
.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.gallery-button:active {
    transform: translateY(0);
}

.gallery-button svg {
    width: 20px;
    height: 20px;
}

.gallery-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.gallery-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .gallery-progress {
        width: 150px;
    }
}

/* Bayilik Sayfası Stilleri */
.dealer-page {
    padding-top: 0;
}

.dealer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.dealer-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
}

.dealer-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.dealer-feature .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.dealer-feature h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dealer-feature p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    max-width: 800px;
}

.pricing-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.pricing-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0;
    flex: 1;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0;
    margin-right: 2rem;
}

.currency {
    color: var(--light-text);
    font-size: 1rem;
}

.amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 0;
}

.pricing-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.pricing-button::after {
    content: '→';
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .package-price {
        margin-right: 0;
        justify-content: center;
    }

    .pricing-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .dealer-features {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .dealer-features {
        grid-template-columns: 1fr;
    }

    .pricing-subtitle {
        font-size: 1.25rem;
        padding: 0 1rem;
    }

    .pricing-list {
        padding: 0 1rem;
    }

    .package-name {
        font-size: 1rem;
    }

    .amount {
        font-size: 2rem;
    }
}

/* Ana Sayfa Paketler Bölümü */
.home-pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

.home-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.home-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-pricing-description {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: var(--container-width);
    padding: 0 1rem;
}

.home-pricing-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.home-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.home-pricing-card.featured {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.home-pricing-card .package-label {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gradient);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.home-pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.home-pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.home-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.home-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.home-period {
    color: var(--light-text);
    font-size: 1.1rem;
}

.home-pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.home-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-pricing-features li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-color);
}

.home-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.home-pricing-button {
    display: inline-block;
    width: 100%;
    background: var(--gradient);
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.home-pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

@media (max-width: 1024px) {
    .home-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-pricing {
        padding: 4rem 0;
    }

    .home-pricing h2 {
        font-size: 2rem;
    }

    .home-pricing-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .home-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .home-pricing-card {
        padding: 2rem;
    }

    .home-amount {
        font-size: 3rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-page {
    padding-top: 0;
}

.contact-section {
    padding: 5rem 0;
    background: var(--background);
}

.contact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--light-background);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.whatsapp-button::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-11c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4zm1 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.why-us-section {
    padding: 5rem 0;
    background: var(--light-background);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-section {
    padding: 5rem 0;
    background: var(--background);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: var(--container-width);
    padding: 0 1rem;
}

.faq-item {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-grid {
        padding: 0 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-section h2 {
        font-size: 1.75rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
} 

.leagues-gallery {
    padding: 40px 0;
    background-color: #fff;
}

.leagues-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.leagues-gallery {
    padding: 40px 0;
    text-align: center;
}

.leagues-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.league-item img {
    max-width: 120px;  /* Gerekirse büyüt/küçült */
    height: auto;
    display: block;
}
.platform-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.platform-logos img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.platform-logos img:hover {
    transform: scale(1.05);
}

/* Breadcrumb Navigation Styles - Hidden */
.breadcrumb-nav {
    display: none;
}

/* SEO Optimizations */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Performance Optimizations */
.hero-bg {
    will-change: transform;
    transform: translateZ(0);
}

.glow-effect {
    will-change: transform;
    transform: translateZ(0);
}
