/* =================================================================
   1. TASARIM TEMELLERİ VE DEĞİŞKENLER
================================================================= */
:root {
    --primary-color: #0B2545;
    --secondary-color: #3A3A3A;
    --accent-color: #C4A258;
    --background-color: #F8F9FA;
    --surface-color: #FFFFFF;
    --text-color: #212529;
    --text-muted-color: #6c757d;
    --border-color: #dee2e6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body.dark-mode {
    --primary-color: #63a4ff;
    --secondary-color: #adb5bd;
    --accent-color: #C4A258;
    --background-color: #121212;
    --surface-color: #1E1E1E;
    --text-color: #E0E0E0;
    --text-muted-color: #a0a0a0;
    --border-color: #3A3A3A;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* =================================================================
   2. GENEL VE ANA SAYFA STİLLERİ (HİZALAMA DÜZELTMELERİYLE)
================================================================= */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.btn-primary-custom:hover {
    background-color: #06182c;
    border-color: #06182c;
    color: #FFFFFF;
}

.hero-section {
    padding: 8rem 0;
    text-align: center;
}

.hero-section .display-3 {
    font-weight: 800;
}

.hero-section .lead {
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-muted-color);
}

.interactive-demo-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.interactive-demo-box .form-control {
    height: 60px;
    font-size: 1.1rem;
    padding-left: 20px;
    padding-right: 150px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 0.75rem;
}

.interactive-demo-box .btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 14px);
    width: 130px;
    border-radius: 0.5rem;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.brand-footer {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFFFFF;
}

.footer a,
.footer p {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #FFFFFF !important;
    text-decoration: underline;
}

.footer h5 {
    color: #FFFFFF !important;
}

/* ÖZELLİKLER BÖLÜMÜ */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item .icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted-color);
}

/* KULLANICI YORUMLARI */
.testimonial-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.75rem;
    height: 100%;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* SIKÇA SORULAN SORULAR */
.faq-section .accordion-item {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
}

.faq-section .accordion-button {
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--text-color);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 37, 69, 0.25);
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    color: var(--text-muted-color);
    line-height: 1.7;
}

/* HAREKETE GEÇİRİCİ MESAJ (CTA) */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), #081e3a);
    color: #fff;
    padding: 6rem 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 3rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* =================================================================
   3. DİNAMİK SİSTEMLER (yeni-belge.php & belge-analizoru.php)
================================================================= */
.ai-command-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 0;
}

.command-card {
    width: 100%;
    max-width: 800px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.command-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-color), #081e3a);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.command-card h1 {
    font-size: 2.5rem;
}

.prompt-input-wrapper {
    position: relative;
    margin-top: 2rem;
}

.prompt-input-wrapper .form-control {
    height: 60px;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    padding-right: 60px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 0.5rem;
}

.prompt-input-wrapper .btn-submit-prompt {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px;
    width: 44px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.prompt-input-wrapper .btn-submit-prompt:hover {
    opacity: 0.9;
}

.example-prompts {
    margin-top: 1.5rem;
    text-align: center;
}

.prompt-chip {
    display: inline-block;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-muted-color);
    padding: 0.4rem 0.8rem;
    margin: 0.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prompt-chip:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.spinner-container {
    min-height: 400px;
}

.form-group-box {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: .75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.form-group-box h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-group-box h4 i {
    margin-right: 0.75rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-container {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.result-container.visible {
    opacity: 1;
}

.result-actions {
    padding: 1rem;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.document-output-wrapper {
    background-color: #e0e0e0;
    padding: 2rem 1rem;
    border-radius: 0.5rem;
}

.loading-animation-wrapper .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--primary-color), #081e3a);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite ease-in-out;
}

.loading-animation-wrapper .loading-text {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted-color);
}

.loading-animation-wrapper .loading-subtext {
    min-height: 2em;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 37, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(11, 37, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 37, 69, 0);
    }
}

/* Odeme Basarili Sayfasi Ozel Stilleri ve Animasyonlar */
.congratulations-animation-wrapper {
    padding: 3rem;
    border-radius: 1rem;
    background-color: var(--surface-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    /* Animasyonların dışarı taşmasını engeller */
}

.congratulations-animation-wrapper .icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    /* Award ikonu için */
    animation: bounceIn 0.8s ease-out forwards;
    /* Başlangıç animasyonu */
    box-shadow: 0 0 0 0 rgba(196, 162, 88, 0.7);
    /* Parlama efekti */
    animation: pulse-award 2s infinite ease-in-out, bounceIn 0.8s ease-out forwards;
}

.congratulations-animation-wrapper .icon-wrapper i {
    width: 60px;
    /* Lucide ikonları için boyut */
    height: 60px;
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInMoveUp 0.6s ease-out forwards;
}

/* Keyframe Animasyonları */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInMoveUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-award {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 162, 88, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(196, 162, 88, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 162, 88, 0);
    }
}


