/* =====================================================
   ToptanDoypack.com - Ana Stil Dosyası
   Modern Kurumsal Tasarım
   ===================================================== */

/* =====================================================
   CSS DEĞİŞKENLERİ
   ===================================================== */
:root {
    /* Ana Renkler */
    --primary: #1a4296;
    --primary-dark: #0f2b69;
    --primary-light: #2f58ad;
    --secondary: #fbbf24;
    --secondary-light: #fde68a;
    --secondary-dark: #d97706;
    --accent: #ff7a18;

    /* Nötr Renkler */
    --dark: #0D1117;
    --dark-2: #161B22;
    --gray-900: #1F2937;
    --gray-800: #2D3748;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    /* Durum Renkleri */
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    /* Tipografi */
    --font-primary: 'Quicksand', system-ui, -apple-system, sans-serif;
    --font-heading: 'Quicksand', system-ui, sans-serif;

    /* Boyutlar */
    --header-height: 80px;
    --top-bar-height: 40px;

    /* Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Geçişler */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    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-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* =====================================================
   ÜST BAR
   ===================================================== */
.top-bar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1001;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left .working-hours {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.top-bar-left a:hover {
    color: var(--secondary);
}

.top-bar-left i {
    font-size: 0.75rem;
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.top-bar-right a {
    color: var(--gray-500);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-bar-right a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-main {
    background: var(--white);
    padding: 0;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1000;
}

.navbar-main.scrolled {
    height: 65px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(26, 66, 150, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: 0.5px;
}

.logo-title strong {
    font-weight: 800;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.68rem;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Menü */
.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    position: relative;
    letter-spacing: 0.01em;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* CTA Butonu */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: var(--white) !important;
    border-radius: var(--radius-full) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 12px rgba(26, 66, 150, 0.25);
}

.btn-nav-cta::after {
    display: none !important;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 66, 150, 0.35);
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 10px !important;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
    padding-left: 18px;
}

/* Hamburger Menü */
.navbar-toggler {
    border: none;
    padding: 6px;
    outline: none !important;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-swiper {
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(26, 66, 150, 0.6) 50%, rgba(13, 17, 23, 0.7) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-text {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--secondary);
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Dekorasyon */
.hero-decoration {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(251, 191, 36, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero-decoration::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 2px solid rgba(251, 191, 36, 0.05);
    border-radius: 50%;
}

/* Hero Pagination */
.hero-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 50px;
    background: var(--secondary);
}

/* =====================================================
   BUTONLAR
   ===================================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 66, 150, 0.35);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.35);
}

/* =====================================================
   BÖLÜM BAŞLIKLARI
   ===================================================== */
.section-padding {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 55px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 66, 150, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================================
   ÖZELLİKLER / AVANTAJLAR BÖLÜMÜ
   ===================================================== */
.features-bar {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-bar .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 10px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(26, 66, 150, 0.08) 0%, rgba(26, 66, 150, 0.04) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.feature-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   HİZMETLER BÖLÜMÜ
   ===================================================== */
.services-section {
    background: var(--gray-50);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 28px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(26, 66, 150, 0.1) 0%, rgba(26, 66, 150, 0.04) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.08) rotate(-3deg);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--primary-light);
    gap: 10px;
}

/* =====================================================
   HAKKIMIZDA BÖLÜMÜ (Ana Sayfa)
   ===================================================== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.about-content {
    padding-left: 30px;
}

.about-content .section-badge {
    display: inline-flex;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

.about-features li i {
    width: 28px;
    height: 28px;
    background: var(--fp-50, #eef3fb);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* =====================================================
   ÜRÜNLER BÖLÜMÜ
   ===================================================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-50);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.product-card:hover .product-card-body h4 {
    color: var(--primary);
}

.product-card-body p {
    font-size: 0.87rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.product-card-link:hover {
    color: var(--primary-light);
    gap: 10px;
}

/* =====================================================
   SAYAÇLAR / İSTATİSTİKLER
   ===================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* =====================================================
   BLOG BÖLÜMÜ
   ===================================================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.blog-card-body {
    padding: 22px;
}

.blog-card-category {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.blog-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover h4 {
    color: var(--primary);
}

.blog-card-body p {
    font-size: 0.87rem;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   CTA BÖLÜMÜ
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(251, 191, 36, 0.08);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content h2 span {
    color: var(--secondary);
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 30px;
}

/* =====================================================
   İÇ SAYFA BANNER
   ===================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom li a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom li a:hover {
    color: var(--secondary);
}

.breadcrumb-custom li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.footer-logo .logo-title {
    color: var(--white);
}

.footer-logo .logo-title strong {
    color: var(--secondary);
}

.footer-logo .logo-subtitle {
    color: var(--gray-500);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-contact .contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.85rem;
}

.footer-contact .contact-text {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-contact .contact-text a {
    color: var(--gray-400);
}

.footer-contact .contact-text a:hover {
    color: var(--secondary);
}

/* Footer Alt */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.copyright {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* =====================================================
   WHATSAPP & SCROLL TOP BUTONLARI
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =====================================================
   İLETİŞİM FORMU
   ===================================================== */
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 18px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 66, 150, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--white);
    opacity: 0.85;
}

.contact-info-text a:hover {
    opacity: 1;
}

/* =====================================================
   GALERİ
   ===================================================== */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 17, 23, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* =====================================================
   ALERT & FORM
   ===================================================== */
.alert {
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =====================================================
   RESPONSİVE
   ===================================================== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 991px) {
    .top-bar { display: none; }

    .navbar-main { height: auto; padding: 12px 0; }
    .navbar-collapse {
        padding: 20px 0;
        border-top: 1px solid var(--gray-100);
        margin-top: 12px;
    }
    .navbar-nav .nav-link { padding: 10px 0 !important; }
    .nav-cta { margin-top: 10px; }
    .btn-nav-cta { display: inline-flex; }

    .hero-swiper { height: 70vh; min-height: 450px; }
    .hero-title { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }

    .features-bar { margin-top: -30px; }
    .features-bar .container { padding: 30px 20px; }

    .section-padding { padding: 60px 0; }
    .section-title { font-size: 2rem; }

    .about-content { padding-left: 0; margin-top: 60px; }
    .about-experience-badge { bottom: -15px; right: 10px; width: 110px; height: 110px; }
    .about-experience-badge .number { font-size: 2rem; }

    .stat-number { font-size: 2.5rem; }

    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .hero-swiper { height: 60vh; min-height: 400px; }
    .hero-title { font-size: 1.8rem; }
    .hero-badge { font-size: 0.72rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; justify-content: center; }
    .hero-decoration { display: none; }

    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .section-header { margin-bottom: 40px; }

    .stat-item { padding: 20px 10px; }
    .stat-number { font-size: 2rem; }

    .page-banner { padding: 80px 0 40px; }
    .page-banner h1 { font-size: 1.8rem; }

    .footer-top { padding: 50px 0 30px; }
    .footer-bottom-links { justify-content: flex-start; margin-top: 10px; }

    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 80px; right: 15px; }
    .whatsapp-tooltip { display: none; }
    .scroll-top { right: 15px; bottom: 20px; width: 40px; height: 40px; }
}

@media (max-width: 575px) {
    .feature-item { flex-direction: column; text-align: center; align-items: center; }
}

/* =====================================================
   PLACEHOLDER IMAGES
   ===================================================== */
.placeholder-img {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 2rem;
}

/* =====================================================
   HİZMETLER - PRO KARTLAR
   ===================================================== */
.service-card-pro {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px 35px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-pro:hover::before {
    transform: scaleX(1);
}

.service-card-pro-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.service-card-pro:hover .service-card-pro-number {
    color: rgba(26, 66, 150, 0.08);
}

.service-card-pro-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(26, 66, 150, 0.1) 0%, rgba(26, 66, 150, 0.04) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card-pro:hover .service-card-pro-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

.service-card-pro h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-card-pro p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card-pro-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.service-card-pro-link:hover {
    color: var(--primary-light);
    gap: 8px;
}

.service-card-pro-link i {
    font-size: 1.3rem;
    transition: var(--transition);
}

/* =====================================================
   SÜREÇ ADIMLARI
   ===================================================== */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 auto 20px;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(26, 66, 150, 0.25);
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.process-step-arrow {
    position: absolute;
    right: -24px;
    top: 90px;
    color: var(--gray-300);
    font-size: 1.5rem;
    z-index: 2;
}

/* =====================================================
   AVANTAJLAR LİSTESİ
   ===================================================== */
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.advantage-item:hover {
    background: var(--gray-50);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(26, 66, 150, 0.1), rgba(26, 66, 150, 0.04));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.advantage-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.advantage-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Avantaj İstatistik Kartları */
.adv-stat-card {
    border-radius: var(--radius-lg);
    padding: 35px 24px;
    color: var(--white);
    text-align: center;
    transition: var(--transition);
}

.adv-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.adv-stat-card i {
    font-size: 2rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 12px;
}

.adv-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
}

.adv-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   SSS ACCORDION
   ===================================================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-800);
    padding: 18px 24px;
    background: var(--white);
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(26, 66, 150, 0.04);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    width: 1.1rem;
    height: 1.1rem;
    background-size: 1.1rem;
}

.faq-accordion .accordion-body {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =====================================================
   BLOG ÖNE ÇIKAN YAZI
   ===================================================== */
.featured-post {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.featured-post-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.03);
}

.featured-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.featured-post-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--secondary-dark);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.featured-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 14px;
}

