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

:root {
    --rose: #E8567F;
    --rose-light: #F9D1DC;
    --rose-dark: #C43A60;
    --plum: #6B2D5B;
    --plum-deep: #4A1942;
    --cream: #FFF8F5;
    --warm-white: #FFFCFA;
    --lavender: #E8D5F5;
    --peach: #FFDAB9;
    --gold: #D4A574;
    --sage: #A8C5A0;
    --text-primary: #2D1B2E;
    --text-secondary: #6B5A6E;
    --text-light: #9B8A9E;
    --shadow-soft: 0 4px 24px rgba(107, 45, 91, 0.08);
    --shadow-medium: 0 8px 40px rgba(107, 45, 91, 0.12);
    --shadow-glow: 0 0 60px rgba(232, 86, 127, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Exo', sans-serif;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ======================== HEADER ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 252, 250, 0.85), rgba(255, 248, 245, 0.9));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(232, 86, 127, 0.08);
    z-index: -1;
    transition: all 0.5s ease;
}

.header.scrolled::before {
    background: linear-gradient(135deg, rgba(255, 252, 250, 0.95), rgba(255, 248, 245, 0.97));
    box-shadow: 0 4px 30px rgba(107, 45, 91, 0.1);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.5s ease;
}

.header.scrolled .header-inner { height: 70px; }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    width: 48px;
    height: 48px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 86, 127, 0.2) 0%, transparent 70%);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--plum), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-text .sub {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav a:hover {
    color: var(--rose-dark);
    background: rgba(232, 86, 127, 0.06);
}

.nav a.active {
    color: var(--rose-dark);
    background: rgba(232, 86, 127, 0.08);
    font-weight: 400;
}

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

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 86, 127, 0.08);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(107, 45, 91, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
}

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

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(232, 86, 127, 0.06);
    color: var(--rose-dark);
    padding-left: 20px;
}

.nav-dropdown-menu a .menu-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(232, 86, 127, 0.06);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover .menu-icon {
    background: rgba(232, 86, 127, 0.12);
}

/* Nav link icons */
.nav > a,
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link-icon {
    font-size: 15px;
    line-height: 1;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    padding: 10px 24px;
    border: 1.5px solid rgba(107, 45, 91, 0.15);
    border-radius: 100px;
    background: transparent;
    color: var(--plum);
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose-dark);
    background: rgba(232, 86, 127, 0.04);
}

.btn-primary {
    padding: 10px 28px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(232, 86, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.aktif span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.aktif span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.aktif span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil Menu Overlay */
.mobil-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 9998;
}
.mobil-menu-overlay.aktif {
    display: block;
}

/* Mobil Menu Panel - Fullscreen */
.mobil-menu {
    position: fixed;
    inset: 0;
    background: #FFFCFA;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.mobil-menu.aktif {
    visibility: visible;
    opacity: 1;
}

.mobil-menu-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(107,45,91,0.08);
    min-height: 70px;
}
.mobil-menu-baslik .logo {
    gap: 10px;
}
.mobil-menu-baslik .logo-text .brand {
    font-size: 16px;
}

.mobil-menu-kapat {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.2s;
}
.mobil-menu-kapat:hover,
.mobil-menu-kapat:active {
    background: rgba(107,45,91,0.06);
}

/* Mobil Menu Nav */
.mobil-menu-nav {
    flex: 1;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobil-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 400;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}
.mobil-nav-link:hover,
.mobil-nav-link:active {
    color: var(--rose-dark);
    background: rgba(232,86,127,0.04);
}

.mobil-nav-ikon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}
.mobil-nav-ikon svg {
    width: 20px;
    height: 20px;
}

/* Mobil Dropdown */
.mobil-dropdown {
    width: 100%;
}

.mobil-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    justify-content: center;
    transition: all 0.2s;
    font-family: inherit;
}
.mobil-dropdown-trigger:hover,
.mobil-dropdown-trigger:active {
    color: var(--rose-dark);
    background: rgba(232,86,127,0.04);
}

.mobil-dropdown-ok {
    transition: transform 0.3s ease;
    opacity: 0.4;
}
.mobil-dropdown.acik .mobil-dropdown-ok {
    transform: rotate(180deg);
}

.mobil-dropdown-icerik {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(107,45,91,0.02);
}
.mobil-dropdown.acik .mobil-dropdown-icerik {
    max-height: 500px;
}