/* =================================================================
   4. BELGE FORMATLAMA STİLLERİ
================================================================= */
.legal-document {
    background-color: #FFFFFF;
    font-size: 12pt;
    color: #000000;
    max-width: 21cm;
    min-height: 29.7cm;
    margin: 0 auto;
    padding: 2.5cm;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.7;
}

.legal-document h1.doc-title {
    text-align: center;
    font-weight: bold;
    font-size: 16pt;
    margin-bottom: 1.5cm;
    text-transform: uppercase;
    color: #000;
}

.legal-document h4.doc-section-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 12pt;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    margin-top: 1cm;
    margin-bottom: 0.5cm;
    text-transform: uppercase;
    color: #000;
}

.legal-document p {
    text-align: justify;
    margin-bottom: 0.5cm;
    text-indent: 0;
}

.legal-document p.indent {
    text-indent: 2em;
}

.legal-document p strong {
    color: #000;
}

.legal-document h4.doc-section-title+p,
.legal-document ul+p,
.legal-document ol+p {
    text-indent: 0;
}

.legal-document ul,
.legal-document ol {
    padding-left: 2.5em;
    text-align: justify;
    margin-bottom: 0.5cm;
}

.legal-document ul li,
.legal-document ol li {
    margin-bottom: 0.5cm;
}

.legal-document .doc-signature {
    margin-top: 2cm;
    text-align: right;
}

.cv-container {
    font-family: 'Inter', sans-serif;
    font-size: 10pt;
    line-height: 1.6;
    color: #333;
}

