/**
 * 2025-2026 Modern Design System
 * Transformative Teal + Pastel Orange
 * Glassmorphism, Organic Shapes, Kinetic Typography
 */

/* CSS Variables - Customizable per domain */
:root {
    /* Transformative Teal Palette */
    --primary-color: #14B8A6;
    --primary-dark: #0D9488;
    --primary-light: #5EEAD4;

    /* Pastel Orange Palette */
    --accent-color: #FB923C;
    --accent-dark: #F97316;
    --accent-light: #FDBA74;

    /* Neutral & Supporting Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --background: #F8FAFC;
    --background-alt: #F1F5F9;
    --surface: #FFFFFF;
    --border: rgba(148, 163, 184, 0.2);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Shadows for Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
    --shadow-colored: 0 12px 32px rgba(20, 184, 166, 0.25);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Organic Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 20s ease-in-out infinite;
    z-index: -1;
    filter: blur(60px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 47% 53% 42% 58% / 61% 44% 56% 39%;
    animation: float 25s ease-in-out infinite reverse;
    z-index: -1;
    filter: blur(60px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(3deg); }
}

/* ========================================
   TYPOGRAPHY - Large & Kinetic
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
}

h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
}

h3 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
}

p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ========================================
   HEADER - Glassmorphism
   ======================================== */

.header {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-md);
}

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

.logo {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 48px;
    margin: 0 auto;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(20, 184, 166, 0.05);
}

.contact-info a:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-colored);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::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.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 48px rgba(20, 184, 166, 0.35);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* ========================================
   HERO SECTION - Dynamic & Kinetic
   ======================================== */

.hero {
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}

/* Dynamic background from header.php */
.hero {
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(20, 184, 166, 0.8) 0%,
        rgba(251, 146, 60, 0.6) 100%);
    z-index: 0;
    mix-blend-mode: multiply;
}

/* Organic floating shapes in hero */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    max-width: 1100px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.2);
    animation: heroTitleFloat 3s ease-in-out infinite;
}

