<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4299e1;
    --accent-color: #ffc107;
    --gradient-start: #4a90e2;
    --gradient-end: #667eea;
    --background-color: #f7fafc;
    --text-color: #2d3748;
    --border-color: #e2e8f0;
    --section-bg: #ffffff;
    --menu-hover: rgba(66, 153, 225, 0.1);
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Modern Header ve MenÃ¼ Stilleri */
.nav-links {
    display: none;

    /* Hide by default */
    background: rgba(255, 255, 255, 0.95);

    /* Slightly more opaque background */
    padding: 1.5rem;

    /* Increased padding for better spacing */
    border-radius: 10px;

    /* More rounded corners */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);

    /* Deeper shadow for more depth */
    transition: all 0.3s ease;

    /* Smooth transition for opening */
}

.nav-links.active {
    display: flex;

    /* Show the menu */
    flex-direction: column;

    /* Stack items vertically */
    gap: 1.5rem;

    /* Increased space between items */
}

.nav-links a {
    color: var(--primary-color);

    /* Change text color for better contrast */
    padding: 1rem;

    /* Add padding for touch targets */
    border-radius: 8px;

    /* More rounded corners for links */
    transition: background 0.3s, color 0.3s;

    /* Smooth background and color transition */
}

.nav-links a:hover {
    background: var(--secondary-color);

    /* Highlight on hover */
    color: white;

    /* Change text color on hover for contrast */
}


/* Space between items */
.nav-links a {
    color: var(--text-color);

    /* Ensure text color is readable */
    padding: 1rem;

    /* Add padding for touch targets */
    border-radius: 6px;

    /* Rounded corners for links */
    transition: background 0.3s;

    /* Smooth background transition */
}

.nav-links a:hover {
    background: var(--secondary-color);

    /* Highlight on hover */
    color: white;

    /* Change text color on hover for contrast */
}

header {
    background: var(--bg-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
}

.logo span {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
    background: var(--menu-hover);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.has-mega-menu:hover .mega-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
}

.mega-menu-column {
    min-width: 200px;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-column h4 i {
    color: var(--secondary-color);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin: 0.5rem 0;
}

.mega-menu-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-column ul li a:hover {
    color: var(--secondary-color);
    background: var(--menu-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active i {
    transform: rotate(90deg);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .mega-menu {
        min-width: 600px;
    }
}

/* Closing the media query properly */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: var(--bg-light);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        margin: 1rem 0;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
    }

    .mega-menu {
        position: static;
        transform: none;
        min-width: unset;
        width: 100%;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .has-mega-menu.active .mega-menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mega-menu-column {
        padding: 0.5rem;
    }

    .mega-menu-column h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .mega-menu-column ul li {
        margin: 0.5rem 0;
    }

    .mega-menu-column ul li a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section ve Slider */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.3s forwards;
}

.slide-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.6s forwards;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin: 0 0.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button.primary {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.hero-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.stat-box h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.stat-box .description {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 2.2rem;
    }
}

/* Subscription Plans */
.subscription-section {
    background: var(--bg-dark);
    padding: 80px 0;
    color: var(--text-color);
}

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

.plan-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.buy-now {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buy-now:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
}

/* Desteklenen Cihazlar BÃ¶lÃ¼mÃ¼ */
.devices-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.devices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px;
}

.device-card {
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.device-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.device-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: white;
}

.device-card:hover::after {
    opacity: 1;
}

.device-card:hover .device-icon,
.device-card:hover .device-info span,
.device-card:hover .device-features p,
.device-card:hover h3 {
    color: white;
}

.device-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.device-card:hover .device-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.device-icon i {
    font-size: 2.8rem;
    color: white;
}

.device-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.device-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.device-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.device-info i {
    font-size: 1.1rem;
}

.device-features {
    margin-bottom: 30px;
}

.device-features p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    margin: 12px 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.device-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.device-card:hover .device-features i {
    color: var(--accent-light);
}

.store-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-card:hover .store-badge {
    background: rgba(255,255,255,0.2);
}

.store-badge i {
    font-size: 2rem;
}

.badge-text {
    text-align: left;
}

.badge-text span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

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

    .devices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .device-card {
        padding: 25px 20px;
    }

    .device-icon {
        width: 70px;
        height: 70px;
    }

    .device-icon i {
        font-size: 2.2rem;
    }

    .device-card h3 {
        font-size: 1.5rem;
    }
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--bg-light);
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    background: var(--menu-hover);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title-description {
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
    border-color: var(--secondary-color);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card.featured {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.package-card.featured .package-badge {
    background: var(--accent-color);
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured .package-features {
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.package-features {
    margin-bottom: 2rem;
}

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

.package-features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-features i {
    color: var(--secondary-color);
}

.package-card.featured .package-features i {
    color: var(--accent-color);
}

.package-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.package-card.featured .package-button {
    background: var(--accent-color);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Bayilik BÃ¶lÃ¼mÃ¼ Stilleri */
.reseller-section {
    padding: 5rem 0;
    background: var(--section-bg);
}

.reseller-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reseller-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reseller-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.reseller-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.reseller-content {
    padding: 2rem;
}

.reseller-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reseller-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reseller-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.reseller-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reseller-feature-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin: 5rem auto 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px; /* Added padding for better spacing */
}

.faq-item {
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-slider h2 {
        font-size: 2rem;
    }

    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .reseller-grid {
        grid-template-columns: 1fr;
    }

    .reseller-image {
        order: 2;
    }

    .reseller-content {
        order: 1;
        padding: 0;
    }

    .packages-header .section-title {
        font-size: 2.2rem;
    }

    .title-description p {
        font-size: 1.1rem;
    }

    .title-decoration .line {
        width: 40px;
    }
}

/* Yeni Ä°Ã§erik BÃ¶lÃ¼mleri Stilleri */
.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
}

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

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.testimonials {
    background: var(--background-color);
    padding: 5rem 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Header Scroll Stilleri */
header {
    transition: transform 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Responsive tasarÄ±m iÃ§in ek stiller */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Footer Mobil Uyumlu */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Yeni bÃ¶lÃ¼m stilleri */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

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

/* BaÅŸlÄ±k Stilleri */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* SSS BÃ¶lÃ¼mÃ¼ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Destek */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-button i {
    font-size: 2rem;
    color: white;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip strong {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.whatsapp-tooltip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }

    .whatsapp-support {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 1.8rem;
    }
}

/* Footer Stilleri */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: white;
}

.footer-column ul li a {
    color: white;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.social-links a {
    color: white;
    margin: 0 10px;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-column ul li a {
    color: white;
    text-decoration: none;

    /* Alt Ã§izgiyi kaldÄ±rÄ±r */
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    text-decoration: none;

    /* Alt Ã§izgiyi kaldÄ±rÄ±r */
}

/* WhatsApp Destek */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 2rem;
    color: white;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Tab Container */
.package-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Tab Button */
.tab-button {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

/* Active Tab Button */
.tab-button.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Hover Effect */
.tab-button:hover {
    background-color: #ddd;
}

.faq-container {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
    padding: 10px;
}

.faq-question:hover {
    color: #007bff;
}

.faq-answer {
    display: none;

    /* BaÅŸlangÄ±Ã§ta gizli */
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;

    /* BaÅŸlangÄ±Ã§ta sÄ±fÄ±r yÃ¼ksekliÄŸinde */
}

.faq-answer.open {
    display: block;
    max-height: 500px;

    /* YÃ¼ksekliÄŸini artÄ±r, istediÄŸiniz deÄŸeri ayarlayabilirsiniz */
    padding: 10px 0;
}
</pre></body></html>