/* ============================================
   DIGITURK CLONE - CSS STYLES
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E30613;
    --primary-dark: #c20510;
    --purple: #7C3AED;
    --purple-dark: #6D28D9;
    --yellow: #EAB308;
    --yellow-dark: #CA8A04;
    --blue: #2563EB;
    --green: #16A34A;
    --dark: #1E293B;
    --darker: #0F172A;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray-100);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

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

.btn-white {
    background: var(--white);
    color: var(--dark);
}
.btn-white:hover {
    background: var(--gray-100);
}

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

.btn-yellow {
    background: var(--yellow);
    color: var(--dark);
}
.btn-yellow:hover {
    background: var(--yellow-dark);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}
.btn-blue:hover {
    background: #1D4ED8;
}

.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover {
    background: #15803D;
}

.btn-outline-red {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}
.btn-outline-red:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--darker);
    color: var(--white);
    padding: 0.75rem 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-left i {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
}

.top-bar-promo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-badge {
    background: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.promo-label {
    display: block;
    font-size: 0.75rem;
}

.promo-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.promo-info {
    text-align: right;
}

.promo-league {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

/* Countdown Styles */
.countdown-wrapper {
    display: flex;
    gap: 0.5rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    min-width: 50px;
}

.countdown-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.team-name {
    font-weight: 600;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .countdown-wrapper {
        display: none;
    }
    
    .promo-info {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .team-name {
        display: none;
    }
    
    .match-preview {
        gap: 0.5rem;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.logo-sub {
    font-size: 0.625rem;
    color: var(--gray-500);
}

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

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--dark);
}

.dropdown-toggle:hover {
    color: var(--primary-red);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    border-radius: 0.5rem;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 50;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.dropdown-section a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.dropdown-section a:hover {
    color: var(--primary-red);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-200);
}

@media (max-width: 1024px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider-section {
    position: relative;
}

.hero-slider-container {
    display: flex;
    position: relative;
}

.hero-slider {
    flex: 1;
    position: relative;
    height: 520px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.85) 0%, rgba(124, 58, 237, 0.7) 50%, rgba(168, 85, 247, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.slide-left-player,
.slide-right-player {
    position: absolute;
    bottom: 0;
    height: 90%;
    z-index: 5;
}

.slide-left-player {
    left: 0;
}

.slide-right-player {
    right: 280px;
}

.slide-left-player img,
.slide-right-player img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 1200px) {
    .slide-left-player,
    .slide-right-player {
        opacity: 0.4;
    }
    .slide-right-player {
        right: 0;
    }
}

@media (max-width: 768px) {
    .slide-left-player,
    .slide-right-player {
        display: none;
    }
}

.slide-center {
    text-align: center;
    color: var(--white);
    z-index: 20;
    max-width: 500px;
}

.slide-title {
    font-size: 2.75rem;
    font-weight: 900;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 0.25rem;
}

.slide-brand {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.slide-match-info {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.match-teams-display {
    font-size: 1.125rem;
    font-weight: 700;
}

.match-time-info {
    font-size: 0.875rem;
    color: #FBBF24;
    font-weight: 600;
}

.slide-price-card {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.slide-price-card.purple {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
}

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

.price-name {
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
}

.price-details {
    text-align: right;
}

.price-details .price-period {
    font-size: 0.625rem;
    opacity: 0.9;
    display: block;
}

.price-amount-big {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}

.price-amount-big .amount {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-amount-big .currency {
    font-size: 1rem;
    font-weight: 700;
}

.slide-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.slide-cta-btn.purple {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
}

.slide-cta-btn:hover {
    transform: scale(1.05);
}

.slide-cta-btn i {
    background: var(--white);
    color: #EC4899;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-cta-btn span {
    text-align: left;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-nav.prev {
    left: 1rem;
}

.slider-nav.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .slider-nav.next {
        right: 1rem;
    }
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 30;
}

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

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Hero Form Sidebar */
.hero-form-sidebar {
    width: 300px;
    background: var(--white);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero-slider-container {
        flex-direction: column;
    }
    
    .hero-form-sidebar {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
        margin-top: -50px;
        z-index: 40;
        border-radius: 1rem;
        box-shadow: var(--shadow-xl);
    }
    
    .hero-slider {
        height: 450px;
    }
}

.form-sidebar-widget {
    padding: 1.5rem;
}

.form-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-logo .logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.form-logo .logo-sub {
    font-size: 0.5rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.form-field {
    margin-bottom: 0.875rem;
}

.form-field input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-field input::placeholder {
    color: var(--gray-500);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-red);
}

.form-check label {
    font-size: 0.75rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.form-check a {
    color: var(--primary-red);
}

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

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 0.75rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-200);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.btn-buy:hover {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.form-disclaimer {
    font-size: 0.625rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Feature Bar */
.feature-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
    border-top: 1px solid #D1FAE5;
}

@media (max-width: 768px) {
    .feature-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid #10B981;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #10B981;
    font-size: 1.25rem;
}

.feature-icon-circle.bein {
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.1;
}

.feature-icon-circle.bein span {
    font-size: 0.75rem;
}

.feature-item p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* Matches Bar */
.matches-bar {
    background: var(--primary-red);
    padding: 0;
    overflow: hidden;
}

.matches-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.matches-scroll::-webkit-scrollbar {
    display: none;
}

.match-bar-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    min-width: 200px;
}

.match-bar-league {
    font-size: 0.875rem;
    font-weight: 700;
}

.match-bar-time {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Legacy hero styles for other pages */
.hero {
    position: relative;
    height: 580px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.9), rgba(124, 58, 237, 0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero-logo {
    height: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-highlight {
    font-size: 3rem;
    font-weight: 800;
    color: #FBBF24;
    margin-bottom: 2rem;
}

.hero-price-box {
    background: rgba(126, 34, 206, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    display: inline-block;
}

.hero-price-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.hero-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 3.5rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark {
    background: var(--darker);
    color: var(--white);
}

.section-gradient-red {
    background: linear-gradient(135deg, var(--primary-red), #F97316);
    color: var(--white);
}

.section-gradient-purple {
    background: linear-gradient(135deg, var(--purple), #EC4899);
    color: var(--white);
}

.section-gradient-blue {
    background: linear-gradient(135deg, var(--blue), #06B6D4);
    color: var(--white);
}

/* ============================================
   FEATURE ICONS
   ============================================ */
.feature-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.feature-icon {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 0.625rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-icon:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-icon p {
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.card-image-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
}

.card-price-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   MATCH CARDS
   ============================================ */
.match-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.match-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.match-league {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.match-team {
    text-align: center;
    flex: 1;
}

.match-team img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.match-team-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.match-vs {
    text-align: center;
    padding: 0 1rem;
}

.match-time-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.match-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.match-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.match-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ============================================
   APPLICATION FORM BOX
   ============================================ */
.application-form {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.application-form .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.page-hero-logo {
    height: 100px;
    margin-bottom: 1.5rem;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-hero-price {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-block;
}

.page-hero-price-value {
    font-size: 3rem;
    font-weight: 800;
}

/* ============================================
   FEATURES LIST
   ============================================ */
.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.features-list li i {
    color: var(--green);
    margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--gray-300);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-desc {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.7;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.contact-box:hover {
    background: var(--gray-700);
}

.contact-box.whatsapp {
    background: #25D366;
}

.contact-box.whatsapp:hover {
    background: #128C7E;
}

.contact-box i {
    font-size: 1.25rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-300);
}

.contact-value {
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid var(--dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    margin-top: 2rem;
    font-size: 0.65rem;
    color: rgba(100, 116, 139, 0.6);
    text-align: center;
    padding: 0.75rem;
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   SEO İÇERİK BÖLÜMÜ
   ============================================ */
.seo-content-section {
    background: var(--gray-100);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.seo-content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.seo-content-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.seo-content-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-content-section ul li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-section {
    background: var(--white);
    padding: 4rem 0;
}

.faq-item {
    background: var(--gray-100);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gray-200);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ============================================
   MOVIES SCROLL
   ============================================ */
.movies-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.movies-scroll::-webkit-scrollbar {
    height: 6px;
}

.movies-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.movies-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.movie-card {
    flex-shrink: 0;
    width: 180px;
    cursor: pointer;
}

.movie-poster {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 2/3;
    margin-bottom: 0.75rem;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.movie-card:hover .movie-poster img {
    transform: scale(1.1);
}

.movie-poster-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.movie-card:hover .movie-poster-overlay {
    background: rgba(0,0,0,0.5);
}

.movie-play-icon {
    opacity: 0;
    font-size: 3rem;
    color: var(--white);
    transition: var(--transition);
}

.movie-card:hover .movie-play-icon {
    opacity: 1;
}

.movie-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-meta {
    font-size: 0.75rem;
    color: var(--gray-300);
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* ============================================
   TEAM SELECTOR
   ============================================ */
.team-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.team-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.team-btn:hover {
    border-color: var(--gray-300);
}

.team-btn.active {
    border-color: var(--primary-red);
    background: #FEF2F2;
}

.team-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-btn span {
    font-weight: 600;
}

/* ============================================
   PRICE CARD
   ============================================ */
.price-card {
    background: linear-gradient(135deg, var(--primary-red), #F97316);
    color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-card-subtitle {
    opacity: 0.9;
}

.price-card-value {
    font-size: 3rem;
    font-weight: 800;
}

/* ============================================
   TABS
   ============================================ */
.tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--gray-200);
    padding: 0.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-btn.active {
    background: var(--white);
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ============================================
   CHANNEL CARD
   ============================================ */
.channel-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
}

.channel-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: var(--transition);
}

.channel-card:hover img {
    transform: scale(1.05);
}

.channel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.channel-card:hover .channel-overlay {
    background: rgba(0,0,0,0.6);
}

.channel-play {
    opacity: 0;
    color: var(--white);
    font-size: 3rem;
    transition: var(--transition);
}

.channel-card:hover .channel-play {
    opacity: 1;
}

.channel-live-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.channel-live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.channel-name {
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
    background: var(--white);
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
    background: linear-gradient(135deg, #FEF2F2, #FFF7ED);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-700);
    font-weight: 500;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-red { color: var(--primary-red); }
.text-purple { color: var(--purple); }
.text-green { color: var(--green); }
.text-gray { color: var(--gray-500); }
.text-white { color: var(--white); }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-dark { background: var(--dark); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.hidden { display: none; }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-highlight {
        font-size: 2rem;
    }
    .page-hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   MODAL - Sizi Arayalım
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-container {
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 50%, #F472B6 100%);
    border-radius: 1rem;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    color: var(--white);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.modal-form {
    background: transparent;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .modal-form-row {
        grid-template-columns: 1fr;
    }
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-label {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-input {
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
}

.modal-input::placeholder {
    color: var(--gray-500);
}

.modal-input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

.modal-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-red);
}

.modal-checkbox label {
    font-size: 0.875rem;
}

.modal-link {
    color: #60A5FA;
    text-decoration: underline;
}

.modal-link:hover {
    color: #93C5FD;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .modal-buttons {
        flex-direction: column;
    }
}

.modal-buttons .btn {
    flex: 1;
    padding: 1rem 1.5rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    background: var(--white);
}

.btn-outline-dark:hover {
    background: var(--gray-100);
}

.modal-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-footer p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.modal-contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.modal-phone-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.modal-phone-info {
    text-align: left;
}

.modal-phone-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.modal-phone-number {
    font-size: 1.25rem;
    font-weight: 700;
}

/* ============================================
   SIDEBAR FORM - Ana Sayfa
   ============================================ */
.hero-with-sidebar {
    position: relative;
}

.hero-sidebar-form {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 50;
    width: 320px;
}

@media (max-width: 1200px) {
    .hero-sidebar-form {
        position: static;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: -2rem auto 2rem;
        padding: 0 1rem;
    }
}

.sidebar-form-widget {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.sidebar-form-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.sidebar-form-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-red);
}

.sidebar-form-logo .logo-sub {
    font-size: 0.5rem;
    color: var(--gray-500);
}

.sidebar-form-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.sidebar-form-group {
    margin-bottom: 0.75rem;
}

.sidebar-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.sidebar-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.sidebar-input::placeholder {
    color: var(--gray-500);
}

.sidebar-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary-red);
}

.sidebar-checkbox label {
    font-size: 0.75rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.sidebar-link {
    color: var(--primary-red);
}

.sidebar-link:hover {
    text-decoration: underline;
}

.sidebar-submit {
    margin-bottom: 0.75rem;
}

.sidebar-buy {
    margin-bottom: 1rem;
}

.sidebar-disclaimer {
    font-size: 0.625rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   SEO CONTENT SECTION - Zengin İçerik
   ============================================ */
.seo-content-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

@media (max-width: 992px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
}

.seo-main-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.seo-main-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-main-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-main-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.seo-main-content ul li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.seo-main-content ul li strong {
    color: var(--dark);
}

/* SEO Highlight Box */
.seo-highlight-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FFF5F5 100%);
    border-left: 4px solid var(--primary-red);
    padding: 1.5rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin: 2rem 0;
}

.seo-highlight-box h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    color: var(--primary-red);
}

.seo-highlight-box h3 i {
    font-size: 1.5rem;
}

.seo-highlight-box p {
    margin-bottom: 0;
}

/* SEO Feature Grid */
.seo-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .seo-feature-grid {
        grid-template-columns: 1fr;
    }
}

.seo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.seo-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.seo-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.seo-feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.seo-feature-item span {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* SEO League Grid */
.seo-league-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.seo-league-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.seo-league-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-league-icon i {
    color: white;
    font-size: 1.25rem;
}

.seo-league-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.seo-league-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* SEO Device Grid */
.seo-device-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.seo-device-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.seo-device-item i {
    font-size: 1.25rem;
    color: var(--primary-red);
}

.seo-device-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

/* SEO Feature List */
.seo-feature-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.seo-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.seo-feature-list li i {
    color: var(--green);
    margin-top: 4px;
}

/* SEO Package List */
.seo-package-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

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

.seo-package-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary-red);
}

.seo-package-item strong {
    font-size: 1rem;
    color: var(--dark);
}

.seo-package-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0.25rem 0 0;
}

/* SEO CTA Box */
.seo-cta-box {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    max-width: none;
}

.seo-cta-box p {
    color: white;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .seo-cta-box {
        padding: 1rem 1.5rem;
    }
    .seo-cta-box p {
        font-size: 0.95rem;
    }
}

/* Pulse Button - Nefes Alan Buton */
.cta-pulse-btn {
    background: #fff;
    color: var(--primary-red);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 1.125rem;
    cursor: pointer;
    animation: pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.cta-pulse-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

/* SEO Sidebar */
.seo-sidebar {
    position: sticky;
    top: 2rem;
}

.seo-info-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.seo-info-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.seo-info-card h4 i {
    color: var(--primary-red);
}

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

.seo-info-card ul li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.seo-info-card ul li:last-child {
    border-bottom: none;
}

.seo-info-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   FAQ SECTION - Sıkça Sorulan Sorular
   ============================================ */
.faq-section {
    padding: 3rem 0 4rem;
    background: var(--white);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-item {
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question {
    background: var(--primary-red);
    color: white;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.25rem 1.5rem;
    background: var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

