/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #419F4B;
    --primary-dark: #2E7135;
    --secondary-color: #8D6E63;
    --accent-color: #f59e0b;
    --success-color: #66BB6A;
    --danger-color: #ef4444;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-secondary);
}

/* Tüm İlanları Görüntüle butonunu özel stil - daha belirgin yap */
.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: 2px solid #007bff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.btn-outline {
    background-color: whitesmoke;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Özel kayıt butonu */
.btn-register-special {
    position: relative;
    background: linear-gradient(45deg, #66BB6A 0%, #419F4B 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(65, 159, 75, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
}

.btn-register-special:hover {
    background: linear-gradient(45deg, #419F4B 0%, #2E7135 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 159, 75, 0.4);
}

.btn-register-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-register-special:hover::before {
    left: 100%;
}

/* Masaüstü ve tablet için tam metin */
.btn-text-full {
    display: inline;
    font-size: 0.9rem;
}

/* Mobil için kısa metin */
.btn-text-mobile {
    display: none;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: .3rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

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

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8), 0 6px 20px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight {
    color: #f97316;
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #dac287;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #f97316;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: var(--text-secondary);
}

/* Video Showcase */
.video-showcase {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.video-section {
    margin-bottom: 4rem;
}

.video-section:last-child {
    margin-bottom: 0;
}

.video-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.mobile-videos {
    grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
    max-width: 750px;
    margin: 0 auto;
    justify-content: center;
    gap: 3rem;
}

.desktop-videos {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.video-item {
    width: 100%;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    /* iOS mobil optimizasyonları */
    -webkit-playsinline: true;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Mobil video'lar için 9:16 aspect ratio */
.mobile-videos .video-wrapper {
    width: fit-content;
    margin: 0 auto;
}

.mobile-videos .video-wrapper video {
    aspect-ratio: 9/16;
    object-fit: cover;
    height: 480px;
    width: auto;
    max-width: 100%;
}

/* Desktop video'ları için 16:9 aspect ratio */
.desktop-videos .video-wrapper video {
    aspect-ratio: 16/9;
    object-fit: cover;
    max-height: 600px;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.play-btn:hover {
    transform: scale(1.15);
}

.play-btn svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.video-info {
    color: white;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.video-info p {
    margin: 0;
    font-size: 0.9rem;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}



/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-company {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: #ffffff;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--text-light);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
/* Tablet boyutları için */
@media (max-width: 1024px) and (min-width: 769px) {
    .btn-register-special {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
    
    .btn-text-full {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        padding: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
    
    /* Mobilde giriş yap butonunu gizle ama hero-buttons içindeki btn-secondary'i göster */
    .nav-buttons .btn-secondary {
        display: none;
    }
    
    /* Mobile'da Tüm İlanları Görüntüle butonunu da belirgin göster */
    .hero-buttons .btn-secondary {
        display: inline-flex !important;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: white;
        border: 2px solid #007bff;
        font-weight: 700;
        font-size: 0.9rem;
        padding: 12px 24px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn-secondary:hover {
        background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    }
    
    /* Stats grid - tablet için 2x2 layout */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Mobil cihazlarda özel kayıt butonu */
    .btn-register-special {
        padding: 10px 12px;
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        min-width: auto;
    }
    
    /* Mobil cihazlarda kısa metni göster */
    .btn-text-full {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobil cihazlarda hero video'yu sabit tut */
    .hero-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
    }
    
    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: fixed;
        top: 0;
        left: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        border-width: 1px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    /* Mobil video optimizasyonları (iOS & Android) */
    .video-carousel {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        position: relative;
        z-index: 1;
        /* Android için ek optimizasyonlar */
        will-change: transform;
        contain: layout style paint;
    }
    
    .carousel-slide video {
        max-height: 300px;
        /* Mobil zoom sorununu önlemek için */
        position: relative;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto;
        /* Video boyutunu sabitle */
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        /* Mobil video büyüme sorununu çöz */
        max-width: 100%;
        display: block;
        /* Android için ek optimizasyonlar */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Android'de video kontrollerini gizle */
        -webkit-media-controls: none;
        -moz-media-controls: none;
        media-controls: none;
    }
    
    .carousel-container {
        /* Mobil video büyüme sorununu önle */
        position: relative;
        z-index: 1;
        overflow: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-perspective: 1000px;
        perspective: 1000px;
        width: 100%;
        max-width: 100%;
        /* Android için ek optimizasyonlar */
        contain: layout style paint;
        will-change: transform;
        /* Android'de dokunma gecikmesini azalt */
        touch-action: manipulation;
    }
    
    /* Mobil video grid optimizasyonları */
    .mobile-videos {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 320px;
    }
    
    .desktop-videos {
        max-width: 600px;
    }
    
    .video-section-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .mobile-videos .video-wrapper {
        width: fit-content;
        margin: 0 auto;
    }
    
    .mobile-videos .video-wrapper video {
        height: 400px;
        width: auto;
    }
    
    .desktop-videos .video-wrapper video {
        max-height: 500px;
    }
    
    .play-btn svg {
        width: 40px;
        height: 40px;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 6px;
        padding: 4px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        color: #f97316;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    /* Video optimizasyonları - çok küçük ekranlar */
    .mobile-videos {
        max-width: 280px;
    }
    
    .desktop-videos {
        max-width: 400px;
    }
    
    .mobile-videos .video-wrapper {
        width: fit-content;
        margin: 0 auto;
    }
    
    .mobile-videos .video-wrapper video {
        height: 360px;
        width: auto;
    }
    
    .desktop-videos .video-wrapper video {
        max-height: 400px;
    }
    
    .play-btn svg {
        width: 36px;
        height: 36px;
    }
    
    /* Çok küçük ekranlarda özel kayıt butonu */
    .btn-register-special {
        padding: 8px 10px;
        font-size: 0.75rem;
        max-width: 140px;
    }
    
    .btn-text-mobile {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.carousel-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-video,
    .carousel-btn,
    .btn {
        display: none !important;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
    }
    
    .hero-content {
        color: black;
    }
}

/* FAQ Section Styles */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 25px 30px;
    margin: 0;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #2E7135;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Local Coverage Section Styles */
.local-coverage {
    padding: 80px 0;
    background: white;
}

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

.city-item {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.city-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: var(--transition);
}

.city-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(65, 159, 75, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
}

.city-item:hover::before {
    width: 8px;
}

.city-item h4 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-item h4 span {
    font-size: 1.5rem;
}

.city-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 25px;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
    
    .local-coverage {
        padding: 60px 0;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .city-item {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .city-item h4 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .city-item h4 span {
        font-size: 1.8rem;
    }
    
    .city-item p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .city-item {
        margin: 0 5px;
        padding: 20px 15px;
    }
    
    .city-item h4 {
        font-size: 1rem;
    }
    
    .city-item h4 span {
        font-size: 1.6rem;
    }
    
    .city-item p {
        font-size: 0.85rem;
    }
} 