/*
Theme Name: Satellite Stars
Theme URI: https://adanaanahtarcilingir.com
Description: Hizmet işletmeleri için, Koyu Mavi, Modern, Tamamen Özelleştirilebilir Tema. Çilingir, anahtarcı, teknik servisler, elektrikçiler, tesisatçılar ve daha fazlası için mükemmel. Özelleştirici aracılığıyla %100 özelleştirilebilir – kodlama gerekmez! Gradyan efektleri, modern animasyonlar, SEO optimize edilmiş profesyonel tema.
Author: Deniz Elektronik
Author URI: https://adanaanahtarcilingir.com
Version: 6.1.2
Requires at least: 6.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satellite-stars
Tags: Profesyonel, Hizmet işletmesi, Çilingir, Anahtarcı, Kilit Değişimi, Acil Servis, Elektrikçi, Tesisatçı, Teknik Servisler, Modern, Duyarlı, SEO optimize, Özelleştirilebilir, Koyu Mavi Tema, Degradyan

Satellite Stars - Türkçe 2026 Google Seo Standartlarında Çok Sektörlü Servis İşletmesi Teması
Complete Privacy Mode - Tüm hakları saklıdır.
Copyright (C) 2026 Satellite Stars - Profesyonel Türkçe Çok Yönlü Servis İşletmesi Teması
*/

