/*
Theme Name: cineiptvserver.com IPTV
Theme URI: https://cineiptvserver.com
Author: cineiptvserver.com
Author URI: https://cineiptvserver.com
Description: Almanya'daki Türk kullanıcılar için özel olarak tasarlanmış Türkçe IPTV satış teması. WhatsApp entegrasyonu, blog özellikleri ve modern tasarım ile geliştirilmiştir.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-master
*/

/* Renk Paleti - cineiptvserver.com */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --accent: #f97316;
    --bg: #fef3f2;
    --text: #1e1b4b;
    --border: #c7d2fe;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Stilleri */
.site-header {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-logo:hover {
    opacity: 0.9;
}

/* Navigasyon Menüsü */
.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.95rem;
}

.main-navigation a:hover {
    color: var(--accent);
    background-color: rgba(255,255,255,0.1);
}

.header-cta {
    flex: 0 0 auto;
}

.btn-live-support {
    background-color: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-live-support:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Ana İçerik */
.site-main {
    padding: 0;
    min-height: calc(100vh - 200px);
    margin-top: 70px;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

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

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider gradient arka plan */
.slider-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #e74c3c 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slider-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.btn-buy-package {
    background-color: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-buy-package:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    color: white;
}

.btn-buy-package svg {
    width: 20px;
    height: 20px;
}

/* Features Bar */
.features-bar {
    background-color: var(--primary);
    padding: 3rem 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Features Bar ile Paketler arası boşluk */
.features-bar + .packages-section {
    margin-top: 4rem;
    padding-top: 5rem;
}

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

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background-color: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.feature-icon svg {
    stroke: white;
    width: 40px;
    height: 40px;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Özellikler İçerik Bölümü */
.features-content-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff5f5 0%, #ffffff 100%);
}

.features-content-header {
    margin-bottom: 3rem;
}

.features-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.features-content-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.feature-content-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.feature-content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.feature-content-item:hover .feature-content-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.feature-content-icon svg {
    width: 40px;
    height: 40px;
}

.feature-content-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-content-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Sabit WhatsApp Butonu */
.whatsapp-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-button svg {
    width: 28px;
    height: 28px;
}

/* Film Afişleri Bölümü */
.movie-posters-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.movie-posters-header {
    margin-bottom: 3rem;
}

.movie-posters-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.movie-posters-description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.movie-posters-note {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.movie-posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.movie-poster-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.movie-poster-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.movie-poster-image {
    width: 100%;
    padding-top: 150%; /* 2:3 aspect ratio */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.movie-poster-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.movie-poster-item:hover .movie-poster-image img {
    transform: scale(1.05);
}

/* Özellikler Kartları Bölümü */
.features-cards-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #fff5f5;
    transition: all 0.3s;
    position: relative;
}

.feature-card-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(196, 69, 105, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

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

.feature-card-icon svg {
    width: 50px;
    height: 50px;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Recent Posts Section */
.recent-posts {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.recent-posts .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

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

/* Kartlar ve İçerik Kutuları */
.content-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* WhatsApp Butonu Stilleri */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

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

/* Blog Yazıları */
.blog-post {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.blog-post-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-title a:hover {
    color: var(--accent);
}

.blog-post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post-content {
    line-height: 1.8;
    color: #555;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Footer */
.site-footer {
    background-color: #1e293b;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-widget h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--accent);
}

.site-info {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .site-main {
        margin-top: 60px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header-cta {
        order: 2;
    }
    
    .btn-live-support {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slider-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .slider-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .btn-buy-package {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .features-bar {
        padding: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
}

/* Ürün/Hizmet Kartları */
.product-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin: 1rem 0;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Yardımcı Sınıflar */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.p-3 {
    padding: 1rem;
}

/* Promo Banner Bölümü */
.promo-banner-section {
    padding: 4rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.promo-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(196, 69, 105, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.promo-banner-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.promo-banner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    min-height: 300px;
}

.promo-banner-content {
    flex: 1;
    color: white;
    z-index: 2;
}

.promo-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.promo-banner-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.btn-test-broadcast {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.btn-test-broadcast:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--primary-hover);
}

.btn-test-broadcast svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
}

.promo-banner-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.promo-devices {
    position: relative;
    width: 250px;
    height: 250px;
}

.promo-remote {
    position: absolute;
    top: 0;
    right: 80px;
    transform: rotate(-15deg);
    opacity: 0.9;
}

.promo-setbox {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.9;
}

.promo-devices svg {
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* Paketler Bölümü (Ana Sayfa) */
.packages-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fff5f5 100%);
}

/* Özellikler Carousel Bölümü */
.features-carousel-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff5f5 0%, #ffffff 100%);
}

.features-carousel-header {
    margin-bottom: 3rem;
}

.features-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.features-carousel-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.features-carousel-wrapper::before,
.features-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.features-carousel-container {
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

.features-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    flex-wrap: nowrap;
}

.feature-carousel-item {
    min-width: 100%;
    flex: 0 0 100%;
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.feature-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.feature-carousel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.feature-carousel-item:hover .feature-carousel-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.feature-carousel-icon svg {
    width: 40px;
    height: 40px;
}

.feature-carousel-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-carousel-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    max-width: 300px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--primary);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Paketler Sayfası */
.packages-page {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fff5f5 100%);
    min-height: calc(100vh - 200px);
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Paketler Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

@media screen and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Paket Kartı */
.package-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border: 1px solid #e0e0e0;
    min-height: 650px;
    display: flex;
    flex-direction: column;
}

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

.package-card.popular {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.package-card.popular .popular-badge {
    background: white;
    color: var(--primary);
}

/* Paket Header */
.package-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.package-card.popular .package-header {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: #fff5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package-card.popular .package-icon {
    background: rgba(255,255,255,0.15);
}

.package-icon svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
}

.package-card.popular .package-icon svg {
    color: white;
}

.package-title-info {
    flex: 1;
}

.package-duration {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card.popular .package-duration {
    color: rgba(255,255,255,0.9);
}

.package-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--primary);
    line-height: 1.3;
}

.package-card.popular .package-name {
    color: white;
}

.package-compatibility {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin: 0.3rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card.popular .package-compatibility {
    color: rgba(255, 255, 255, 0.9);
}

.package-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-card.popular .package-description {
    color: rgba(255,255,255,0.9);
}

/* Paket Fiyat */
.package-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.package-card.popular .package-price {
    border-bottom-color: rgba(255,255,255,0.2);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    display: inline-block;
    line-height: 1;
}

.package-card.popular .price-amount {
    color: white;
}

.price-period {
    font-size: 1.1rem;
    color: #666;
    margin-left: 0.5rem;
    font-weight: 600;
}

.package-card.popular .price-period {
    color: rgba(255,255,255,0.8);
}

/* Paket Özellikleri */
.package-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card.popular .package-features h5 {
    color: white;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    width: 100%;
    min-width: 100%;
    clear: both;
    break-inside: avoid;
    flex-wrap: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-bottom: 1px solid #f5f5f5;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-card.popular .package-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
    min-width: 20px;
}

.package-features li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.package-card.popular .package-features li {
    color: rgba(255,255,255,0.95);
}

.package-card.popular .package-features li svg {
    color: white;
}

.package-card.popular .package-features li {
    color: rgba(255,255,255,0.95);
}

.package-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.package-card.popular .package-features li svg {
    color: white;
}

/* Satın Al Butonu */
.btn-package-buy {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 18px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-top: auto;
}

.btn-package-buy:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
}

.package-card.popular .btn-package-buy {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.package-card.popular .btn-package-buy:hover {
    background-color: #f8f8f8;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.btn-package-buy svg {
    width: 20px;
    height: 20px;
}

.no-packages {
    text-align: center;
    padding: 3rem;
    color: #666;
}

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

@media (max-width: 768px) {
    .packages-page {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .features-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-content-item {
        padding: 2rem 1.5rem;
    }
    
    .features-content-title {
        font-size: 2rem;
    }
    
    .features-content-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .whatsapp-float-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-button svg {
        width: 24px;
        height: 24px;
    }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        min-height: auto;
    }
    
    .promo-banner-title {
        font-size: 1.8rem;
    }
    
    .promo-banner-description {
        font-size: 1rem;
    }
    
    .promo-banner-image {
        display: none;
    }
    
    .promo-devices {
        width: 200px;
        height: 200px;
    }
    
    .movie-posters-title {
        font-size: 1.5rem;
    }
    
    .movie-posters-description {
        font-size: 1rem;
    }
    
    .movie-posters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    @media (max-width: 480px) {
        .movie-posters-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-item {
        padding: 1.5rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
    .feature-card-text {
        font-size: 0.9rem;
    }
}

/* Kurulum Sayfası Stilleri */
.kurulum-page {
    padding-top: 80px;
}

.kurulum-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 120px;
}

.kurulum-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.kurulum-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.kurulum-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Kurulum Accordion Stilleri */
.kurulum-accordion {
    margin-bottom: 1.5rem;
}

.kurulum-accordion-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kurulum-accordion-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.kurulum-accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
    user-select: none;
}

.kurulum-accordion-header:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.kurulum-accordion-header.active {
    background-color: rgba(37, 99, 235, 0.1);
    border-bottom: 2px solid var(--primary);
}

.kurulum-accordion-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
}

.kurulum-accordion-icon {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.kurulum-accordion-header.active .kurulum-accordion-icon {
    transform: rotate(180deg);
}

.kurulum-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.kurulum-accordion-content.active {
    max-height: 5000px;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
}

.kurulum-accordion-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.kurulum-accordion-content h3:first-child {
    margin-top: 0;
}

.kurulum-accordion-content h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.kurulum-accordion-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.kurulum-accordion-content ul,
.kurulum-accordion-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.kurulum-accordion-content li {
    margin-bottom: 0.8rem;
    line-height: 1.9;
    font-size: 1rem;
}

.kurulum-accordion-content li strong {
    color: var(--primary);
    font-weight: bold;
}

.kurulum-accordion-content strong {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.05em;
}

.kurulum-accordion-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
    font-weight: 500;
}

.kurulum-accordion-content a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Kurulum içeriği için genel stiller (accordion dışı) */
.kurulum-content > h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.kurulum-content > p:first-of-type {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

/* Responsive Kurulum Sayfası */
@media (max-width: 768px) {
    .kurulum-title {
        font-size: 2rem;
    }
    
    .kurulum-subtitle {
        font-size: 1rem;
    }
    
    .kurulum-accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .kurulum-accordion-title {
        font-size: 1.1rem;
    }
    
    .kurulum-accordion-content {
        padding: 1.5rem !important;
    }
    
    .kurulum-accordion-content h3 {
        font-size: 1.1rem;
    }
    
    .kurulum-accordion-content h4 {
        font-size: 1rem;
    }
    
    .kurulum-accordion-content ul,
    .kurulum-accordion-content ol {
        margin-left: 1.5rem;
    }
    
    .kurulum-accordion-content p {
        font-size: 0.95rem;
    }
}

/* Responsive Media Queries - Rank Math SEO için */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .main-navigation ul {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .slider-title {
        font-size: 2rem !important;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-content-grid {
        grid-template-columns: 1fr;
    }
    
    .movie-posters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-carousel-wrapper {
        padding: 0 50px;
    }
    
    .features-carousel-title {
        font-size: 2rem;
    }
    
    .features-carousel-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .feature-carousel-item {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .slider-title {
        font-size: 1.5rem !important;
    }
    
    .slider-description {
        font-size: 0.9rem;
    }
    
    .features-carousel-wrapper {
        padding: 0 40px;
    }
    
    .features-carousel-title {
        font-size: 1.75rem;
    }
    
    .features-carousel-description {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .feature-carousel-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-carousel-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-carousel-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-carousel-title {
        font-size: 1.1rem;
    }
    
    .feature-carousel-text {
        font-size: 0.85rem;
    }
    
    .movie-posters-grid {
        grid-template-columns: 1fr;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
}

