/* ===== CSS Variables ===== */
:root {
    /* Gençlik Temalı Canlı Renk Paleti */
    --color-primary: #8B5CF6;
    --color-primary-light: #A78BFA;
    --color-primary-dark: #7C3AED;
    --color-secondary: #06B6D4;
    --color-accent: #F97316;
    --color-pink: #EC4899;
    --color-lime: #84CC16;
    --color-text: #1F2937;
    --color-text-light: #4B5563;
    --color-bg: #FAFAFA;
    --color-bg-alt: #F5F3FF;
    --color-border: #E5E7EB;

    /* Fontlar */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(139, 92, 246, 0.2);

    /* Border Radius */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Site Banner (Above Header) ===== */
.site-banner {
    width: 100%;
    background: #ffffff;
    padding: 24px 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.site-banner img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: #1a1a1a;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-youth {
    color: var(--color-text);
}

.logo-act {
    color: var(--color-primary);
}

.logo-climate {
    color: var(--color-secondary);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    transform-origin: center;
}

/* Hamburger Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-pink) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    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 ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #F5F3FF 0%, #FCE7F3 50%, #ECFEFF 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

/* ===== Video Section ===== */
.video-section {
    background: var(--color-bg-alt);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
    margin-top: 32px;
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(139, 92, 246, 0.35);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--color-bg);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: var(--transition);
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== Blog Section ===== */
.blog-section {
    background: var(--color-bg-alt);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more:hover {
    color: var(--color-primary-dark);
    gap: 8px;
}

.blog-more {
    text-align: center;
    margin-top: 48px;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--color-bg);
}

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

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    background: var(--color-bg);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-alt);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

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

.faq-item.active {
    border-color: var(--color-primary-light);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-light);
}

/* ===== Footer ===== */
.footer {
    background: #ffffff;
    color: var(--color-text);
    padding: 0;
}

.footer-partners {
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.footer-partners img {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.footer-bottom-section {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
}

.footer-disclaimer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.footer-disclaimer p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand .logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-copyright a:hover {
    color: var(--color-primary-light);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ===== Page Header (for inner pages) ===== */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #F5F3FF 0%, #FCE7F3 50%, #ECFEFF 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Content Section ===== */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 24px;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.content-section ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

/* ===== About Page Hero ===== */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #F5F3FF 0%, #FCE7F3 50%, #ECFEFF 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-hero-text p strong {
    color: var(--color-text);
}

.about-hero-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-image {
        order: -1;
    }

    .about-hero-image img {
        max-width: 250px;
    }
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.partners-section h2 {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 48px;
    letter-spacing: 2px;
}

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

.partner-card {
    background: #2a2a2a;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    background: #333;
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.partner-card h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.partner-card .btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-primary);
    color: white;
    border-radius: 20px;
    display: inline-block;
    transition: var(--transition);
}

.partner-card .btn-sm:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

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

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

    .partner-card h3 {
        min-height: auto;
    }

    .partner-card p {
        min-height: auto;
    }
}

/* ===== Blog Post ===== */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-header .blog-category {
    margin-bottom: 16px;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-post-meta {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    margin: 40px 0 20px;
    text-align: left;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 0 0 24px 24px;
    list-style: disc;
}

.blog-post-content ol {
    list-style: decimal;
}

.blog-post-text ul {
    list-style: disc;
}

.blog-post-content li {
    margin-bottom: 8px;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-text-light);
}

/* ===== Social Share Buttons ===== */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.share-buttons span {
    font-weight: 600;
    color: var(--color-text);
    margin-right: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    color: white;
}

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

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== PDF Download Button ===== */
.pdf-download {
    margin: 32px 0;
    text-align: left;
}

.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-pink) 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-pdf svg {
    flex-shrink: 0;
}

/* ===== Policy Grid (for policy page) ===== */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

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

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
        color: var(--color-text);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-primary);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    section h2 {
        font-size: 2rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===== Image Slider ===== */
.image-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    width: 100%;
}