/* =========================================================================
   CUSTOM PROPERTIES & CSS VARIABLES (BLUE THEME)
========================================================================= */
:root {
    /* Brand Colors - Blue Focus */
    --color-primary: #0d47a1;
    --color-primary-light: #1976d2;
    --color-primary-dark: #01579b;
    --color-secondary: #1565c0;
    --color-secondary-light: #42a5f5;
    --color-accent: #1976d2;
    --color-accent-light: #64b5f6;
    --color-complementary: #00ACC1;

    /* Neutral Colors */
    --color-dark: #1a1a1a;
    --color-gray: #6b7280;
    --color-light: #f9fafb;
    --color-white: #ffffff;

    /* Gradients - Dinamik (functions.php'den yüklenir) */
    --gradient-primary: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    --gradient-secondary: linear-gradient(135deg, #42a5f5 0%, #0d47a1 100%);
    --gradient-hero: linear-gradient(135deg, #01579b 0%, #0d47a1 50%, #1565c0 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(13, 71, 161, 0.1), rgba(13, 71, 161, 0.3));
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3rem;

    /* Typography */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;

    /* Effects - Dinamik (functions.php'den yüklenir) */
    --shadow-sm: 0 2px 4px 0 rgba(13, 71, 161, 0.1);
    --shadow-md: 0 4px 12px -1px rgba(13, 71, 161, 0.15);
    --shadow-lg: 0 10px 20px -3px rgba(13, 71, 161, 0.2);
    --shadow-xl: 0 20px 35px -5px rgba(13, 71, 161, 0.25);
    --shadow-glow: 0 0 25px rgba(13, 71, 161, 0.4);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background: linear-gradient(to bottom, #ffffff 0%, #e3f2fd 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-primary-dark);
}

/* =========================================================================
   TYPOGRAPHY
========================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

h4 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* =========================================================================
   LAYOUT UTILITIES
========================================================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title h2 {
    color: var(--color-primary);
    font-weight: 800;
}


.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    margin: var(--spacing-sm) auto 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
}

/* =========================================================================
   HEADER & NAVIGATION
========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--color-primary);
    transition: all var(--transition-base);
}

/* Header Scroll: koyu ve kompakt hale gelir */
.site-header.scrolled {
    background: rgba(13, 71, 161, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.35);
}

.site-header.scrolled .site-logo a,
.site-header.scrolled .main-navigation a {
    color: #ffffff;
}

.site-header.scrolled .main-navigation a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.site-header.scrolled .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem var(--spacing-md);
    max-width: 1280px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}


.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.main-navigation a {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 600;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    position: relative;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.main-navigation a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.header-cta {
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--gradient-primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px auto;
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* =========================================================================
   HERO SECTION (BLUE DOMINANT)
========================================================================= */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--color-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.hero-buttons {
    display: inline-flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--color-primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* =========================================================================
   SERVICES GRID (BLUE ACCENT)
========================================================================= */
.services-section {
    background: linear-gradient(to bottom, #ffffff 0%, #e3f2fd 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    position: relative;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 71, 161, 0.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(13, 71, 161, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px) scale(1.05);
}

/* float animasyonu artık service-card hover'da değil, isteğe bağlı kullanılabilir */

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    font-weight: 800;
}

.service-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

/* Hizmet açıklamalarındaki vurgular siyah olmalı - tüm olası kombinasyonlar */
.service-card .service-description strong,
.service-card .service-description em,
.service-card .service-description b,
.service-card .service-description i,
.services-section .service-description strong,
.services-section .service-description em,
.services-section .service-description b,
.services-section .service-description i,
.service-description strong,
.service-description em,
.service-description b,
.service-description i,
p.service-description strong,
p.service-description em,
p.service-description b,
p.service-description i {
    color: #000 !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-style: normal !important;
}

.service-description strong,
.service-description b {
    font-weight: 700 !important;
}

.service-price,
span.service-price,
.service-card .service-price,
.services-section .service-price {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #000 !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-fill-color: #000 !important;
    margin-top: var(--spacing-xs);
}

/* =========================================================================
   STATS SECTION (BLUE THEME)
========================================================================= */
.stats-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section .section-title h2 {
    color: var(--color-white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--color-white) !important;
    background-clip: unset !important;
}

.stats-section .section-title p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.stats-section .section-title::after {
    background: rgba(255, 255, 255, 0.5) !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 600;
}

/* =========================================================================
   CTA SECTION
========================================================================= */
.cta-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    border-radius: var(--radius-2xl);
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

.cta-title {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    font-weight: 900;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    font-weight: 500;
}

.cta-phone {
    display: inline-block;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 3px solid white;
    transition: all var(--transition-base);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.cta-phone:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* =========================================================================
   FOOTER
========================================================================= */
.site-footer {
    background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-widget h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.footer-widget p,
.footer-widget a,
.footer-widget li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-widget a:hover {
    color: var(--color-primary);
}

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

.footer-widget ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid var(--color-primary);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Sosyal Medya İkonları */
.footer-social-icon {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.footer-social-icon.facebook-icon {
    color: #1877F2;
}

.footer-social-icon.instagram-icon {
    color: #E4405F;
}

.footer-social-icon.google-icon {
    color: #4285F4;
}

.footer-social-icon:hover {
    transform: scale(1.2);
}

.footer-social-icon:active {
    transform: scale(1.1);
}

/* =========================================================================
   LARGE CALL BUTTON (BLUE)
========================================================================= */
.large-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 0.75rem;
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--color-primary);
    display: flex;
    justify-content: center;
}

.btn-large-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 550px;
    padding: 1.25rem 1.75rem;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--color-white);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.btn-large-call:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--color-white);
}

.site-content {
    padding-bottom: 90px;
}

/* =========================================================================
   BLOG & POSTS
========================================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.post-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

.post-content {
    padding: var(--spacing-md);
}

.post-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.post-title a {
    color: var(--color-dark);
    transition: color var(--transition-base);
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.post-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--color-gray);
    flex-wrap: wrap;
}

.read-more {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 700;
    transition: transform var(--transition-base);
}

.read-more:hover {
    transform: translateX(5px);
}

/* =========================================================================
   SINGLE POST STYLES
========================================================================= */
.single-post-container {
    padding: 3rem 1rem;
    min-height: 60vh;
}

.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid var(--color-primary);
    text-align: center;
}

.entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.single-post-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.9;
}

/* =========================================================================
   PAGE STYLES
========================================================================= */
.page-container {
    padding: 3rem 1rem;
    min-height: 60vh;
}

.page-entry-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.page-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
    max-width: 850px;
    margin: 0 auto;
}