.mobil-dropdown-icerik a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    justify-content: center;
    transition: all 0.2s;
}
.mobil-dropdown-icerik a:hover,
.mobil-dropdown-icerik a:active {
    color: var(--rose-dark);
    background: rgba(232,86,127,0.04);
}

/* Mobil Menu Alt (CTA Butonlari) */
.mobil-menu-alt {
    padding: 20px 32px 32px;
    border-top: 1px solid rgba(107,45,91,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobil-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}
.mobil-btn-wa:hover,
.mobil-btn-wa:active {
    background: #20bd5a;
}
.mobil-btn-wa svg {
    flex-shrink: 0;
}

.mobil-btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(107,45,91,0.06);
    color: var(--plum);
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}
.mobil-btn-tel:hover,
.mobil-btn-tel:active {
    background: rgba(107,45,91,0.1);
}
.mobil-btn-tel svg {
    flex-shrink: 0;
}

.mobil-menu-doktor {
    text-align: center;
    padding: 12px 0 4px;
}
.mobil-menu-doktor img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(232, 86, 127, 0.2);
    box-shadow: 0 4px 16px rgba(107, 45, 91, 0.12);
}

/* Body scroll kilidi (mobil menu acikken) */
body.menu-acik {
    overflow: hidden;
}

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero-bg .blob-1 {
    width: 600px;
    height: 600px;
    background: var(--rose-light);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-bg .blob-2 {
    width: 400px;
    height: 400px;
    background: var(--lavender);
    bottom: -5%;
    left: -5%;
    animation-delay: -7s;
}

.hero-bg .blob-3 {
    width: 300px;
    height: 300px;
    background: var(--peach);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(107, 45, 91, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(232, 86, 127, 0.08);
    border: 1px solid rgba(232, 86, 127, 0.12);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    color: var(--rose-dark);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--plum-deep);
}

.hero h1 strong {
    font-weight: 600;
    background: linear-gradient(135deg, var(--rose), var(--plum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-whatsapp {
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 500;
    min-width: 220px;
    justify-content: center;
    text-align: center;
}

.hero-actions .btn-ghost {
    padding: 16px 36px;
    font-size: 15px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(107, 45, 91, 0.06);
}

.stat-item .stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--plum);
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 300;
}

/* Hero Right - Image */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 500px;
    height: 580px;
}

/* Ana gorsel - organik blob seklinde */
.hero-image-main {
    position: absolute;
    top: 0;
    left: 20px;
    width: 420px;
    height: 500px;
    border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    animation: morphBlob 12s ease-in-out infinite;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%; }
    25% { border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%; }
    50% { border-radius: 50% 50% 40% 60% / 45% 50% 55% 45%; }
    75% { border-radius: 55% 45% 55% 45% / 50% 60% 40% 50%; }
}

/* Dekoratif blob - arkada */
.hero-image-blob {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 460px;
    height: 540px;
    border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%;
    background: linear-gradient(135deg, var(--rose-light), var(--lavender));
    opacity: 0.5;
    animation: morphBlob 12s ease-in-out infinite;
    animation-delay: -1s;
    z-index: -1;
}

/* Ikinci dekoratif blob */
.hero-image-blob-2 {
    position: absolute;
    bottom: 20px;
    right: -10px;
    width: 180px;
    height: 180px;
    border-radius: 50% 50% 40% 60% / 45% 50% 55% 45%;
    background: linear-gradient(135deg, var(--peach), var(--rose-light));
    opacity: 0.4;
    animation: morphBlob 10s ease-in-out infinite reverse;
    z-index: -1;
}

/* Floating info kartlari - gorselin uzerine */
.hero-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(107, 45, 91, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: badgeFloat 5s ease-in-out infinite;
    z-index: 2;
}

.hero-float-badge.badge-top {
    top: 30px;
    right: -10px;
    animation-delay: 0s;
}

.hero-float-badge.badge-bottom {
    bottom: 40px;
    left: -20px;
    animation-delay: -2.5s;
}

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

.hfb-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hfb-icon.pink { background: rgba(232, 86, 127, 0.12); }
.hfb-icon.purple { background: rgba(107, 45, 91, 0.1); }

.hfb-text .hfb-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.hfb-text .hfb-sub {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 300;
}

/* Noktali dekoratif desen */
.hero-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(4, 8px);
    gap: 10px;
    z-index: -1;
}

.hero-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.15;
}

/* ======================== SECTION BASE ======================== */
section {
    padding: 100px 40px;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-dark);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1.5px solid rgba(232, 86, 127, 0.2);
    border-radius: 100px;
    background: rgba(232, 86, 127, 0.04);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--plum-deep);
    line-height: 1.25;
}