.cv-header {
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cv-header h1 {
    font-family: var(--font-heading);
    color: #000;
    font-size: 24pt;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cv-header p {
    font-size: 12pt;
    color: #3A3A3A;
    margin: 5px 0 15px 0;
}

.cv-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 9pt;
}

.cv-contact span {
    display: flex;
    align-items: center;
}

.cv-contact i {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    color: #0B2545;
}

.cv-body {
    display: flex;
    gap: 30px;
}

.cv-left-column {
    flex: 2;
}

.cv-right-column {
    flex: 1;
    border-left: 1px solid #e0e0e0;
    padding-left: 30px;
}

.cv-section h2 {
    font-family: var(--font-heading);
    font-size: 14pt;
    color: #0B2545;
    border-bottom: 1px solid #0B2545;
    padding-bottom: 5px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cv-item,
.cv-item-small {
    margin-bottom: 20px;
}

.cv-item h3,
.cv-item-small h3 {
    font-family: var(--font-body);
    font-size: 11pt;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.cv-item .cv-sub-header {
    font-size: 9pt;
    font-style: italic;
    color: #3A3A3A;
    margin-bottom: 10px;
}

.cv-item ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}

.cv-item ul li {
    margin-bottom: 5px;
}

.cv-skills {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-skills li {
    background-color: #e9ecef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 9pt;
}

@media print {
    body * {
        visibility: hidden;
    }

    .legal-document,
    .legal-document * {
        visibility: visible;
    }

    .legal-document {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        padding: 1.5cm;
        border: none;
        box-shadow: none;
        max-width: 100%;
    }

    .cv-container {
        box-shadow: none !important;
        border: none !important;
    }
}

/* =================================================================
   5. KURUMSAL SAYFA STİLLERİ (Hakkımızda, Gizlilik vb.)
================================================================= */
.page-header {
    background-color: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.static-page-content {
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.static-page-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.static-page-content p,
.static-page-content li {
    line-height: 1.8;
    color: var(--text-muted-color);
}

.static-page-content strong {
    color: var(--text-color);
}

.static-page-content ul,
.static-page-content ol {
    padding-left: 1.5rem;
}

/* =================================================================
   5. YENİ: BELGE ANALİZÖRÜ SAYFA STİLLERİ
================================================================= */

/* Analiz Sayfası Genel Yapısı */
.analyzer-page-wrapper {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

/* Yükleme ve Soru Sorma Formu */
.analyzer-form-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.analyzer-form-card .form-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.analyzer-form-card .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.analyzer-form-card .form-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

/* Sürükle Bırak Alanı */
#drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--background-color);
}

#drop-zone.drag-over {
    border-color: var(--accent-color);
    background-color: rgba(196, 162, 88, 0.1);
}

#drop-zone .drop-zone-text {
    color: var(--text-muted-color);
}

#file-name-display {
    color: var(--primary-color);
    font-weight: 500;
}

/* Analiz Sonucu */
.analysis-result-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.analysis-result-card h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.analysis-result-card ul {
    list-style: none;
    padding-left: 0;
}

.analysis-result-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.analysis-result-card ul li i {
    flex-shrink: 0;
    margin-top: 5px;
    margin-right: 10px;
    color: var(--accent-color);
}

/* =================================================================
   6. PROFESYONEL BLOG STİLLERİ (NİHAİ VERSİYON)
================================================================= */

/* Ana Blog Sayfası Genel Yapısı */
.blog-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .card-title {
    font-size: 1.25rem;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.blog-card .card-text {
    color: var(--text-muted-color);
}

/* Öne Çıkan Yazı Kartı */
.featured-post-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobil için tek sütun */
    align-items: center;
    gap: 2rem;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    /* Ek özellikler için */
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .featured-post-card {
        grid-template-columns: repeat(2, 1fr);
        /* Geniş ekranlar için iki sütun */
        gap: 4rem;
        padding: 3rem;
    }
}

.featured-post-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Daha belirgin gölge */
    transform: translateY(-8px);
    /* Hafif yukarı kalkma */
}


.featured-post-card .featured-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.featured-post-card .featured-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Öne Çıkan Yazı Kategori Rozeti (Ödüllü Görünüm) */
.featured-post-card .post-category.badge {
    background: linear-gradient(90deg, var(--accent-color) 0%, #FFD700 100%) !important;
    /* Altın rengi gradient */
    color: #333 !important;
    /* Metin rengi */
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: badge-glow 1.5s infinite alternate;
    /* Hafif parlama animasyonu */
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0px var(--accent-color);
    }

    100% {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.5);
    }
}


/* Tekil Yazı Sayfası Header Enhancements */
.post-header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background-color: var(--surface-color);
    /* Hafif arka plan */
    border-bottom: 1px solid var(--border-color);
    border-radius: 0.75rem;
    /* Hafif köşe yuvarlama */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Yumuşak gölge */
}

.post-header .post-category {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 1.1rem;
    /* Biraz daha büyük kategori fontu */
}

.post-header .post-title {
    font-size: 3.5rem;
    margin: 1rem 0;
    color: var(--primary-color);
    /* Daha belirgin başlık rengi */
    line-height: 1.2;
    /* Satır aralığı */
}

