/*
Theme Name: Thermomix
Theme URI: https://akillimutfakrobotu.com
Author: Akıllı Mutfak Robotu
Description: Premium, animasyonlu, sıfırdan yazılmış custom PHP WordPress teması. Yeşil/beyaz zemin + canlı vurgu rengi ile Thermomix tanıtım/danışmanlık siteleri için tasarlandı.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: thermomix
*/

/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
    --color-primary: #0e8a4f;
    --color-primary-dark: #08623a;
    --color-primary-darker: #073f27;
    --color-primary-light: #e7f6ee;
    --color-accent: #ff5d73;
    --color-accent-dark: #e8455c;
    --color-gold: #cda349;
    --color-text: #1c2620;
    --color-muted: #6c776f;
    --color-bg: #ffffff;
    --color-bg-soft: #f6faf7;
    --color-border: #e6ece8;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 4px 14px rgba(15, 60, 40, .06);
    --shadow-md: 0 14px 36px rgba(15, 60, 40, .10);
    --shadow-lg: 0 24px 60px rgba(15, 60, 40, .16);

    --container: 1200px;
    --header-height: 86px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color .25s ease;
}
a:hover { color: var(--color-accent); }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
    color: var(--color-primary-darker);
}

p { margin: 0 0 18px; color: var(--color-muted); }