/* Social Share Box */
.social-share-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--color-primary);
}

.social-share-box h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.65rem;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-facebook {
    background: #1877F2;
    color: white;
    font-size: 1.05rem;
}

.btn-facebook:hover {
    background: #0d65d9;
    color: white;
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
    font-size: 1.05rem;
}

.btn-twitter:hover {
    background: #0c85d0;
    color: white;
}

/* Single Post CTA Box */
.single-cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-glow);
}

.single-cta-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.85rem;
}

.single-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-cta-phone {
    background: white;
    color: var(--color-primary);
    font-size: 1.65rem;
    padding: 1.15rem 2.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-phone:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--color-primary-dark);
}

/* Post Navigation */
.post-navigation {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 250px;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    transition: all var(--transition-base);
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title,
.nav-previous a:hover .nav-subtitle,
.nav-next a:hover .nav-subtitle {
    color: white;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Entry Content Images - Responsive Fix (content içindeki normal resimler) */
.entry-content img:not(.featured-image img),
.single-post-content img:not(.featured-image img),
.page-content img:not(.featured-image img) {
    max-width: 500px !important;
    height: auto !important;
    width: 100% !important;
    display: block;
    margin: 1.5rem auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Desktop - Content içindeki resimler daha küçük */
@media (min-width: 769px) {

    .entry-content img:not(.featured-image img),
    .single-post-content img:not(.featured-image img),
    .page-content img:not(.featured-image img) {
        max-width: 420px !important;
    }
}

@media (min-width: 1025px) {

    .entry-content img:not(.featured-image img),
    .single-post-content img:not(.featured-image img),
    .page-content img:not(.featured-image img) {
        max-width: 380px !important;
    }
}

@media (min-width: 1441px) {

    .entry-content img:not(.featured-image img),
    .single-post-content img:not(.featured-image img),
    .page-content img:not(.featured-image img) {
        max-width: 350px !important;
    }
}

.entry-content figure,
.single-post-content figure,
.page-content figure {
    max-width: 100% !important;
    margin: 1.5rem 0;
}

.entry-content figure img,
.single-post-content figure img,
.page-content figure img {
    margin: 0 auto;
}

/* Featured Image - Optimized for Desktop (YÜKSEK ÖNCELİK) */
.featured-image-wrapper {
    display: flex;
    justify-content: center;
    margin: var(--spacing-lg) 0;
}

.featured-image {
    max-width: 500px;
    width: 100%;
}

/* Featured image resimleri için en yüksek öncelik */
.entry-content .featured-image img,
.page-content .featured-image img,
.single-post-content .featured-image img,
.featured-image img,
.featured-image .wp-post-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: none !important;
}

/* Desktop Optimization - Tablet */
@media (min-width: 769px) {
    .featured-image {
        max-width: 420px;
    }
}

/* Desktop Optimization - Desktop */
@media (min-width: 1025px) {
    .featured-image {
        max-width: 380px;
    }
}

/* Desktop Optimization - Extra Large */
@media (min-width: 1441px) {
    .featured-image {
        max-width: 350px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-image {
        max-width: 100%;
    }

    .entry-content img,
    .single-post-content img {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* =========================================================================
   ANIMATIONS
========================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

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

/* =========================================================================
   RESPONSIVE DESIGN
========================================================================= */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        transition: left var(--transition-base);
        padding: var(--spacing-lg);
        border-top: 3px solid var(--color-primary);
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .main-navigation a {
        display: block;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .btn-large-call {
        font-size: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }
}

/* =========================================================================
   REVIEWS SECTION
========================================================================= */
.reviews-section {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.reviews-carousel.reviews-carousel--static {
    padding: 0;
}

.reviews-carousel.reviews-carousel--static .reviews-wrapper {
    flex-wrap: wrap;
    transform: none !important;
    transition: none !important;
}

.reviews-carousel.reviews-carousel--static .carousel-prev,
.reviews-carousel.reviews-carousel--static .carousel-next,
.reviews-carousel.reviews-carousel--static .carousel-dots {
    display: none !important;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    border-left: 4px solid var(--color-primary);
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.review-info {
    flex: 1;
}

.review-author {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.review-text {
    flex: 1;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.review-platform {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.review-platform img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.review-platform span {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Navigation Arrows - Modern Tasarım */
.review-nav,
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    color: var(--color-primary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.18), 0 1px 4px rgba(0, 0, 0, 0.08);
    line-height: 1;
}

.review-nav:hover,
.carousel-prev:hover,
.carousel-next:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.12);
    box-shadow: var(--shadow-glow);
}

.review-prev,
.carousel-prev {
    left: 0;
}

.review-next,
.carousel-next {
    right: 0;
}

/* Dots Navigation */
.review-dots,
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.review-dot,
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.review-dot:hover,
.carousel-dot:hover {
    background: var(--color-primary-light);
    transform: scale(1.2);
}

.review-dot.active,
.carousel-dot.active {
    background: var(--gradient-primary);
    width: 32px;
    border-radius: 6px;
    border-color: var(--color-primary);
}

/* Reviews Footer */
.reviews-footer {
    text-align: center;
    margin-top: 2rem;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Review Summary Stats */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.review-stat-item {
    text-align: center;
}

.review-stat-item .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.review-stat-item .stat-label {
    display: block;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Address */
.cta-address {
    margin-top: 2rem;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .reviews-carousel.reviews-carousel--static .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 50px;
    }

    .review-card {
        flex: 0 0 100%;
        min-height: 250px;
    }

    .reviews-carousel.reviews-carousel--static .review-card {
        flex: 0 0 100%;
    }

    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .review-dots {
        gap: 0.5rem;
    }

    .review-dot {
        width: 10px;
        height: 10px;
    }

    .review-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        padding: 0 40px;
    }

    .review-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .review-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .review-header {
        gap: 0.75rem;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .review-author {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

/* =========================================================================
   MOBILE NAV OVERLAY (8. Özellik)
========================================================================= */
#mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 35, 80, 0.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base);
}

#mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* =========================================================================
   UTILITY CLASSES
========================================================================= */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================================================================
   COOKIES CONSENT BAR
========================================================================= */
.cookies-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary, linear-gradient(135deg, #0d47a1 0%, #1565c0 100%));
    color: #ffffff;
    padding: 1.25rem 1rem;
    box-shadow: 0 -4px 20px rgba(13, 71, 161, 0.4);
    z-index: 999999;
    border-top: 3px solid var(--color-primary, #0d47a1);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.cookies-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookies-text {
    flex: 1;
}

.cookies-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookies-text strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookies-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookies-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    min-width: 120px;
}

.cookies-accept {
    background: #ffffff;
    color: var(--color-primary, #0d47a1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.cookies-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    background: #f0f0f0;
}

.cookies-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookies-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .cookies-bar {
        padding: 1rem 0.75rem;
    }

    .cookies-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookies-text p {
        font-size: 0.875rem;
    }

    .cookies-text strong {
        font-size: 1rem;
    }

    .cookies-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookies-btn {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .cookies-bar-content {
        gap: 1rem;
    }

    .cookies-btn {
        min-width: 100px;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Print için gizle */
@media print {
    .cookies-bar {
        display: none !important;
    }
}

/* =========================================================================
   DESKTOP OPTIMIZATIONS (LARGE SCREENS)
========================================================================= */
@media (min-width: 1025px) {

    /* Daha kompakt spacing değerleri masaüstü için */
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }

    /* Hero section - desktop'ta biraz daha kompakt ama yine de etkili */
    .hero-section {
        min-height: 75vh;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.35rem);
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1.1rem;
    }

    /* Section başlıkları daha kompakt */
    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        margin-bottom: 0.75rem;
    }

    /* Service card'lar daha kompakt */
    .service-card {
        padding: 1.75rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .service-price {
        font-size: 1.25rem;
    }

    /* Stats daha kompakt */
    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.75rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    /* CTA daha kompakt */
    .cta-title {
        font-size: clamp(1.85rem, 3.5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .cta-phone {
        font-size: 2rem;
        padding: 0.875rem 1.75rem;
    }

    /* Blog kartları daha kompakt */
    .post-thumbnail {
        height: 220px;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .post-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Büyük arama butonu daha kompakt */
    .btn-large-call {
        padding: 1.25rem 1.75rem;
        font-size: 1.65rem;
        max-width: 550px;
    }

    .site-content {
        padding-bottom: 90px;
    }

    /* Grid sistemleri daha efektif kullan */
    .services-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .blog-grid {
        gap: 1.75rem;
        margin-top: 2rem;
    }

    /* Single Post daha kompakt */
    .single-post-container {
        padding: 2.5rem 1rem;
    }

    .entry-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .entry-title {
        font-size: clamp(1.85rem, 4vw, 2.5rem);
    }

    /* Page daha kompakt */
    .page-container {
        padding: 2.5rem 1rem;
    }

    .page-title {
        font-size: clamp(1.85rem, 4vw, 2.5rem);
    }

    .social-share-box {
        margin: 2rem 0;
        padding: 1.75rem;
    }

    .social-share-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .btn-facebook,
    .btn-twitter {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .single-cta-box {
        padding: 2rem;
        margin: 2rem 0;
    }

    .single-cta-box h3 {
        font-size: 1.65rem;
        margin-bottom: 0.875rem;
    }

    .single-cta-box p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta-phone {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

/* Extra Large Screens - Çok büyük ekranlarda daha da kompakt */
@media (min-width: 1441px) {
    :root {
        --spacing-xl: 1.75rem;
        --spacing-2xl: 2.25rem;
    }

    .hero-section {
        min-height: 50vh;
    }

    .hero-content {
        padding: 1.75rem 1.5rem;
    }

    .container {
        max-width: 1200px;
    }

    .section {
        padding: 2.5rem 0;
    }

    /* Single Post ekstra kompakt */
    .single-post-container {
        padding: 2rem 1rem;
    }

    .entry-title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }

    /* Page ekstra kompakt */
    .page-container {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }

    .social-share-box {
        margin: 1.75rem 0;
        padding: 1.5rem;
    }

    .social-share-box h3 {
        font-size: 1.4rem;
    }

    .single-cta-box {
        padding: 1.75rem;
        margin: 1.75rem 0;
    }

    .single-cta-box h3 {
        font-size: 1.5rem;
    }

    .single-cta-box p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .btn-cta-phone {
        font-size: 1.4rem;
        padding: 0.875rem 1.75rem;
    }
}

/* =========================================================================
   STICKY CALL BUTTONS (Yapışkan Telefon ve WhatsApp Butonları)
   Customizer'dan yönetilebilir 2 butonlu alt bar
========================================================================= */
.large-call-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    z-index: 9999;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

.large-call-buttons .btn-large-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.large-call-buttons .btn-large-call::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.large-call-buttons .btn-large-call:hover::before {
    width: 400px;
    height: 400px;
}

.large-call-buttons .btn-large-call .btn-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.large-call-buttons .btn-large-call .btn-text {
    position: relative;
    z-index: 1;
}

/* Telefon Butonu - Site Rengi (Dinamik) */
.large-call-buttons .btn-large-call.btn-phone {
    background: var(--gradient-primary, linear-gradient(135deg, #0d47a1 0%, #1565c0 100%));
}

.large-call-buttons .btn-large-call.btn-phone:hover {
    filter: brightness(1.15);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.large-call-buttons .btn-large-call.btn-phone:active {
    transform: scale(0.98);
}

/* WhatsApp Butonu - Yeşil (Sabit) */
.large-call-buttons .btn-large-call.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.large-call-buttons .btn-large-call.btn-whatsapp:hover {
    filter: brightness(1.15);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.large-call-buttons .btn-large-call.btn-whatsapp:active {
    transform: scale(0.98);
}

/* Pulse Animation */
@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.large-call-buttons .btn-large-call.btn-phone {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulseWhatsApp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.large-call-buttons .btn-large-call.btn-whatsapp {
    animation: btnPulseWhatsApp 3s ease-in-out infinite;
    animation-delay: 1.5s;
}


/* Responsive - Mobile */
@media (max-width: 768px) {
    .large-call-buttons .btn-large-call {
        padding: 20px 24px;
        font-size: 17px;
        gap: 12px;
    }

    .large-call-buttons .btn-large-call .btn-icon {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .large-call-buttons .btn-large-call {
        padding: 18px 20px;
        font-size: 16px;
        gap: 10px;
    }

    .large-call-buttons .btn-large-call .btn-icon {
        font-size: 24px;
    }

    .large-call-buttons .btn-large-call .btn-text {
        font-size: 15px;
    }
}

/* =========================================================================
   BREADCRUMB NAVIGATION (Ekmek Kırıntısı Gezintisi)
   SEO ve Kullanıcı Deneyimi için Modern Breadcrumb Tasarımı
========================================================================= */
.breadcrumb-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 12px 0 !important;
    margin-bottom: 25px !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(13, 71, 161, 0.1) !important;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px;
    font-size: 14px;
}

.breadcrumb-navigation a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-navigation a:hover {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.breadcrumb-icon {
    font-size: 16px;
    display: inline-block;
}

.breadcrumb-separator {
    color: var(--color-gray);
    font-weight: 400;
    user-select: none;
}

.breadcrumb-current {
    color: var(--color-dark);
    font-weight: 600;
}

/* Breadcrumb Responsive */
@media (max-width: 768px) {
    .breadcrumb-navigation {
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .breadcrumb-inner {
        padding: 0 15px;
        font-size: 13px;
        gap: 6px;
    }

    .breadcrumb-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-navigation {
        padding: 8px 0;
        margin-bottom: 15px;
    }

    .breadcrumb-inner {
        padding: 0 10px;
        font-size: 12px;
        gap: 5px;
    }

    .breadcrumb-current {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 150px;
    }
}

/* =========================================================================
   READING TIME (Okuma Süresi Göstergesi)
   Blog Yazıları için Okuma Süresi Hesaplayıcı
========================================================================= */
.entry-meta-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 0 25px 0;
    padding: 0 20px;
}

.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--color-dark);
    border: 1px solid rgba(13, 71, 161, 0.15);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.reading-time-icon {
    font-size: 20px;
    display: inline-block;
}

.reading-time-text {
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-dark);
}

.reading-time-text strong {
    font-weight: 700;
    color: var(--color-primary);
}

/* Reading Time Responsive */
@media (max-width: 768px) {
    .entry-meta-wrapper {
        margin: 12px 0 20px 0;
    }

    .reading-time {
        padding: 8px 16px;
        font-size: 14px;
        gap: 6px;
    }

    .reading-time-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .entry-meta-wrapper {
        margin: 10px 0 15px 0;
    }

    .reading-time {
        padding: 6px 14px;
        font-size: 13px;
        gap: 5px;
    }

    .reading-time-icon {
        font-size: 16px;
    }
}

/* =========================================================================
   POST NAVIGATION & RELATED POSTS
========================================================================= */
.post-navigation {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 250px;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    transition: all var(--transition-base);
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title,
.nav-previous a:hover .nav-subtitle,
.nav-next a:hover .nav-subtitle {
    color: white;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-post-card {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.related-post-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.related-post-card .sayfaya-git {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
}

.related-post-card:hover h4,
.related-post-card:hover .sayfaya-git {
    color: white !important;
}