.slider-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-text);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.03);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .slider-nav {
        display: none;
    }

    .slider-dots {
        padding: 12px 0;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        margin-left: 16px;
    }

    .blog-post-content blockquote {
        padding-left: 16px;
        margin-left: 0;
    }

    .blog-post-text ul {
        margin-left: 16px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.25s; }

/* ===== Blog Post Layout with Side-by-Side Slider ===== */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.blog-post-layout .image-slider {
    margin: 0;
    position: sticky;
    top: 100px;
}

.blog-post-layout .blog-post-text {
    padding-top: 0;
}

.blog-post-layout .blog-post-text h2:first-child {
    margin-top: 0;
}

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

    .blog-post-layout .image-slider {
        position: static;
    }
}

/* ===== Focus States for Accessibility ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Dark Mode Toggle Button ===== */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-left: 16px;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: white;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

body.dark-mode .theme-toggle .sun-icon {
    display: block;
}

body.dark-mode .theme-toggle .moon-icon {
    display: none;
}

/* ===== Dark Mode ===== */
body.dark-mode {
    --color-text: #F9FAFB;
    --color-text-light: #E5E7EB;
    --color-bg: #0F172A;
    --color-bg-alt: #1E293B;
    --color-border: #475569;
    --color-primary-light: #C4B5FD;
    background-color: var(--color-bg);
    color: var(--color-text);
}

body.dark-mode .site-banner {
    background: #1F2937;
    border-bottom-color: #374151;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1F2937 0%, #312E81 50%, #1E3A5F 100%);
}

body.dark-mode .feature-card,
body.dark-mode .blog-card,
body.dark-mode .faq-item {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
}

body.dark-mode .blog-card-image {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
}

body.dark-mode .video-section,
body.dark-mode .blog-section {
    background: var(--color-bg-alt);
}

body.dark-mode .page-header,
body.dark-mode .about-hero {
    background: linear-gradient(135deg, #1F2937 0%, #312E81 50%, #1E3A5F 100%);
}

body.dark-mode .footer {
    background: #0F172A;
}

body.dark-mode .footer-partners {
    background: #1F2937;
    border-bottom-color: #374151;
}

body.dark-mode .footer-disclaimer {
    background: #1F2937;
    border-bottom-color: #374151;
}

body.dark-mode .faq-question {
    background: var(--color-bg-alt);
}

body.dark-mode .faq-question:hover,
body.dark-mode .faq-item.active .faq-question {
    background: #374151;
}

body.dark-mode .nav-menu {
    background: var(--color-bg);
}

body.dark-mode .nav-menu a {
    color: var(--color-text-light);
}

body.dark-mode .slider-btn {
    background: rgba(31, 41, 55, 0.9);
    color: var(--color-text);
}

body.dark-mode .slider-btn:hover {
    background: #374151;
}

body.dark-mode .slider-dots {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border-color: var(--color-border);
}

body.dark-mode .btn-secondary:hover {
    background: #475569;
}

/* Dark mode improvements for better contrast */
body.dark-mode .blog-category {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    color: var(--color-primary-light);
    border-color: rgba(167, 139, 250, 0.4);
}

body.dark-mode .share-buttons {
    border-color: var(--color-border);
}

body.dark-mode .share-buttons span {
    color: var(--color-text);
}

body.dark-mode .read-more {
    color: var(--color-primary-light);
}

body.dark-mode .read-more:hover {
    color: #DDD6FE;
}

body.dark-mode .blog-card h3 {
    color: var(--color-text);
}

body.dark-mode .blog-card p {
    color: var(--color-text-light);
}

body.dark-mode .feature-card h3 {
    color: var(--color-text);
}

body.dark-mode .feature-card p {
    color: var(--color-text-light);
}

body.dark-mode .content-section p,
body.dark-mode .content-section li {
    color: var(--color-text-light);
}

body.dark-mode .blog-post-content {
    color: var(--color-text);
}

body.dark-mode .blog-post-content p {
    color: var(--color-text-light);
}

body.dark-mode .blog-post-content h2,
body.dark-mode .blog-post-content h3 {
    color: var(--color-text);
}

body.dark-mode .blog-post-content blockquote {
    color: var(--color-text-light);
    border-color: var(--color-primary-light);
}

body.dark-mode .faq-answer p {
    color: var(--color-text-light);
}

body.dark-mode .section-subtitle {
    color: var(--color-text-light);
}

body.dark-mode .hero-subtitle,
body.dark-mode .hero-description {
    color: var(--color-text-light);
}

body.dark-mode .page-header p {
    color: var(--color-text-light);
}

body.dark-mode .btn-outline {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
}

body.dark-mode .btn-outline:hover {
    background: var(--color-primary-light);
    color: #0F172A;
}

/* ===== Netflix-Style Video Gallery ===== */
.video-gallery {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    padding: 80px 0;
    overflow: hidden;
}

.video-gallery h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-align: left;
}