.section-title strong {
    font-weight: 600;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================== TOPICS / TABS ======================== */
.topics-section {
    background: var(--warm-white);
}

.topics-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 10px 24px;
    border: 1.5px solid rgba(107, 45, 91, 0.1);
    border-radius: 100px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Exo', sans-serif;
    font-weight: 300;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--rose);
    color: var(--rose-dark);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    border-color: transparent;
    font-weight: 400;
    box-shadow: 0 4px 20px rgba(232, 86, 127, 0.25);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.topic-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(107, 45, 91, 0.04);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: none;
}

.topic-card.visible {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--rose), var(--plum));
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.topic-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(232, 86, 127, 0.1);
}

.topic-card:hover::before {
    height: 100%;
}

.topic-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    background: rgba(232, 86, 127, 0.1);
    color: var(--rose-dark);
}

.topic-card-body {
    flex: 1;
    min-width: 0;
}

.topic-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.topic-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.35;
}

.topic-tag {
    font-size: 10px;
    font-weight: 400;
    color: var(--rose-dark);
    background: rgba(232, 86, 127, 0.06);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.topic-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ======================== TEKNOLOJI ======================== */
.tech-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tech-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid rgba(107, 45, 91, 0.04);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(232, 86, 127, 0.1);
}

.tech-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(232, 86, 127, 0.1), rgba(107, 45, 91, 0.06));
    color: var(--rose-dark);
}

.tech-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

/* ======================== SON YAZILANLAR ======================== */
.articles-section {
    background: var(--warm-white);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.article-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 45, 91, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.article-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(232, 86, 127, 0.1);
}

.article-num {
    font-size: 28px;
    font-weight: 600;
    color: var(--rose-light);
    line-height: 1;
    min-width: 36px;
}

.article-content h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 4px;
}

.article-content p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.article-meta span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 300;
}

.article-meta .article-cat {
    color: var(--rose-dark);
    background: rgba(232, 86, 127, 0.06);
    padding: 2px 10px;
    border-radius: 100px;
    font-weight: 400;
}

/* ======================== CTA BANNER ======================== */
.cta-section {
    background: var(--warm-white);
    padding: 80px 40px;
}

.cta-banner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--plum-deep), var(--plum), var(--rose-dark));
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(232, 86, 127, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(232, 213, 245, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

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

.cta-banner h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner h2 strong { font-weight: 600; }

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    font-weight: 300;
}

.btn-white {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--plum-deep);
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--plum-deep);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-top {
    padding: 100px 40px 60px;
    position: relative;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 32px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo svg {
    width: 36px;
    height: 36px;
}

.footer-brand .footer-logo span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 420px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(232, 86, 127, 0.1);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--rose-light);
    transform: translateX(4px);
}

.footer-col ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

/* Footer Mid Band */
.footer-mid {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 40px;
}

.footer-mid-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-mid-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-mid-cta p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.footer-mid-cta .btn-mid-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #25D366;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 13px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-mid-cta .btn-mid-wa:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.footer-mid-cta .btn-mid-wa svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-mid-cta .btn-mid-tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 13px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-mid-cta .btn-mid-tel:hover {
    border-color: var(--rose);
    color: var(--rose-light);
    transform: translateY(-2px);
}

.footer-mid-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.footer-badge svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.footer-badge span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 40px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

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

.footer-bottom-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--rose-light);
}

/* Heartbeat line footer decoration */
.footer-heartbeat {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.06;
}

.footer-heartbeat svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60px;
    animation: heartbeatSlide 14s linear infinite;
}

@keyframes heartbeatSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero bottom EKG */
.hero-ekg {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
    margin-top: 32px;
}

.hero-ekg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 60px;
    animation: heroEkgSlide 10s linear infinite;
}

.hero-ekg svg .ekg-line {
    opacity: 0.25;
}

@keyframes heroEkgSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======================== WHATSAPP ======================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #25D366;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 13px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #22c55e;
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Header whatsapp */
.header-cta .btn-whatsapp {
    padding: 10px 20px;
    font-size: 12px;
}

/* CTA whatsapp */
.btn-whatsapp-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #25D366;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp-light:hover {
    transform: translateY(-3px);
    background: #22c55e;
}