.featured-post-content h2 a {
    color: inherit;
    transition: var(--transition-fast);
}

.featured-post-content h2 a:hover {
    color: var(--primary);
}

.featured-post-content p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 0;
}

.featured-post-meta {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.featured-post-meta span {
    font-size: 0.82rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Blog Kart Footer */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}

.blog-card:hover .blog-read-more {
    gap: 6px;
}

.blog-view-count {
    font-size: 0.78rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   BLOG SİDEBAR
   ===================================================== */
.blog-sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-title i {
    color: var(--primary);
    font-size: 1rem;
}

/* Kategori Listesi */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    margin-bottom: 4px;
}

.sidebar-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.sidebar-category-list li a:hover,
.sidebar-category-list li.active a {
    background: rgba(26, 66, 150, 0.06);
    color: var(--primary);
    font-weight: 600;
}

.category-count {
    background: var(--gray-100);
    color: var(--gray-500);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.sidebar-category-list li.active .category-count,
.sidebar-category-list li a:hover .category-count {
    background: var(--primary);
    color: var(--white);
}

/* Popüler Yazılar */
.sidebar-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    transition: var(--transition-fast);
}

.sidebar-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-popular-item:first-child {
    padding-top: 0;
}

.popular-item-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-200);
    font-family: var(--font-heading);
    line-height: 1;
    min-width: 30px;
    transition: var(--transition);
}

