:root {
    --primary-color: #1a237e;
    --secondary-color: #304ffe;
    --accent-color: #2196f3;
    --gradient-1: linear-gradient(45deg, #1a237e, #2196f3);
    --gradient-2: linear-gradient(45deg, #2196f3, #1a237e);
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #0a1929;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header Styles */
.header-top {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
}

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

.logo img {
    height: 50px;
}

.contact-info i {
    margin-left: 20px;
    margin-right: 5px;
}

/* Navigation Styles */
.main-nav {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo {
    margin-right: 40px;
}

.logo img {
    height: 40px;
    display: block;
}

.nav-list {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 20px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-list a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-list a:hover::after {
    width: 70%;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-radius: 20px;
    padding: 20px;
    z-index: 1000;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mega-menu-column {
    padding: 15px;
}

.mega-menu-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    font-size: 1.2em;
}

.mega-menu-column ul li a {
    color: var(--text-color);
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 8px;
    transition: all 0.3s;
}

.mega-menu-column ul li a:hover {
    background: var(--light-bg);
    transform: translateX(10px);
}

/* Slider Styles - Güncelleme */
.main-slider {
    height: 90vh;
    min-height: 600px;
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 50px;
    margin-top: 60px;
}

.slide-text {
    max-width: 600px;
    margin-left: 10%;
    text-align: left;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-subtitle {
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.slide-title {
    font-size: 4em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.2s;
}

.slide-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.4s;
}

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

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

.support-button {
    width: 60px;
    height: 60px;
    background: #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s;
}

.support-button i {
    font-size: 2em;
    color: white;
}

.support-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.support-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}

.support-popup.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.popup-header {
    background: #2196f3;
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

.popup-body {
    padding: 20px;
}

.support-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.support-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.support-text {
    color: #666;
    margin-bottom: 5px;
}

.support-time {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 20px;
}

.start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2196f3;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.start-chat:hover {
    background: #1a237e;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.features-section .section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-box p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .features-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon img {
        width: 28px;
        height: 28px;
    }

    .feature-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-row {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 40px 0;
        margin-top: -30px;
    }

    .features-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Footer Styles */
.footer {
    background: #1a237e;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.contact-item i {
    color: #3b82f6;
    margin-right: 12px;
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #e2e8f0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding: 0 15px;
    }
}

/* Navigation Links */
.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #3b82f6;
}

.nav-link.active {
    background: #3b82f6;
    color: #fff;
}

/* Button Styles */
.btn-primary {
    background: #3b82f6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #3b82f6;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

/* Enhanced Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    position: relative;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-box i {
    font-size: 3em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.feature-box h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1em;
}

/* Enhanced Footer Styles */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a237e 100%);
    color: #fff;
    padding-top: 80px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat center top;
    background-size: cover;
    opacity: 0.1;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 0 0 60px 0;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.footer-section ul li a:hover {
    color: #fff;
    transform: translateX(10px);
}

.footer-section ul li a i {
    margin-right: 10px;
    font-size: 0.8em;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Enhanced FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 15px 30px;
    background: #fff;
    border: none;
    border-radius: 30px;
    color: var(--text-color);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.faq-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.faq-tab span {
    position: relative;
    z-index: 2;
}

.faq-tab:hover,
.faq-tab.active {
    color: #fff;
}

.faq-tab:hover::before,
.faq-tab.active::before {
    opacity: 1;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: var(--gradient-1);
    color: #fff;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

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

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .categories-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .categories-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Pricing Compare Styles */
.pricing-compare {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 20px 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-2);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover .price-circle {
    transform: scale(1.1) rotate(5deg);
}

.price {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
}

.period {
    font-size: 0.9em;
    opacity: 0.8;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin: 10px 0;
}

.card-header p {
    color: #666;
    font-size: 1.1em;
}

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

.card-features li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.card-features li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.card-features i {
    font-size: 1.2em;
    margin-right: 15px;
    color: #2ecc71;
}

.card-features li.unavailable {
    color: #999;
}

.card-features li.unavailable i {
    color: #e74c3c;
}

.card-features strong {
    color: var(--primary-color);
    font-weight: 600;
}

.card-action {
    margin-top: 30px;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 500;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.guarantee {
    display: block;
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
}

/* Channel Categories Styles */
.channel-categories {
    padding: 80px 0;
    background: var(--light-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.category-card i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Why Us Styles */
.why-us {
    padding: 80px 0;
    background: #fff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon i {
    font-size: 2em;
    color: white;
}

/* Testimonials Styles */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px;
}

.quote {
    color: var(--secondary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Statistics Styles */
.statistics {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

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

/* Yeni Hamburger Menü Stilleri */
.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 1002;
}

.menu-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: all 0.4s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
}

.mobile-menu-header .logo img {
    height: 40px;
}

.close-menu {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-content {
    padding: 20px 0;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1em;
}

.mobile-nav a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.mobile-nav a.active {
    color: var(--accent-color);
    background: rgba(245, 0, 87, 0.05);
}

.has-submenu > a {
    justify-content: space-between;
}

.has-submenu > a i:last-child {
    transition: transform 0.3s;
}

.has-submenu.active > a i:last-child {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    list-style: none;
    padding: 0;
    background: #f8f9fa;
}

.submenu a {
    padding-left: 55px;
    font-size: 1em;
}

.mobile-menu-footer {
    padding: 20px;
    background: #f8f9fa;
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: var(--text-color);
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-wrapper {
        padding: 5px 0;
    }
    
    .logo img {
        height: 35px;
    }

    .nav-list {
        display: none;
    }

    .swiper-slide {
        padding-bottom: 80px;
    }

    .slide-text {
        margin: 0 auto 30px;
        text-align: center;
    }
}

/* IPTV Bilgi Bölümü Stilleri */
.iptv-info {
    padding: 80px 0;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-content h3 {
    color: var(--primary-color);
    margin: 30px 0 20px;
    font-size: 1.8em;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: var(--secondary-color);
    margin-right: 15px;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Nasıl Çalışır Bölümü Stilleri */
.how-it-works {
    padding: 80px 0;
    background: var(--light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.step-icon {
    font-size: 3em;
    color: var(--secondary-color);
    margin: 20px 0;
}

/* Paket Karşılaştırma Tablosu Stilleri */
.package-comparison {
    padding: 80px 0;
    background: #fff;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
    padding: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table thead th {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.1em;
    font-weight: 500;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background: #f1f4f8;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--primary-color);
}

.comparison-table .fa-check {
    color: #2ecc71;
    font-size: 1.2em;
}

.comparison-table .fa-times {
    color: #e74c3c;
    font-size: 1.2em;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .pricing-grid,
    .categories-grid,
    .reasons-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu {
        width: 90%;
    }

    .pricing-grid {
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        padding: 60px 20px;
        opacity: 0;
        visibility: hidden;
    }

    .nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        width: 100%;
        margin: 10px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideIn 0.3s ease forwards;
    }

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

    .nav-list li:nth-child(1) { animation-delay: 0.1s; }
    .nav-list li:nth-child(2) { animation-delay: 0.2s; }
    .nav-list li:nth-child(3) { animation-delay: 0.3s; }
    .nav-list li:nth-child(4) { animation-delay: 0.4s; }
    .nav-list li:nth-child(5) { animation-delay: 0.5s; }

    .nav-list a {
        font-size: 1.2em;
        padding: 15px;
        width: 100%;
        text-align: center;
        display: block;
        color: white;
    }

    .features .container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .feature-box {
        padding: 20px;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .feature-box i {
        font-size: 2em;
        margin: 0 20px 0 0;
    }

    .feature-box h3 {
        margin: 0 0 5px 0;
        font-size: 1.1em;
    }

    .feature-box p {
        margin: 0;
        font-size: 0.9em;
        color: #666;
    }

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

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

    .slide-content {
        padding: 30px;
        margin: 0 15px;
    }

    .slide-content h2 {
        font-size: 2em;
    }

    .comparison-table {
        margin: 20px -15px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9em;
    }

    /* Mobil Footer Menü */
    .mobile-footer-menu {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    /* WhatsApp butonunu mobil footer menünün üzerine taşı */
    .whatsapp-support {
        bottom: 80px;
    }

    /* Ana slider yüksekliğini ayarla */
    .main-slider {
        height: 70vh;
    }

    .slide-text {
        margin-left: 0;
        text-align: center;
        margin: 0 auto;
    }

    .slide-title {
        font-size: 2.5em;
    }

    /* Pricing kartlarını düzenle */
    .pricing-card {
        padding: 30px 20px;
    }

    .price-circle {
        width: 100px;
        height: 100px;
    }

    /* İçerik bölümlerini düzenle */
    .content-grid,
    .info-grid {
        padding: 0 15px;
    }

    .content-text h2 {
        font-size: 2em;
    }

    /* Cihaz uyumluluk kartlarını düzenle */
    .device-item {
        padding: 20px;
    }

    /* İstatistik kartlarını düzenle */
    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .pricing-grid,
    .categories-grid,
    .reasons-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .slide-content h2 {
        font-size: 2em;
    }

    .slide-content p {
        font-size: 1em;
    }

    .pricing-card.popular {
        transform: none;
    }

    .container {
        padding: 0 15px;
    }

    /* Header düzenlemeleri */
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Slider içeriğini düzenle */
    .slide-subtitle {
        font-size: 1em;
    }

    .slide-title {
        font-size: 2em;
    }

    .slide-description {
        font-size: 1em;
    }

    /* Paket kartlarını düzenle */
    .pricing-card {
        margin: 0 10px;
    }

    .card-features li {
        padding: 10px 0;
    }

    /* Özellik kartlarını düzenle */
    .feature-detail-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    /* App download bölümünü düzenle */
    .app-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer düzenlemeleri */
    footer {
        padding-bottom: 80px; /* Mobil menü için alan bırak */
    }

    .footer-content {
        padding: 0 15px;
    }
}

/* Device Compatibility Styles */
.device-compatibility {
    padding: 100px 0;
    background: var(--light-bg);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.device-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.device-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.device-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-icon i {
    font-size: 2em;
    color: white;
}

.device-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.device-features li {
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
}

/* Special Content Styles */
.special-content {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text h2 {
    font-size: 3em;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-features {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.content-features li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.content-features i {
    font-size: 2em;
    margin-right: 20px;
    color: var(--accent-color);
}

.btn-gradient {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(245, 0, 87, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 0, 87, 0.4);
}

/* Features Detail Styles */
.features-detail {
    padding: 80px 0;
    background: white;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-detail-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-detail-item:hover {
    transform: translateY(-5px);
}

/* App Download Styles */
.app-download {
    padding: 100px 0;
    background: var(--gradient-1);
    color: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-btn {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.app-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.app-btn i {
    font-size: 2em;
    margin-right: 15px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-grid,
    .app-content {
        grid-template-columns: 1fr;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .devices-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobil Footer Menü */
.mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8em;
    padding: 5px 0;
}

.mobile-menu-item i {
    font-size: 1.4em;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.mobile-menu-item span {
    font-size: 0.9em;
}

.mobile-menu-item.active {
    color: var(--accent-color);
}

.mobile-menu-item.active i {
    transform: translateY(-2px);
}

/* Tablet için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    .mega-menu {
        width: 90%;
    }

    .slide-title {
        font-size: 3em;
    }

    .pricing-grid {
        gap: 20px;
    }

    .device-item {
        padding: 25px;
    }
}

/* Animasyonları optimize et */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dokunmatik cihazlar için hover efektlerini düzenle */
@media (hover: none) {
    .pricing-card:hover,
    .feature-box:hover,
    .category-card:hover {
        transform: none;
    }

    .btn-pricing:hover,
    .btn-gradient:hover {
        transform: none;
    }
}

/* Bayilik Bölümü Stilleri */
.dealership {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.dealership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

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

.dealership-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dealership-features li:hover {
    transform: translateX(10px);
}

.dealership-features i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2em;
}

.dealership-regions {
    margin-top: 40px;
}

.dealership-regions h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.region-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.region-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.dealership-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.5em;
    color: white;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.dealership-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--gradient-1);
    border-radius: 20px;
    color: white;
}

.dealership-cta h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.dealership-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .dealership-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealership-features li {
        padding: 12px;
    }

    .dealership-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .dealership-cta h3 {
        font-size: 1.5em;
    }
}

.page-navigator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 8px;
    transition: all 0.3s ease;
}

.nav-sections {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-sections li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.nav-sections li a i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-sections li a:hover {
    background: #f5f5f5;
    color: #007bff;
}

/* Tooltip stil */
.nav-sections li a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 50px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-sections li a::after {
    content: '';
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-sections li a:hover::before,
.nav-sections li a:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Aktif bölüm için stil */
.nav-sections li a.active {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

/* Mobil cihazlarda gizle */
@media (max-width: 1200px) {
    .page-navigator {
        display: none;
    }
}

/* Tab Stilleri */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: white;
    border-radius: 30px;
    font-size: 1.1em;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 1.2em;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.tab-btn.active {
    background: var(--gradient-1);
    color: white;
}

/* Paket İçerik Alanları */
.pricing-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pricing-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        padding: 0 20px;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Inner Pages Enhanced Styles */
.inner-page-header {
    background: var(--gradient-1);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.inner-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="0.2" d="M0,128L48,144C96,160,192,192,288,192C384,192,480,160,576,144C672,128,768,128,864,144C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
}

.inner-page-header .container {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.inner-page-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.inner-page-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Package Pages Enhanced Styles */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover {
    transform: translateY(-15px);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon i {
    font-size: 2em;
    color: #fff;
}

.package-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

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

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

/* Dealership Page Enhanced Styles */
.dealership-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.dealership-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.dealership-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealership-icon i {
    font-size: 1.8em;
    color: #fff;
}

.dealership-content {
    padding: 80px 0;
    background: var(--light-bg);
}

.dealership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dealership-text h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.dealership-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dealership-benefits {
    list-style: none;
    padding: 0;
}

.dealership-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dealership-benefits li i {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* FAQ Page Enhanced Styles */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-search {
    max-width: 600px;
    margin: 30px auto;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-size: 1.1em;
}

.faq-search i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2em;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 15px 30px;
    background: #fff;
    border-radius: 50px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-category:hover,
.faq-category.active {
    background: var(--gradient-1);
    color: #fff;
}

/* Responsive Styles for Inner Pages */
@media (max-width: 1024px) {
    .package-grid,
    .dealership-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inner-page-title {
        font-size: 2.5em;
    }
    
    .package-grid,
    .dealership-features,
    .dealership-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card,
    .dealership-card {
        padding: 30px 20px;
    }
}

/* Nasıl Çalışır Bölümü */
.how-it-works {
    padding: 80px 0;
    background: #fff;
}

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

.step-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-link {
    display: block;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.step-link img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.step-link h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-link p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Özellikler Bölümü */
.features {
    padding: 60px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #1e40af;
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

.feature-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
}

/* Özellikleri yan yana kartlar için stil güncelliyorum */
.features {
    padding: 60px 0;
    background: #fff;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4481eb 0%, #04befe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #fff;
    font-size: 28px;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .feature-card {
        min-width: 180px;
        max-width: 220px;
    }
}

@media (max-width: 991px) {
    .feature-card {
        min-width: 160px;
        max-width: 200px;
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        min-width: calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .feature-card {
        min-width: 100%;
    }
    
    .features {
        padding: 40px 0;
        margin-top: -30px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Bayilik Sayfası Stilleri */
.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #2196f3 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    opacity: 0.9;
}

/* Bayilik Avantajları */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e40af;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Bayilik Paketleri */
.packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 30px;
    text-align: center;
    color: #fff;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
}

.package-features {
    padding: 30px;
}

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

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #4a5568;
}

.package-features i {
    color: #2563eb;
    margin-right: 10px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-size: 18px;
    color: #1e40af;
    margin-bottom: 5px;
}

.author-info p {
    color: #64748b;
    font-size: 14px;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    color: #4a5568;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Bayilik Bilgileri Sayfası */
.bayilik-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.page-title {
    text-align: center;
    font-size: 32px;
    color: #1e40af;
    margin-bottom: 40px;
    font-weight: 600;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-card h2 {
    color: #1e40af;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h2 i {
    color: #2563eb;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 16px;
}

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

.info-list li {
    color: #4a5568;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    margin-right: 10px;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #2563eb;
    width: 20px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .info-card h2 {
        font-size: 20px;
    }

    .info-list li {
        padding: 10px 0;
    }
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232563eb" fill-opacity="0.05" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,197.3C672,224,768,224,864,197.3C960,171,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.feature-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.feature-content h3 {
    color: #1e40af;
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

.feature-content p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cta-button {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 24px;
}

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

    .feature-box {
        padding: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }
}

/* Ana Sayfa Tercih Bölümü */
.home-features {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.home-features .section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-check {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #4481eb 0%, #04befe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check i {
    color: #fff;
    font-size: 18px;
}

.feature-text {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .home-features {
        margin-top: -30px;
        padding: 40px 0;
    }
    
    .home-features .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 15px;
    }
}

.mobile-menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu-button {
        display: block;
        padding: 10px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-items {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .mobile-menu-items.active {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
} 

// ... existing code ...

/* How it works section için mobil uyumluluk */
.how-it-works {
    padding: 60px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* App image'ı mobilde gizleme */
.app-image {
    flex: 1;
    display: block;
}

@media screen and (max-width: 768px) {
    /* How it works section mobil düzenlemeler */
    .how-it-works {
        padding: 40px 0;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }
    
    .step {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    /* App image'ı mobilde gizleme */
    .app-image {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .how-it-works h2 {
        font-size: 1.5rem;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
}
.features-section-new {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-new {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    background: #007bff;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.feature-item-new:hover .feature-icon-new {
    transform: scale(1.1);
    background: #0056b3;
}

.feature-text-new {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}