.btn-whatsapp-light svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Fixed whatsapp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ======================== SCROLL TOP ======================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(232, 86, 127, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-left { max-width: 100%; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right {
        display: flex;
        justify-content: center;
        order: 1;
    }
    .hero-image-wrapper {
        width: 320px;
        height: 380px;
    }
    .hero-image-main {
        width: 280px;
        height: 340px;
        left: 10px;
    }
    .hero-image-blob {
        width: 300px;
        height: 360px;
    }
    .hero-image-blob-2 {
        width: 120px;
        height: 120px;
    }
    .hero-float-badge { display: none; }
    .hero-dots { display: none; }
    .tech-grid { grid-template-columns: 1fr 1fr; }
    .topics-grid { grid-template-columns: 1fr 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }
    .header-cta { display: none; }
    section { padding: 60px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .tech-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .topics-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-mid-inner { flex-direction: column; text-align: center; }
    .footer-mid-cta { justify-content: center; }
    .footer-mid-badges { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .cta-banner { padding: 48px 28px; border-radius: var(--radius-lg); }
}

/* ======================== ANIMATIONS ======================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== BREADCRUMB ======================== */
.breadcrumb {
    padding: 20px 40px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 13px;
}

.breadcrumb ol li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb ol li::before {
    content: '';
}

.breadcrumb ol li + li::before {
    content: '\2022';
    color: var(--text-light);
    font-size: 12px;
    margin: 0 2px;
}

.breadcrumb ol li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb ol li a:hover {
    color: var(--rose-dark);
}

.breadcrumb ol li:last-child span {
    color: var(--text-primary);
    font-weight: 400;
}

/* ======================== İÇERİK DETAY ======================== */
.icerik-govde h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--plum-deep);
    margin: 40px 0 16px;
}

.icerik-govde h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--plum-deep);
    margin: 32px 0 12px;
}

.icerik-govde p {
    margin-bottom: 16px;
    text-align: justify;
}

.icerik-govde ul, .icerik-govde ol {
    margin: 16px 0;
    padding-left: 24px;
}

.icerik-govde ul li, .icerik-govde ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.icerik-govde blockquote {
    border-left: 3px solid var(--rose);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(232, 86, 127, 0.04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.icerik-govde img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

.icerik-govde a {
    color: var(--rose-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.icerik-govde a:hover {
    color: var(--plum);
}

.icerik-govde table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.icerik-govde table th,
.icerik-govde table td {
    padding: 12px 16px;
    border: 1px solid rgba(107, 45, 91, 0.08);
    text-align: left;
    font-size: 14px;
}

.icerik-govde table th {
    background: rgba(107, 45, 91, 0.04);
    font-weight: 500;
    color: var(--plum-deep);
}

@media (max-width: 768px) {
    .breadcrumb { padding: 16px 20px 0; }
    .icerik-govde h2 { font-size: 20px; }
    .icerik-govde h3 { font-size: 18px; }
    .icerik-govde { padding: 24px 20px !important; }
}

/* ======================== BLOG GRID ======================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.blog-kart {
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(107,45,91,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107,45,91,0.08);
    border-color: rgba(232,86,127,0.12);
}

.blog-kart:hover .blog-kart-gorsel img {
    transform: scale(1.05);
}

.blog-kart-gorsel {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(232,86,127,0.06), rgba(107,45,91,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-kart-icerik {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-kart-kategori {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--rose-dark);
    margin-bottom: 8px;
}

.blog-kart-icerik h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--plum-deep);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-kart-icerik p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-kart-alt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(107,45,91,0.06);
}

.blog-kart-tarih {
    font-size: 12px;
    color: var(--text-light);
}

.blog-kart-devam {
    font-size: 13px;
    font-weight: 500;
    color: var(--rose-dark);
}

/* ======================== ILETISIM ======================== */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.iletisim-bilgi-kart {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(107,45,91,0.06);
    transition: all 0.2s ease;
}

.iletisim-bilgi-kart:hover {
    border-color: rgba(232,86,127,0.12);
    box-shadow: 0 4px 16px rgba(107,45,91,0.04);
}

.iletisim-ikon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iletisim-form-alan {
    margin-bottom: 16px;
}

.iletisim-form-alan label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--plum-deep);
    margin-bottom: 6px;
}

.iletisim-form-alan input,
.iletisim-form-alan textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(107,45,91,0.12);
    border-radius: 10px;
    font-family: 'Exo', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.iletisim-form-alan input:focus,
.iletisim-form-alan textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(232,86,127,0.08);
}

.iletisim-form-alan textarea {
    resize: vertical;
}

.iletisim-form-satir {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .iletisim-grid { grid-template-columns: 1fr; }
    .iletisim-form-satir { grid-template-columns: 1fr; }
}