@keyframes heroTitleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero p {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero .cta-button {
    padding: 18px 48px;
    font-size: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    box-shadow: 0 12px 32px rgba(251, 146, 60, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero .cta-button:hover {
    animation: none;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 20px 48px rgba(251, 146, 60, 0.5);
}

/* ========================================
   CONTENT SECTION - Organic Cards
   ======================================== */

.content-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 32px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

.description {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* ========================================
   FEATURES SECTION - Glassmorphism Cards
   ======================================== */

.features-header {
    text-align: center;
    margin: 120px 0 80px;
    padding: 0 32px;
}

.features-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 42px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 50%;
    filter: blur(40px);
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(20, 184, 166, 0.3);
}

.feature-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 32px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--background-alt);
    position: relative;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image {
    transform: scale(1.1) rotate(2deg);
}

.feature-card h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p,
.feature-card div {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ========================================
   EXTRA CONTENT SECTION - Gradient BG
   ======================================== */

.extra-content-section {
    background: linear-gradient(135deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(251, 146, 60, 0.08) 100%);
    padding: 120px 32px;
    margin-top: 120px;
    border-radius: 80px;
    margin-left: 32px;
    margin-right: 32px;
    position: relative;
    overflow: hidden;
}

.extra-content-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.extra-content-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.extra-content-container h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.extra-content-text {
    font-size: clamp(17px, 2.5vw, 22px);
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ========================================
   CTA SECTION - Bold & Vibrant
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 120px 32px;
    text-align: center;
    margin: 120px 32px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-content p {
    font-size: clamp(18px, 2.5vw, 28px);
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-section .cta-button {
    background: #FFFFFF;
    color: var(--primary-color);
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
    background: var(--background);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

/* ========================================
   FOOTER - Clean & Minimal
   ======================================== */

.footer {
    background: var(--surface);
    padding: 64px 32px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--background-alt);
}

.footer-contact a:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
    transform: translateY(-2px);
}

.footer p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* ========================================
   WHATSAPP BUTTON - Floating & Animated
   ======================================== */

.whatsapp-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatWhatsApp 3s ease-in-out infinite;
}

@keyframes floatWhatsApp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    animation: none;
}

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for features */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE
   ======================================== */

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

    .hero {
        border-radius: 0 0 40px 40px;
    }

    .extra-content-section,
    .cta-section {
        border-radius: 40px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 734px) {
    /* Header */
    .header-content {
        height: 70px;
        padding: 0 20px;
    }

    .logo {
        height: 44px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 12px;
        transition: background 0.3s;
    }

    .mobile-menu-toggle:hover {
        background: var(--background-alt);
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
        background: var(--text-primary);
        border-radius: 10px;
        transition: all 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        gap: 0;
        padding: 80px 40px;
        align-items: flex-start;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 32px;
        padding: 20px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .header-right {
        gap: 16px;
    }

    .contact-info {
        display: none;
    }

    /* Header CTA button - küçült */
    .header .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Hero */
    .hero {
        min-height: 600px;
        padding: 100px 24px;
        border-radius: 0 0 32px 32px;
    }

    .hero h1 {
        font-size: clamp(36px, 8vw, 56px);
    }

    .hero p {
        font-size: clamp(16px, 3vw, 20px);
    }

    /* Content */
    .content-section {
        margin: 80px auto;
        padding: 0 20px;
    }

    .section-title {
        margin-bottom: 60px;
    }

    /* Features */
    .features-header {
        margin: 80px 0 60px;
        padding: 0 20px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .feature-card {
        padding: 32px;
        border-radius: 32px;
    }

    /* Extra Content */
    .extra-content-section {
        padding: 80px 24px;
        margin: 80px 16px;
        border-radius: 32px;
    }

    /* CTA */
    .cta-section {
        padding: 80px 24px;
        margin: 80px 16px;
        border-radius: 32px;
    }

    /* Footer */
    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }

    /* WhatsApp */
    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Header CTA button - daha da küçült */
    .header .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ========================================
   BANNER SYSTEM - Desktop & Mobile
   ======================================== */

/* Desktop: 3-column grid layout */
.page-with-banners {
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px; /* Header ve footer'dan uzak tut */
    position: relative;
    z-index: 1; /* Header'ın altında kal */
}

.main-content {
    grid-column: 2; /* Ortadaki kolonda kal */
    min-width: 0; /* Prevent grid blowout */
    position: relative;
    z-index: 1;
}

.banner-sidebar {
    position: relative;
    width: 160px;
    min-height: 100px; /* Boş olsa bile yer kaplasın */
    z-index: 1; /* Header/footer'ın altında */
    padding-top: 20px; /* Header'dan boşluk */
    padding-bottom: 40px; /* Footer'dan boşluk */
}

.banner-left {
    grid-column: 1;
}

.banner-right {
    grid-column: 3;
}

.desktop-banner {
    /* Sticky - scroll ile takip et */
    position: sticky;
    top: 90px; /* Header (80px) + boşluk (10px) */
    transition: all 0.3s ease;
}

.desktop-banner a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.desktop-banner a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.desktop-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile banners - hidden on desktop */
.mobile-banner-container {
    display: none;
}

/* Tablet: Hide desktop banners, show 2-column layout */
@media (max-width: 1200px) {
    .page-with-banners {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .banner-sidebar {
        display: none; /* Hide desktop banners */
    }

    .main-content {
        grid-column: 1;
    }
}

/* Mobile: Show mobile banners */
@media (max-width: 768px) {
    /* Masaüstü bannerları kesinlikle gizle */
    .banner-sidebar,
    .desktop-banner {
        display: none !important;
    }

    .mobile-banner-container {
        display: block;
        max-width: 320px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .mobile-banner-top {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mobile-banner-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mobile-banner a {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .mobile-banner a:hover,
    .mobile-banner a:active {
        transform: scale(0.98);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .mobile-banner img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* =====================================================
   BLOG SAYFALARINA ÖZEL BANNER AYARLARI
   ===================================================== */

/* Blog sayfalarında banner düzeni */
.page-blog .page-with-banners,
.page-blog-detail .page-with-banners {
    gap: 20px; /* Daha dar boşluk */
    max-width: 1400px; /* Daha dar maksimum genişlik */
}

/* Blog sayfalarında banner sticky pozisyonu */
.page-blog .desktop-banner,
.page-blog-detail .desktop-banner {
    top: 100px; /* Blog sayfalarında biraz daha aşağıdan başlat */
}

/* Blog sayfalarında banner sidebar genişliği */
.page-blog .banner-sidebar,
.page-blog-detail .banner-sidebar {
    width: 160px;
    padding-top: 10px; /* Daha az üst boşluk */
}

/* Blog sayfalarında main content */
.page-blog .main-content,
.page-blog-detail .main-content {
    padding: 0 10px; /* Yan boşluklar */
}

/* Blog sayfalarında container genişliğini serbest bırak */
.page-blog .page-with-banners .container,
.page-blog-detail .page-with-banners .container {
    max-width: 100%; /* Container'ı grid kolonuna sığdır */
    width: 100%;
    padding: 40px 0; /* Sadece üst-alt padding */
}

/* Tablet boyutunda blog sayfaları için özel kural */
@media (max-width: 1200px) {
    .page-blog .page-with-banners,
    .page-blog-detail .page-with-banners {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-blog .banner-sidebar,
    .page-blog-detail .banner-sidebar {
        display: none;
    }
}

/* ========================================
   SOCIAL MEDIA LINKS (Footer)
   ======================================== */

/* Social Share Container */
.social-share {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-share-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-right: 5px;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.social-share-btn:hover::before {
    width: 100px;
    height: 100px;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-share-btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

/* X (Twitter) - Siyah */
.social-x {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

/* Facebook - Mavi */
.social-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

/* Instagram - Gradient */
.social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* LinkedIn - Mavi */
.social-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

/* YouTube - Kırmızı */
.social-youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

/* TikTok - Siyah/Turkuaz */
.social-tiktok {
    background: linear-gradient(135deg, #000000, #69C9D0);
}

/* Telegram - Mavi */
.social-telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

/* Email - Gri */
.social-email {
    background: linear-gradient(135deg, #666, #444);
}

/* WhatsApp - Yeşil */
.social-whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-share {
        gap: 10px;
    }
    
    .social-share-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-share-btn svg {
        width: 18px;
        height: 18px;
    }
}