/*
Theme Name: Psyche Wyjasnia
Theme URI: https://psychewyjasnia.com
Author: Psyche Wyjasnia
Author URI: https://psychewyjasnia.com
Description: Psychologia prosto wytlumaczona - Landing page teması. Sıcak minimal tasarım, sinir sistemi regulasyonu ve psikoloji eğitim platformu.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: psyche-wyjasnia
Tags: one-page, landing-page, custom-logo, custom-menu, education
*/

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
    background-color: #fce9af;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ==================== HEADER ==================== */
.site-header {
    background-color: transparent;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

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

.header-logo img {
    height: 72px;
    width: auto;
    transition: opacity 0.3s;
}

.header-logo:hover img {
    opacity: 0.8;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #1a1a1a;
    padding: 0 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: #1a1a1a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 32px;
}

.nav-youtube {
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.nav-youtube:hover {
    background-color: #333;
    transform: scale(1.08);
}

.nav-youtube svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}

.nav-cta {
    background-color: #1a1a1a;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background-color: #333 !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 28px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-text {
    flex: 1;
    max-width: 540px;
}

.hero-badge {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fce9af;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text h1 em {
    font-style: normal;
    position: relative;
    display: inline-block;
}

.hero-text h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    z-index: -1;
}

.hero-text > p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 32px;
    line-height: 1.85;
}

.hero-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-form input[type="text"],
.hero-form input[type="email"] {
    padding: 14px 18px;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    background: rgba(255,255,255,0.6);
    flex: 1;
    min-width: 170px;
    transition: all 0.3s;
}

.hero-form input:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.hero-form button {
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #fce9af;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-form button:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-form-note {
    font-size: 0.72rem;
    color: #888;
    margin-top: 12px;
    width: 100%;
    letter-spacing: 0.3px;
}

.hero-visual {
    flex: 0 0 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
}

/* ==================== SECTIONS ORTAK ==================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== HIZMETLER ==================== */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.service-number {
    font-size: 0.68rem;
    font-weight: 800;
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.2px;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
}

/* ==================== HAKKIMIZDA ==================== */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 56px;
}

.about-image {
    flex: 0 0 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.about-text > p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.85;
}

.about-features {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #333;
    font-weight: 400;
}

.about-features li .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-color: #1a1a1a;
    color: #fce9af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
}

/* ==================== BLOG ==================== */
.blog-section {
    padding: 80px 0;
}

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

.blog-card {
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
}

.blog-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
    width: 100%;
    height: 140px;
    background: rgba(0, 0, 0, 0.04);
}

.blog-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.blog-card-body p {
    font-size: 0.84rem;
    color: #777;
    line-height: 1.7;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.blog-card-link .arrow-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-link .arrow-icon {
    transform: translateX(4px);
}

/* ==================== SSS ==================== */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.faq-item.active {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.35);
}

.faq-question {
    padding: 18px 22px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #1a1a1a;
    gap: 16px;
}

.faq-question .arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #999;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fce9af;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.85;
}

/* ==================== ILETISIM FORMU ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-form-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.form-group textarea {
    min-height: 120px;
}

.form-submit {
    padding: 14px 40px;
    background: #1a1a1a;
    color: #fce9af;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Form mesajlari */
.form-message {
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.86rem;
    margin-top: 8px;
    display: none;
}

.form-message.success {
    background: rgba(40,120,60,0.1);
    border: 1.5px solid rgba(40,120,60,0.25);
    color: #1a5c2a;
    display: block;
}

.form-message.error {
    background: rgba(180,40,40,0.1);
    border: 1.5px solid rgba(180,40,40,0.25);
    color: #8b1a1a;
    display: block;
}

/* ==================== FOOTER ==================== */
.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    padding: 48px 0 28px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 36px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 36px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #1a1a1a;
}

.footer-youtube {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.footer-youtube svg {
    transition: transform 0.3s;
}

.footer-youtube:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: #aaa;
    letter-spacing: 0.3px;
}

.footer-bottom a {
    color: #999;
    margin-left: 18px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #1a1a1a;
}

/* ==================== SAYFA SABLONU ==================== */
.page-content {
    padding: 48px 0 80px;
}

.page-hero {
    text-align: center;
    margin-bottom: 48px;
}

.page-hero-img {
    max-width: 360px;
    margin: 0 auto 28px;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.3px;
}

.page-body {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.85;
}

.page-body h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000;
    margin: 32px 0 12px;
    letter-spacing: -0.2px;
}

.page-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0 8px;
}

.page-body p {
    margin-bottom: 14px;
}

.page-body ul {
    margin: 0 0 16px 20px;
}

.page-body ul li {
    margin-bottom: 6px;
}

.page-body a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-body a:hover {
    opacity: 0.7;
}

.page-back {
    max-width: 700px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.page-back a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
}

.page-back a:hover {
    opacity: 0.7;
}

/* ==================== BLOG PAGINATION ==================== */
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.3s;
}

.blog-pagination a:hover {
    background: #1a1a1a;
    color: #fce9af;
    border-color: #1a1a1a;
}