button { font-family: inherit; cursor: pointer; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container.narrow { max-width: 820px; }

.section { padding: 96px 0; }
.section.bg-soft { background: var(--color-bg-soft); }
.section.bg-primary {
    background: linear-gradient(160deg, var(--color-primary-darker) 0%, var(--color-primary) 100%);
    color: #fff;
}
.section.bg-primary h2, .section.bg-primary h3, .section.bg-primary p { color: #fff; }
.section.bg-primary .text-muted { color: rgba(255,255,255,.78); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 4.5vw, 42px); }
.section-head p { font-size: 17px; }

/* ============================================
   3. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
    white-space: normal;
    word-break: break-word;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn-accent {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 14px 32px rgba(255, 93, 115, .35);
}
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; }

.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.55);
    color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn-outline-dark {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}
.btn-outline-dark:hover { background: var(--color-primary); color: #fff; }

/* ============================================
   4. SCROLL REVEAL ANIMATIONS (sitewide)
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .9s cubic-bezier(.21,.6,.35,1), transform .9s cubic-bezier(.21,.6,.35,1);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal.zoom-in { transform: scale(.92) translateY(24px); }
.reveal.zoom-in.in-view { transform: scale(1) translateY(0); }

.reveal.from-left { transform: translateX(-50px); }
.reveal.from-left.in-view { transform: translateX(0); }

.reveal.from-right { transform: translateX(50px); }
.reveal.from-right.in-view { transform: translateX(0); }

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes shimmer {
    to { background-position: 200% center; }
}
/* ============================================
   5. SITE HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    overflow: visible;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .35s ease, border-color .35s ease, height .35s ease, background .35s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-border);
    height: 70px;
    background: rgba(255,255,255,.97);
}

.site-header .header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    min-width: 0;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-branding img {
    max-height: 46px;
    width: auto;
    transition: max-height .35s ease;
}

.site-header.is-scrolled .site-branding img {
    max-height: 38px;
}

.site-branding .site-title {
    font-family: var(--font-heading);
    font-size: clamp(15px, 3.4vw, 22px);
    font-weight: 800;
    color: var(--color-primary-darker);
    margin: 0;
    text-decoration: none;
    display: inline-block;
    line-height: 1.15;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.site-branding .site-title:hover {
    color: var(--color-primary);
}

/* primary nav */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu li a {
    display: block;
    padding: 12px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--color-text);
    border-radius: 999px;
    transition: background .25s ease, color .25s ease;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

/* submenu / dropdown */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.primary-menu li:hover .sub-menu,
.primary-menu li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li a {
    padding: 10px 18px;
    border-radius: 0;
    font-size: 14px;
    white-space: nowrap;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-cta .btn {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
}

/* mobile nav toggle */
.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-primary-light);
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--color-primary-dark);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav panel */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 18px 20px 22px;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav ul,
.mobile-menu {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav li a {
    display: block;
    padding: 13px 4px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav li a:hover,
.mobile-nav li.current-menu-item a {
    color: var(--color-primary-dark);
}

.mobile-nav .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* responsive */
@media (max-width: 991px) {
    .site-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}
/* ============================================
   6. HERO (front page)
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--color-primary-light) 0%, #ffffff 55%);
    padding: 90px 0 60px;
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}
.hero::before {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(14,138,79,.18) 0%, transparent 70%);
    top: -120px; right: -80px;
    animation: float-y 12s ease-in-out infinite;
}
.hero::after {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,93,115,.16) 0%, transparent 70%);
    bottom: -100px; left: -60px;
    animation: float-y 16s ease-in-out infinite reverse;
}

.hero .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 22px;
}
.hero .eyebrow::before { content: "✦"; color: var(--color-accent); }

.hero h1 {
    font-size: clamp(34px, 5.5vw, 60px);
    margin-bottom: 20px;
}
.hero h1 .accent {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s linear infinite;
}
.hero p.lead { font-size: 18px; max-width: 520px; }

.hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.hero .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 46px;
    flex-wrap: wrap;
}
.hero .hero-stats .stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--color-primary-dark);
}
.hero .hero-stats .stat span {
    font-size: 13px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero .hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero .hero-media .hero-illustration { width: 100%; height: 100%; aspect-ratio: 4/5; display: block; }
.hero .hero-media .hero-illustration svg { width: 100%; height: 100%; display: block; }
.hero .hero-media .floating-card {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float-y 6s ease-in-out infinite;
}
.hero .hero-media .floating-card .icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
.hero .hero-media .floating-card strong { display: block; font-size: 15px; color: var(--color-text); }
.hero .hero-media .floating-card span { font-size: 13px; color: var(--color-muted); }

/* ============================================
   7. FEATURE / ADVANTAGE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 38px 30px;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-card .icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; font-size: 15px; }

/* ============================================
   8. STATS / COUNTER SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-md);
    padding: 36px 16px;
    text-align: center;
    transition: transform .4s ease, background .4s ease;
}
.stat-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}

/* ============================================
   9. TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
}
.testimonial-card .quote-mark {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--color-primary-light);
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 24px;
}
.testimonial-card p { font-style: italic; color: var(--color-text); }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-card .author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author strong { display: block; font-size: 14px; }
.testimonial-card .author span { font-size: 12px; color: var(--color-muted); }
.testimonial-card .stars { color: var(--color-gold); font-size: 14px; margin-bottom: 14px; }

/* ============================================
   10. CTA BANNER
   ============================================ */
.cta-banner {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    opacity: .6;
}
.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: rgba(255,255,255,.85); position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .hero-actions { justify-content: center; position: relative; }

/* ============================================
   10b. VIDEO GALERİSİ (REELS GRID)
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-primary-darker);
    box-shadow: var(--shadow-sm);
    transition: transform .4s ease, box-shadow .4s ease;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}
.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,63,39,0) 55%, rgba(7,63,39,.65) 100%);
    pointer-events: none;
}
.video-card .video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 2;
}
.video-card .video-badge svg { width: 12px; height: 12px; fill: var(--color-gold); }
.video-card .video-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

/* ============================================
   11. BLOG / ARCHIVE GRID
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
    word-break: break-word;
    hyphens: auto;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .blog-card-body { padding: 24px; }
.blog-card .meta { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-accent); font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card h3 a { color: var(--color-text); }
.blog-card h3 a:hover { color: var(--color-primary); }
.blog-card p { font-size: 14.5px; margin-bottom: 0; }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 56px; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    font-weight: 600; font-size: 14px;
    color: var(--color-text);
}
.pagination .current, .pagination a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ============================================
   12. SINGLE POST / PAGE CONTENT
   ============================================ */
.page-header-band {
    background: var(--color-bg-soft);
    padding: 56px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}
.page-header-band h1 { margin-bottom: 8px; }
.page-header-band .breadcrumb { font-size: 13px; color: var(--color-muted); }
.page-header-band .breadcrumb a { color: var(--color-muted); }

.entry-content {
    max-width: 800px;
    margin: 56px auto;
    font-size: 17px;
}
.entry-content img { border-radius: var(--radius-md); margin: 24px 0; }
.entry-content h2, .entry-content h3 { margin-top: 36px; }
.entry-content blockquote {
    border-left: 4px solid var(--color-gold);
    background: var(--color-bg-soft);
    padding: 20px 26px;
    border-radius: var(--radius-sm);
    margin: 28px 0;
    font-style: italic;
}

.entry-meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--color-muted); margin-top: 14px; }
.entry-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================
   13. SITE FOOTER
   ============================================ */