.sidebar-popular-item:hover .popular-item-number {
    color: var(--primary);
}

.popular-item-content h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}

.sidebar-popular-item:hover .popular-item-content h5 {
    color: var(--primary);
}

.popular-item-meta {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar CTA */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
}

.sidebar-cta-content {
    text-align: center;
    color: var(--white);
}

.sidebar-cta-content > i {
    font-size: 2.5rem;
    opacity: 0.6;
    display: block;
    margin-bottom: 14px;
}

.sidebar-cta-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.sidebar-cta-content p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    transition: var(--transition);
}

.sidebar-cta-phone:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

/* Sidebar Hizmet Listesi */
.sidebar-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-service-list li {
    margin-bottom: 4px;
}

.sidebar-service-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.sidebar-service-list li a:hover {
    background: rgba(26, 66, 150, 0.06);
    color: var(--primary);
    font-weight: 600;
}

.sidebar-service-list li a i:first-child {
    color: var(--primary);
    font-size: 1.1rem;
}

/* =====================================================
   HİZMET DETAY
   ===================================================== */
.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.service-detail-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.service-detail-cta {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 40px;
    border: 1px solid var(--gray-200);
}

.service-detail-cta h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.service-detail-cta p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* =====================================================
   YAZI DETAY
   ===================================================== */
.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.article-category-badge {
    background: rgba(26, 66, 150, 0.08);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.article-category-badge:hover {
    background: var(--primary);
    color: var(--white);
}

.article-meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.article-meta-items span {
    font-size: 0.84rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-featured-image img {
    border-radius: var(--radius-lg);
}

/* Etiketler */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-100);
}

.article-tags > i {
    color: var(--gray-400);
    font-size: 1rem;
}

.article-tag {
    background: var(--gray-50);
    color: var(--gray-600);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.article-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Paylaşım */
.article-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 0;
}

.article-share-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.article-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--white);
}

.share-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-facebook { background: #1877F2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25D366; }
.share-linkedin { background: #0A66C2; }

/* İlgili Yazılar */
.related-posts-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid var(--gray-100);
}

/* =====================================================
   İÇERİK BODY (Blog/Hizmet detay içerikleri)
   ===================================================== */
.content-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.content-body h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}

.content-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 30px 0 14px;
}

.content-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 24px 0 12px;
}

.content-body p {
    margin-bottom: 18px;
    line-height: 1.9;
}

.content-body ul, .content-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-body li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.content-body strong {
    color: var(--gray-900);
    font-weight: 700;
}

.content-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--gray-600);
}

.content-body img {
    border-radius: var(--radius);
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.content-body table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.88rem;
    text-align: left;
}

.content-body table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.content-body table tr:hover td {
    background: var(--gray-50);
}

.content-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-body a:hover {
    color: var(--primary-light);
}

/* Sayfa içerik (sayfa.php genel) */
.page-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

/* =====================================================
   PAGINATION GELİŞMİŞ
   ===================================================== */
.pagination .page-link {
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26, 66, 150, 0.25);
}

/* =====================================================
   RESPONSİVE - YENİ EKLENTİLER
   ===================================================== */
@media (max-width: 991px) {
    .featured-post-content { padding: 30px; }
    .featured-post-content h2 { font-size: 1.3rem; }
    .service-detail-header { flex-direction: column; }
    .service-detail-title { font-size: 1.5rem; }
    .process-step-arrow { display: none !important; }
}

@media (max-width: 767px) {
    .featured-post-image { min-height: 250px; }
    .featured-post-content { padding: 24px; }
    .featured-post-content h2 { font-size: 1.15rem; }
    .featured-post-meta { flex-direction: column; gap: 8px; }
    .article-meta-bar { flex-direction: column; align-items: flex-start; }
    .article-share { flex-direction: column; align-items: flex-start; }
    .blog-sidebar-widget { padding: 22px; }
    .page-content { padding: 24px; }
    .service-detail-cta { text-align: center; }
    .service-detail-cta .text-md-end { text-align: center !important; margin-top: 16px; }
    .adv-stat-card { padding: 24px 16px; }
    .adv-stat-number { font-size: 1.8rem; }
}