.blog-pagination span.current {
    background: #1a1a1a;
    color: #fce9af;
    border-color: #1a1a1a;
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 992px) {
    .nav-links a {
        padding: 0 10px;
        font-size: 0.72rem;
    }

    .nav-right { margin-left: 16px; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text { max-width: 100%; }
    .hero-form { justify-content: center; }
    .hero-visual { flex: none; width: 260px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { flex-direction: column; }

    .about-image {
        flex: none;
        width: 100%;
        height: auto;
        max-width: 320px;
        margin: 0 auto;
    }

    .about-text { text-align: center; }
    .about-features { justify-items: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ==================== RESPONSIVE - MOBIL ==================== */
@media (max-width: 768px) {
    .main-navigation { display: none; }
    .hamburger { display: block; }
    .header-inner { height: 66px; }
    .header-logo img { height: 50px; }

    .main-navigation.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: #fce9af;
        padding: 20px 24px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        z-index: 999;
    }

    .main-navigation.mobile-open .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .main-navigation.mobile-open .nav-links a {
        padding: 14px 0;
        font-size: 0.88rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        display: block;
        text-align: left;
    }

    .main-navigation.mobile-open .nav-links a::after { display: none; }

    .main-navigation.mobile-open .nav-right {
        margin-left: 0;
        margin-top: 18px;
        gap: 12px;
    }

    .hero { padding: 44px 0 36px; }
    .hero-text h1 { font-size: 1.75rem; }
    .hero-text > p { font-size: 0.92rem; }
    .hero-visual { width: 200px; }

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

    .hero-form input[type="text"],
    .hero-form input[type="email"] { min-width: 100%; }
    .hero-form button { width: 100%; }

    .services, .about, .blog-section, .faq { padding: 48px 0; }
    .blog-hero { padding: 48px 0 36px; }
    .blog-hero h1 { font-size: 1.8rem; }
    .blog-card-image { height: 160px; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card { padding: 24px 20px; }

    .about-image { max-width: 240px; }
    .about-text h2 { font-size: 1.5rem; }

    .blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-card-image { height: 100px; }

    .faq-question { padding: 16px 18px; font-size: 0.88rem; }
    .faq-item.active .faq-answer { padding: 0 18px 14px; }

    .contact-section { padding: 48px 0; }
    .form-row { grid-template-columns: 1fr; }

    .footer-logo img { height: 56px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom a { margin-left: 8px; }
}

/* ==================== SINGLE POST ==================== */
/* --- HERO --- */
.post-hero { padding: 72px 0 48px; text-align: center; }
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-hero .section-tag { margin: 0 auto 20px; }
.post-hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.04em; margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.82rem; color: #999; font-weight: 600; }
.post-meta-dot { width: 4px; height: 4px; background: #ccc; border-radius: 50%; }

/* --- GIRIS OZETI --- */
.post-intro { padding-bottom: 48px; }
.post-intro-inner { max-width: 720px; margin: 0 auto; background: rgba(0,0,0,0.03); border-left: 3px solid #1a1a1a; padding: 20px 28px; border-radius: 0 10px 10px 0; }
.post-intro-inner p { font-size: 1.08rem; font-weight: 600; line-height: 1.75; color: #1a1a1a; margin: 0; }

/* --- KAPAK --- */
.post-cover { padding-bottom: 48px; }
.post-cover-image { border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(0,0,0,0.07); }
.post-cover-image img { width: 100%; height: auto; display: block; }

/* --- VIDEO --- */
.post-video { padding-bottom: 56px; }
.post-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; border: 1.5px solid rgba(0,0,0,0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.post-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* --- ICERIK --- */
.post-article { padding-bottom: 80px; }
.post-content-wrap { max-width: 720px; margin: 0 auto; }
.post-content { font-size: 1rem; line-height: 1.9; color: #333; }
.post-content h2 { font-size: 1.55rem; font-weight: 800; margin: 52px 0 16px; letter-spacing: -0.03em; color: #1a1a1a; }
.post-content h3 { font-size: 1.18rem; font-weight: 700; margin: 36px 0 12px; color: #1a1a1a; }
.post-content p { margin-bottom: 20px; color: #444; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; color: #444; }
.post-content strong { color: #1a1a1a; font-weight: 700; }
.post-content blockquote { border-left: 3px solid #1a1a1a; margin: 32px 0; padding: 16px 24px; background: rgba(0,0,0,0.03); border-radius: 0 8px 8px 0; font-style: italic; color: #555; }
.post-content img { border-radius: 8px; margin: 24px 0; }

/* --- SSS ACCORDION --- */
.post-faq { margin: 56px 0 40px; }
.post-faq-header { margin-bottom: 24px; }
.post-faq-header .section-tag { margin-bottom: 12px; }
.post-faq-header h2 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em; }
.post-faq-list { display: flex; flex-direction: column; gap: 8px; }
.post-faq-item { border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; overflow: hidden; transition: border-color 0.3s; }
.post-faq-item.active { border-color: rgba(0,0,0,0.25); }
.post-faq-question { width: 100%; background: none; border: none; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; font-size: 0.95rem; font-weight: 700; color: #1a1a1a; cursor: pointer; text-align: left; transition: background 0.2s; }
.post-faq-question:hover { background: rgba(0,0,0,0.03); }
.post-faq-item.active .post-faq-question { background: rgba(0,0,0,0.04); }
.post-faq-arrow { font-size: 0.7rem; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); opacity: 0.4; }
.post-faq-item.active .post-faq-arrow { transform: rotate(180deg); opacity: 1; }
.post-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.post-faq-item.active .post-faq-answer { max-height: 400px; }
.post-faq-answer p { padding: 0 22px 20px; font-size: 0.92rem; color: #555; line-height: 1.75; margin: 0; }

/* --- ETIKETLER --- */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.post-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 1.5px solid rgba(0,0,0,0.15); padding: 5px 12px; border-radius: 30px; color: #666; }

/* --- ALT NAVIGASYON --- */
.post-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 40px 0; }
.post-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.post-back-link { font-size: 0.85rem; font-weight: 700; color: #1a1a1a; opacity: 0.6; transition: opacity 0.3s; }
.post-back-link:hover { opacity: 1; }
.post-cta { display: inline-block; padding: 12px 28px; border-radius: 6px; font-size: 0.8rem; }

/* --- ILGILI YAZILAR --- */
.related-posts { padding: 60px 0 80px; border-top: 1px solid rgba(0,0,0,0.07); }


.post-hero {
    padding: 72px 0 48px;
    text-align: center;
}

.post-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.post-hero .section-tag {
    margin: 0 auto 20px;
}

.post-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    color: #999;
    font-weight: 600;
}

.post-meta-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.post-cover {
    padding-bottom: 56px;
}

.post-cover-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(0,0,0,0.07);
}

.post-cover-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-article {
    padding-bottom: 80px;
}

.post-content-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.post-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
}

.post-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 48px 0 16px;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.post-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 36px 0 12px;
    color: #1a1a1a;
}

.post-content p {
    margin-bottom: 20px;
    color: #444;
}

.post-content ul,
.post-content ol {
    margin: 0 0 20px 24px;
}

.post-content li {
    margin-bottom: 8px;
    color: #444;
}

.post-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.post-content blockquote {
    border-left: 3px solid #1a1a1a;
    margin: 32px 0;
    padding: 16px 24px;
    background: rgba(0,0,0,0.03);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.post-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid rgba(0,0,0,0.15);
    padding: 5px 12px;
    border-radius: 30px;
    color: #666;
}

.post-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 40px 0;
}

.post-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.post-back-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.post-back-link:hover {
    opacity: 1;
}

.post-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.related-posts {
    padding: 60px 0 80px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* ==================== BLOG HERO ==================== */
.blog-hero {
    padding: 72px 0 56px;
    text-align: center;
}

.blog-hero .section-tag {
    margin: 0 auto 16px;
}

.blog-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.blog-hero p {
    font-size: 1rem;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== BLOG YOUTUBE ==================== */
.blog-youtube-section {
    padding: 0 0 64px;
}

.blog-youtube-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.blog-youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== BLOG KART GELISTIRME ==================== */
.blog-card-image-link {
    display: block;
}

.blog-card-image {
    height: 200px;
}

.blog-card-image--empty {
    background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.07) 100%);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-card-date {
    font-size: 0.68rem;
    font-weight: 600;
    color: #bbb;
}

.blog-card-body h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.blog-card-body h2 a {
    color: inherit;
}

.blog-card-body h2 a:hover {
    opacity: 0.7;
}

.blog-empty {
    text-align: center;
    color: #888;
    grid-column: 1 / -1;
    padding: 40px 0;
}

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

.blog-back .nav-cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 0.82rem;
}

/* ==================== RESPONSIVE - KUCUK MOBIL ==================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-logo img { height: 42px; }
    .header-inner { height: 58px; }

    .main-navigation.mobile-open { top: 58px; }

    .hero { padding: 32px 0 28px; }
    .hero-text h1 { font-size: 1.45rem; }
    .hero-visual { width: 160px; }

    .section-header h2 { font-size: 1.3rem; }
    .about-text h2 { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 18px; }
    .footer-logo { margin-bottom: 20px; }
    .blog-hero h1 { font-size: 1.5rem; }
    .blog-card-image { height: 130px; }
}


/* ==================== TELEGRAM HERO BUTTON ==================== */
.telegram-hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
    padding: 14px 28px !important;
    background: #0088cc !important;
    background-color: #0088cc !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.35) !important;
    border: none !important;
    line-height: 1.5 !important;
}
.telegram-hero-btn:hover {
    background: #006fa8 !important;
    background-color: #006fa8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(0, 136, 204, 0.5) !important;
    color: #fff !important;
    text-decoration: none !important;
}
.telegram-hero-btn svg {
    flex-shrink: 0;
    display: inline-block;
}