.post-header .post-meta {
    color: var(--text-muted-color);
    font-size: 0.95rem;
    /* Meta bilgisi font boyutu */
}

/* Tekil Yazı Sayfası Content Enhancements */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    /* Ana metin rengi */
    background-color: var(--surface-color);
    /* Beyaz arka plan */
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-content h2,
.post-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    /* Başlık altına çizgi */
    padding-bottom: 0.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    /* Paragraf aralığı */
}

.post-content p,
.post-content li {
    color: var(--text-color);
    /* Metin rengi, muted yerine tam renk */
}

.post-content strong {
    color: var(--primary-color);
    /* Vurgulu metinler için ana renk */
    font-weight: 700;
}

.post-content a {
    color: var(--accent-color);
    /* Bağlantı rengi vurgulu */
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-color);
    /* Altı çizili yerine kesik çizgi */
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    /* Listeler için daha fazla girinti */
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 0.8rem;
}

/* İçerik İçi Görsel Stilleri */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Blog CTA Kutusu Stilleri */
.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #06182c 100%);
    /* Koyu gradient arka plan */
    color: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-cta-box .icon-wrapper {
    background-color: var(--accent-color);
    /* Vurgu rengi ikon arka planı */
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 0 rgba(196, 162, 88, 0.5);
    /* Hafif parlama */
    animation: cta-icon-pulse 2s infinite;
}

@keyframes cta-icon-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 162, 88, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(196, 162, 88, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 162, 88, 0);
    }
}


.blog-cta-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta-box .btn-cta {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.blog-cta-box .btn-cta:hover {
    background-color: #e0b86a;
    border-color: #e0b86a;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Fiyatlandırma Sayfası Özel Stilleri */
.price-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    /* Varsayılan border */
}

.price-card:hover {
    transform: translateY(-7px);
    /* Hafif yükselme */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    /* Daha belirgin gölge */
}

.price-card .card-header {
    background-color: var(--background-color);
    /* Başlık arka planı */
    color: var(--primary-color);
    font-weight: 700;
}

.price-card.featured-card {
    border: 3px solid var(--primary-color) !important;
    /* Vurgulu border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    /* Daha güçlü gölge */
    position: relative;
    /* Kurdele için */
    overflow: hidden;
}

.price-card.featured-card .featured-header {
    background: linear-gradient(45deg, var(--primary-color), #081e3a) !important;
    /* Gradient başlık */
    color: #fff !important;
}

.price-card .pricing-card-title {
    color: var(--primary-color);
}

.price-card .price-features li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-card .price-features li i {
    color: var(--accent-color);
    /* İkon rengi */
}

.price-card .purchase-btn {
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    border-radius: 0.6rem;
}

/* Kurdele Stili */
.ribbon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 100px;
    /* Kurdelenin genişliği */
    height: 100px;
    /* Kurdelenin yüksekliği */
    z-index: 10;
}

.ribbon {
    position: absolute;
    padding: 5px 0;
    width: 160px;
    background-color: var(--accent-color);
    /* Kurdele rengi */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transform: rotate(45deg);
    right: -55px;
    /* Konumu ayarlayın */
    top: 15px;
    /* Konumu ayarlayın */
    text-transform: uppercase;
    animation: ribbon-pulse 1.5s infinite alternate;
    /* Hafif parlama animasyonu */
}

.ribbon:before,
.ribbon:after {
    content: '';
    position: absolute;
    top: 100%;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
}

.ribbon:before {
    left: 0;
    border-left: 3px solid var(--accent-color);
    /* Renk kurdele rengiyle aynı olmalı */
    border-right: 3px solid transparent;
}

.ribbon:after {
    right: 0;
    border-right: 3px solid var(--accent-color);
    /* Renk kurdele rengiyle aynı olmalı */
    border-left: 3px solid transparent;
}

@keyframes ribbon-pulse {
    0% {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.7);
    }

    /* Altın parlama */
}