.video-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin-bottom: 40px;
}

/* Featured Video */
.featured-video {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.featured-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Carousel */
.video-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.video-carousel-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-carousel-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-pink) 100%);
    border-radius: 2px;
}

.carousel-nav {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

/* Video Carousel Container */
.video-carousel {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.video-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Video Card */
.video-card {
    flex: 0 0 320px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #1a1a1a;
}

.video-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 10;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(139, 92, 246, 0.3);
}

.video-card-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Gradient Overlay */
.video-card-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: opacity 0.3s ease;
}

.video-card:hover .video-card-thumbnail::after {
    background: linear-gradient(
        180deg,
        rgba(139, 92, 246, 0.2) 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #141414;
    margin-left: 4px;
}

.video-card:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-play-btn:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* Video Duration Badge */
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}

/* Video Card Content */
.video-card-content {
    padding: 16px;
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
}

.video-card-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.video-card:hover .video-card-title {
    color: var(--color-primary-light);
}

.video-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.video-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-card-meta svg {
    width: 14px;
    height: 14px;
}

/* Video Card Link */
.video-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Video Card Description */
.video-card-description {
    padding: 0 16px 16px;
    background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.video-desc-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    max-height: 1.5em;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.video-card-description.expanded .video-desc-text {
    max-height: 500px;
    -webkit-line-clamp: unset;
    display: block;
}

.video-desc-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-desc-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
}

.video-desc-toggle .show-less {
    display: none;
}

.video-card-description.expanded .video-desc-toggle .show-more {
    display: none;
}

.video-card-description.expanded .video-desc-toggle .show-less {
    display: block;
}

/* Video Modal - Overlay */
.video-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 99999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.video-modal.active {
    display: flex !important;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
}

/* Video Modal Mobile */
@media (max-width: 768px) {
    .video-modal {
        padding: 10px;
    }

    .video-modal-content {
        width: 100%;
        max-width: none;
        border-radius: 8px;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .video-modal-close svg {
        width: 20px;
        height: 20px;
    }
}

/* Video Progress Bar (for watched videos) */
.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.video-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-pink) 100%);
    border-radius: 0 2px 2px 0;
}

/* View All Button */
.video-gallery-footer {
    text-align: center;
    margin-top: 48px;
}

.btn-netflix {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-netflix:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-netflix svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-netflix:hover svg {
    transform: translateX(4px);
}

/* Responsive Video Gallery */
@media (max-width: 1024px) {
    .video-card {
        flex: 0 0 280px;
    }
}

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

    .video-gallery h2 {
        font-size: 2rem;
        text-align: center;
    }

    .video-gallery .section-subtitle {
        text-align: center;
    }

    .video-carousel-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .video-card {
        flex: 0 0 260px;
    }

    .carousel-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .video-card {
        flex: 0 0 85vw;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== Print Styles ===== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .header,
    .footer,
    .nav-toggle,
    .scroll-top,
    .site-banner,
    .slider-nav,
    .slider-dots,
    .hero-buttons,
    .social-links {
        display: none !important;
    }

    .hero {
        min-height: auto !important;
        padding: 20px 0 !important;
    }

    a {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    p, li {
        orphans: 3;
        widows: 3;
    }

    .blog-post {
        max-width: 100%;
        padding: 0;
    }

    .blog-post-layout {
        display: block;
    }

    .image-slider {
        page-break-inside: avoid;
    }
}