.site-footer {
    background: var(--color-primary-darker);
    color: rgba(255,255,255,.85);
    padding: 72px 0 0;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer-grid p { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-grid ul li a:hover { color: var(--color-gold); }

.footer-brand .site-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 800;
    margin-bottom: 14px;
    display: inline-block;
    text-decoration: none;
    line-height: 1.2;
}
.footer-brand .site-title:hover { color: var(--color-gold); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--color-accent); transform: translateY(-3px); }

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.footer-bottom p { margin: 0 0 6px; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-credit a {
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
}
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* ============================================
   14. RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(3, 1fr); }
    .hero .hero-grid { grid-template-columns: 1fr; }
    .hero .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
    .primary-menu, .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .site-header { height: auto; min-height: 60px; overflow: visible; }
    .site-header .header-inner { padding: 10px 16px; gap: 12px; flex-wrap: nowrap; }
    .site-branding .site-title { font-size: clamp(13px, 4vw, 18px); max-width: calc(100vw - 120px); }
}

@media (max-width: 600px) {
    .features-grid, .testimonial-grid, .blog-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
    .blog-card h3 { font-size: 16px; }
    .blog-card .blog-card-body { padding: 16px; }
    .container { padding: 0 16px; }
    .section-head h2 { font-size: clamp(24px, 6vw, 36px); }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .section { padding: 64px 0; }
    .cta-banner { padding: 40px 24px; }
    .hero { padding: 56px 0 40px; }
    .hero .hero-media .floating-card { left: 12px; right: 12px; }
}

/* ============================================
   Z-INDEX FIX - Buton Tıklanabilirlik Düzeltmesi
   Eklendi: 2026-06-13
   Sorun: Plugin overlay/popup'ları (WhatsApp, cookie vb.)
   header ve menü butonlarının üstüne z-index çakışması yaratıyordu.
   Mobil menü kapat butonu da tıklanamıyordu.
   ============================================ */

/* Header z-index: Plugin overlay'lerinin üstüne çık */
.site-header {
    z-index: 99999 !important;
}

/* Hamburger / kapat butonu: Header içinde bile olsa tıklanabilir olsun */
.menu-toggle {
    z-index: 99999 !important;
    position: relative !important;
    pointer-events: auto !important;
}
/* Mobil menü içindeki çarpı (kapat) butonu */
.mobile-nav-close {
    z-index: 99999 !important;
    pointer-events: auto !important;
    position: relative !important;
}

/* Mobil nav paneli: Header'ın hemen altında açılsın, tıklanabilir */
.mobile-nav {
    z-index: 99998 !important;
    pointer-events: auto !important;
}

/* Mobil nav içindeki tüm linkler tıklanabilir */
.mobile-nav a,
.mobile-nav button,
.mobile-nav .btn {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 99998 !important;
}

/* Mobile menü kapandığında overlay'in altında kalmasın */
.mobile-nav.is-open {
    z-index: 99998 !important;
    pointer-events: auto !important;
}

/* Submenu dropdown tıklanabilirliği */
.primary-menu .sub-menu {
    z-index: 99997 !important;
}

/* ============================================
   END Z-INDEX FIX
   ============================================ */