/* ==============================================
   NEXUS AJANS TEMASI - ANA STİL DOSYASI (DÜZENLENMİŞ)
   ============================================== */

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

:root {
    --primary: #0f1b33;
    --primary-light: #1a2d4a;
    --secondary: #f5b041;
    --secondary-light: #f7c66b;
    --accent: #e67e22;
    --white: #ffffff;
    --light-bg: #f4f6fa;
    --gray: #6c7a8a;
    --dark: #1a1a2e;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: #2d3436;
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(245, 176, 65, 0.35);
}
.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 176, 65, 0.45);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-dark {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 27, 51, 0.3);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-detail:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 26, 47, 0.2);
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-cart:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 176, 65, 0.3);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.5rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-submit:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 176, 65, 0.3);
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ==============================================
   HEADER
   ============================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
    transition: all 0.35s ease;
    padding: 12px 0;
}
header.scrolled {
    background: var(--primary) !important;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: var(--white) !important;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
}
.logo span {
    color: var(--secondary) !important;
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-links li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 14px;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    padding: 6px 18px !important;
    border-radius: 50px;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--secondary-light) !important;
    transform: translateY(-2px);
    color: var(--primary) !important;
}
.nav-cta::after {
    display: none !important;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown > a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
}
.dropdown > a i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
    margin-left: 4px;
}
.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 160px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1001;
    padding: 6px 0;
    animation: fadeDown 0.25s ease;
}
.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--dark) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
    background: var(--white) !important;
}
.dropdown-content a i {
    width: 18px;
    color: var(--secondary);
    font-size: 0.95rem;
}
.dropdown-content a:hover {
    background: var(--light-bg) !important;
    border-left-color: var(--secondary);
    color: var(--primary) !important;
}
.dropdown:hover .dropdown-content {
    display: block;
}
@keyframes fadeDown {
    0% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white) !important;
    border-radius: 4px;
    transition: var(--transition);
}
.hamburger:hover span {
    background: var(--secondary) !important;
}

/* ===== MOBİL HEADER ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary) !important;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 12px 12px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        display: block;
        width: 100%;
    }
    .nav-links a {
        padding: 10px 0;
        font-size: 1rem;
        display: block;
        white-space: normal;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    .nav-links a::after {
        left: 0;
        transform: none;
    }
    .nav-cta {
        background: var(--secondary) !important;
        color: var(--primary) !important;
        padding: 8px 20px !important;
        border-radius: 50px;
        text-align: center;
        display: inline-block;
        width: auto;
        align-self: flex-start;
    }
    .hamburger {
        display: flex;
    }
    /* Mobile Dropdown */
    .dropdown-content {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05) !important;
        box-shadow: none;
        border-radius: 8px;
        padding: 4px 0;
        margin-top: 4px;
        width: 100%;
    }
    .dropdown-content a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 8px 16px;
        border-left-color: transparent;
        background: transparent !important;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        border-left-color: var(--secondary);
        color: var(--white) !important;
    }
    .dropdown > a i.fa-chevron-down {
        display: none;
    }
    .dropdown:hover .dropdown-content {
        display: none;
    }
    .dropdown.open .dropdown-content {
        display: block !important;
    }
}

/* ==============================================
   HERO SLIDER
   ============================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: var(--primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.slide.active {
    opacity: 1;
}
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 51, 0.7);
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
    animation: fadeUp 1s ease forwards;
}
.slide-content .tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.slide-content h1 span {
    color: var(--secondary);
}
.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 520px;
}
.slide-content .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}
.slider-controls button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.slider-controls button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}
.slider-controls button:hover {
    border-color: var(--secondary);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.slider-arrows button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrows button:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.section-header .subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.section-header h2 span {
    color: var(--secondary);
}
.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* ==============================================
   HİZMETLER SAYFASI - 2 SÜTUN + KATEGORİ SİDEBAR (SAĞ)
   ============================================== */

/* ----- Hizmetler Layout ----- */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    margin-top: 20px;
    align-items: start; /* Üstten hizalama */
}

.services-main {
    min-width: 0;
    order: 1;
}

/* ----- Services Grid - 2 Sütun ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0; /* margin: 40px 0; kaldırıldı */
}

/* ----- Hizmetler Sidebar (SAĞ) ----- */
.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 2;
    position: sticky;
    top: 100px; /* Header yüksekliğine göre ayarlayın */
    align-self: start; /* Üstten hizalama */
}

/* ----- Service Card (Gelişmiş) ----- */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0 0 20px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--secondary);
}

/* Service Image */
.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--light-bg);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

/* Service Icon */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(-8deg) scale(1.05);
    background: var(--secondary);
}

.service-icon {
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--primary);
}

/* Category Tag */
.service-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(245, 176, 65, 0.12);
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-card .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
}

.service-card .btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateX(4px);
}

/* ----- Sidebar Card ----- */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-bg);
}

.sidebar-card h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

/* ----- Category List ----- */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-list li a i {
    width: 18px;
    color: var(--secondary);
    font-size: 0.85rem;
}

.category-list li a .count {
    margin-left: auto;
    background: var(--light-bg);
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

.category-list li a:hover {
    background: rgba(245, 176, 65, 0.08);
    color: var(--primary);
}

.category-list li a.active {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}

.category-list li a.active i {
    color: var(--primary);
}

.category-list li a.active .count {
    background: rgba(15, 27, 51, 0.15);
    color: var(--primary);
}

/* ----- İletişim Kartı (Sidebar'da) ----- */
.contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
}

.contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.contact-card h3 i {
    color: var(--secondary);
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-card .btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* ----- Pagination (Sayfalama) ----- */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 30px;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--light-bg);
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
}

.page-item .page-link:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
    background: #f1f5f9;
}

.pagination-info {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

/* ----- CTA Box ----- */
.services-bottom-cta {
    margin: 50px 0 20px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,176,65,0.15), transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 30px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245,176,65,0.3);
}

/* ==============================================
   RESPONSIVE - HİZMETLER SAYFASI
   ============================================== */

@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr 240px;
        gap: 25px;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
        position: static; /* Sticky kaldırıldı */
    }
    
    .services-main {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
        order: 2;
        position: static;
    }
    
    .services-main {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-image-wrapper {
        height: 160px;
    }
    
    .cta-box {
        padding: 35px 20px;
    }
    
    .cta-box h2 {
        font-size: 22px;
    }
    
    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-image-wrapper {
        height: 140px;
    }
    
    .service-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .service-icon {
        font-size: 26px;
    }
    
    .pagination-container {
        gap: 10px;
    }
    
    .pagination-info {
        font-size: 12px;
    }
    
    .cta-box .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
/* İletişim Kartı (Sidebar'da) */
.contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
}

.contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.contact-card h3 i {
    color: var(--secondary);
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-card .btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* ----- Pagination (Sayfalama) ----- */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 20px;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--light-bg);
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
}

.page-item .page-link:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
    background: #f1f5f9;
}

.pagination-info {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

/* ----- CTA Box ----- */
.services-bottom-cta {
    margin: 50px 0 20px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,176,65,0.15), transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 30px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245,176,65,0.3);
}

/* ==============================================
   RESPONSIVE - HİZMETLER SAYFASI
   ============================================== */

@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr 240px;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
    }
    
    .services-main {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
        order: 2;
    }
    
    .services-main {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-image-wrapper {
        height: 160px;
    }
    
    .cta-box {
        padding: 35px 20px;
    }
    
    .cta-box h2 {
        font-size: 22px;
    }
    
    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-image-wrapper {
        height: 140px;
    }
    
    .service-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .service-icon {
        font-size: 26px;
    }
    
    .pagination-container {
        gap: 10px;
    }
    
    .pagination-info {
        font-size: 12px;
    }
    
    .cta-box .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
/* ==============================================
   ÜRÜNLER SAYFASI - 2 SÜTUN + KATEGORİ SİDEBAR (SAĞ) - STICKY
   ============================================== */

/* ----- Ürünler Layout ----- */
.products-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    margin-top: 20px;
    align-items: start; /* Üstten hizalama */
}

/* ----- Ana Ürün Listesi (SOL) ----- */
.products-main {
    min-width: 0;
    order: 1;
}

.products-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ----- Sidebar (SAĞ - Kategori Listesi) - STICKY ----- */
.products-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 2;
    position: sticky;
    top: 100px; /* Header yüksekliğine göre ayarlayın */
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto; /* Çok uzun sidebar için scroll */
}

/* Sidebar scrollbar stil */
.products-sidebar::-webkit-scrollbar {
    width: 4px;
}

.products-sidebar::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 4px;
}

.products-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* ----- Ürün Kartı ----- */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(11, 26, 47, 0.10);
    border-color: var(--secondary);
}

.product-card .product-image {
    height: 200px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-image .no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2.5rem;
    color: #c0cbd8;
}

.product-card .product-image .no-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.product-card .product-image .no-image p {
    font-size: 0.9rem;
    color: #4a5f78;
}

.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .discount-badge {
    background: #e74c3c;
    color: #fff;
    left: auto;
    right: 12px;
}

.product-card .product-body {
    padding: 1.2rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.product-card .product-category i {
    margin-right: 4px;
}

.product-card .product-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 44px;
}

.product-card .product-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
}

.product-card .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.product-card .product-price .old-price {
    font-size: 0.9rem;
    color: #8a9bb0;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.5rem;
}

.product-card .product-delivery {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.product-card .product-delivery i {
    color: var(--secondary);
    margin-right: 4px;
}

.product-card .btn-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.product-card .btn-group .btn-detail,
.product-card .btn-group .btn-cart {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-width: 80px;
}

/* ----- Sidebar (Kategori Listesi) ----- */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-bg);
}

.sidebar-card h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-list li a i {
    width: 18px;
    color: var(--secondary);
    font-size: 0.85rem;
}

.category-list li a .count {
    margin-left: auto;
    background: var(--light-bg);
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

.category-list li a:hover {
    background: rgba(245, 176, 65, 0.08);
    color: var(--primary);
}

.category-list li a.active {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}

.category-list li a.active i {
    color: var(--primary);
}

.category-list li a.active .count {
    background: rgba(15, 27, 51, 0.15);
    color: var(--primary);
}

/* İletişim Kartı (Sidebar'da) */
.contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
}

.contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.contact-card h3 i {
    color: var(--secondary);
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-card .btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* ==============================================
   RESPONSIVE - ÜRÜNLER SAYFASI
   ============================================== */

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr 240px;
        gap: 25px;
    }
    
    .products-grid-2col {
        gap: 20px;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .products-sidebar {
        top: 90px;
    }
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
        position: static; /* Tablet'de sticky kaldırıldı */
        max-height: none;
        overflow-y: visible;
    }
    
    .products-main {
        order: 1;
    }
    
    .products-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card .product-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .products-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
        order: 2;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .products-main {
        order: 1;
    }
    
    .products-grid-2col {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .product-card .product-body {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .product-card .product-body h3 {
        font-size: 1rem;
        min-height: 36px;
    }
    
    .product-card .product-description {
        font-size: 0.85rem;
        min-height: 36px;
    }
    
    .product-card .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .product-card .btn-group .btn-detail,
    .product-card .btn-group .btn-cart {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card .product-image {
        height: 160px;
    }
    
    .product-card .product-body {
        padding: 0.8rem 1rem 1rem;
    }
    
    .product-card .product-body h3 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .product-card .product-price {
        font-size: 1rem;
    }
    
    .category-list li a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .sidebar-card h3 {
        font-size: 1rem;
    }
}

/* İletişim Kartı (Sidebar'da) */
.contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
}

.contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.contact-card h3 i {
    color: var(--secondary);
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-card .btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* ==============================================
   RESPONSIVE - ÜRÜNLER SAYFASI
   ============================================== */

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr 240px;
        gap: 25px;
    }
    
    .products-grid-2col {
        gap: 20px;
    }
    
    .product-card .product-image {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
    }
    
    .products-main {
        order: 1;
    }
    
    .products-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card .product-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .products-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
        order: 2;
    }
    
    .products-main {
        order: 1;
    }
    
    .products-grid-2col {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .product-card .product-body {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .product-card .product-body h3 {
        font-size: 1rem;
        min-height: 36px;
    }
    
    .product-card .product-description {
        font-size: 0.85rem;
        min-height: 36px;
    }
    
    .product-card .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .product-card .btn-group .btn-detail,
    .product-card .btn-group .btn-cart {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card .product-image {
        height: 160px;
    }
    
    .product-card .product-body {
        padding: 0.8rem 1rem 1rem;
    }
    
    .product-card .product-body h3 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .product-card .product-price {
        font-size: 1rem;
    }
    
    .category-list li a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .sidebar-card h3 {
        font-size: 1rem;
    }
}

/* ==============================================
   BLOG SAYFASI - 2 SÜTUN + KATEGORİ SİDEBAR (SAĞ) - STICKY
   ============================================== */

/* ----- Blog Layout ----- */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    margin-top: 20px;
    align-items: start; /* Üstten hizalama */
}

.blog-main {
    min-width: 0;
    order: 1;
}

.blog-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ----- Blog Kartı ----- */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(11, 26, 47, 0.10);
    border-color: var(--secondary);
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card .blog-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: #c0cbd8;
}

.blog-card .blog-image .no-image i {
    color: var(--secondary);
}

.blog-card .blog-body {
    padding: 1.2rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #8a9bb0;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.blog-card .blog-meta i {
    color: var(--secondary);
    margin-right: 4px;
}

.blog-card .blog-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 48px;
}

.blog-card .blog-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-card .read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(6px);
}

/* ----- Blog Sidebar (Kategori Listesi) ----- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 2;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Sidebar scrollbar */
.blog-sidebar::-webkit-scrollbar {
    width: 4px;
}

.blog-sidebar::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 4px;
}

.blog-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* ----- Sidebar Card ----- */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-bg);
}

.sidebar-card h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

/* ----- Category List ----- */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-list li a i {
    width: 18px;
    color: var(--secondary);
    font-size: 0.85rem;
}

.category-list li a .count {
    margin-left: auto;
    background: var(--light-bg);
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

.category-list li a:hover {
    background: rgba(245, 176, 65, 0.08);
    color: var(--primary);
}

.category-list li a.active {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}

.category-list li a.active i {
    color: var(--primary);
}

.category-list li a.active .count {
    background: rgba(15, 27, 51, 0.15);
    color: var(--primary);
}

/* ----- Son Yazılar (Resimli) ----- */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 10px;
}

.recent-posts li:last-child {
    margin-bottom: 0;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.recent-post-item:hover {
    background: rgba(245, 176, 65, 0.06);
    border-color: rgba(245, 176, 65, 0.15);
    transform: translateX(4px);
}

.recent-post-image {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.05);
}

.recent-post-image .no-image-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2f7, #dce3ed);
    color: #8a9bb0;
    font-size: 1.5rem;
}

.recent-post-image .no-image-small i {
    color: var(--secondary);
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 3px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 38px;
}

.recent-post-content .post-date {
    font-size: 0.7rem;
    color: #8a9bb0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recent-post-content .post-date i {
    font-size: 0.65rem;
    color: var(--secondary);
}

/* ----- Pagination (Sayfalama) ----- */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 20px;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--light-bg);
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
}

.page-item .page-link:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
    background: #f1f5f9;
}

.pagination-info {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

/* ==============================================
   RESPONSIVE - BLOG SAYFASI
   ============================================== */

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 240px;
        gap: 25px;
    }
    
    .blog-grid-2col {
        gap: 20px;
    }
    
    .blog-card .blog-image {
        height: 180px;
    }
    
    .blog-sidebar {
        top: 90px;
    }
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        order: 2;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .blog-main {
        order: 1;
    }
    
    .blog-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card .blog-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 15px;
        order: 2;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .blog-main {
        order: 1;
    }
    
    .blog-grid-2col {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-card .blog-image {
        height: 180px;
    }
    
    .blog-card .blog-body {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .blog-card .blog-body h3 {
        font-size: 1rem;
        min-height: 36px;
    }
    
    .blog-card .blog-body p {
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .sidebar-card {
        padding: 1rem;
    }

    .recent-post-image {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
    
    .recent-post-content h4 {
        font-size: 0.8rem;
        max-height: 34px;
    }
    
    .recent-post-content .post-date {
        font-size: 0.65rem;
    }
    
    .recent-post-item {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .blog-grid-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .blog-card .blog-image {
        height: 160px;
    }
    
    .blog-card .blog-body {
        padding: 0.8rem 1rem 1rem;
    }
    
    .blog-card .blog-body h3 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .category-list li a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .sidebar-card h3 {
        font-size: 1rem;
    }

    .recent-post-image {
        width: 45px;
        min-width: 45px;
        height: 45px;
    }
    
    .recent-post-content h4 {
        font-size: 0.75rem;
        max-height: 30px;
    }
    
    .recent-post-item {
        padding: 5px 6px;
        gap: 8px;
    }
}

/* ==============================================
   BLOG DETAY - BENZER YAZILAR
   ============================================== */
.similar-blogs {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eef2f7;
}

.similar-blogs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1a2f;
    margin-bottom: 1.8rem;
    text-align: center;
    position: relative;
}

.similar-blogs h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 8px auto 0;
    border-radius: 4px;
}

.similar-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.similar-blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.similar-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(11, 26, 47, 0.10);
    border-color: var(--secondary);
}

.similar-blog-card .blog-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #eef2f7;
    position: relative;
}

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

.similar-blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.similar-blog-card .no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    background: linear-gradient(135deg, #eef2f7, #dce3ed);
    color: #8a9bb0;
    font-size: 2.5rem;
}

.similar-blog-card .no-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.similar-blog-card .no-image span {
    font-size: 0.85rem;
    font-weight: 500;
}

.similar-blog-card .blog-body {
    padding: 1.2rem 1.5rem 1.5rem;
}

.similar-blog-card .blog-body .blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #8a9bb0;
    margin-bottom: 0.5rem;
}

.similar-blog-card .blog-body .blog-meta i {
    color: var(--secondary);
    margin-right: 4px;
}

.similar-blog-card .blog-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0b1a2f;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
}

.similar-blog-card .blog-body p {
    font-size: 0.9rem;
    color: #4a5f78;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
}

.similar-blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.similar-blog-card .read-more i {
    transition: transform 0.3s ease;
}

.similar-blog-card:hover .read-more i {
    transform: translateX(6px);
}

/* ==============================================
   RESPONSIVE - BENZER YAZILAR
   ============================================== */

@media (max-width: 992px) {
    .similar-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .similar-blog-card .blog-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .similar-blogs {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .similar-blogs h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .similar-blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .similar-blog-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: 12px;
    }
    
    .similar-blog-card .blog-image {
        width: 120px;
        min-width: 120px;
        height: 120px;
        flex-shrink: 0;
    }
    
    .similar-blog-card .no-image {
        height: 120px;
        width: 120px;
        min-width: 120px;
        font-size: 1.8rem;
    }
    
    .similar-blog-card .no-image i {
        font-size: 2rem;
    }
    
    .similar-blog-card .blog-body {
        padding: 1rem 1.2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .similar-blog-card .blog-body h4 {
        font-size: 0.95rem;
        min-height: auto;
        -webkit-line-clamp: 2;
    }
    
    .similar-blog-card .blog-body p {
        font-size: 0.85rem;
        min-height: auto;
        -webkit-line-clamp: 2;
        margin-bottom: 0.5rem;
    }
    
    .similar-blog-card .blog-body .blog-meta {
        font-size: 0.7rem;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .similar-blog-card {
        flex-direction: column;
    }
    
    .similar-blog-card .blog-image {
        width: 100%;
        min-width: unset;
        height: 160px;
    }
    
    .similar-blog-card .no-image {
        width: 100%;
        min-width: unset;
        height: 160px;
    }
    
    .similar-blog-card .blog-body {
        padding: 0.8rem 1rem 1rem;
    }
    
    .similar-blog-card .blog-body h4 {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .similar-blog-card .blog-body p {
        font-size: 0.8rem;
        min-height: auto;
    }
}

/* ==============================================
   PAGE HERO
   ============================================== */
.page-hero-css {
    width: 100%;
    margin: 0;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(135deg, #0b1a2f 0%, #1a3355 50%, #2a1a4a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 26, 47, 0.15);
    border-radius: var(--radius);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.page-hero-css::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 184, 27, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-css::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 184, 27, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-css-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(249, 184, 27, 0.15);
    border-radius: 24px;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(249, 184, 27, 0.2);
    transition: var(--transition);
}

.page-hero-icon:hover {
    transform: scale(1.05) rotate(-5deg);
    background: rgba(249, 184, 27, 0.25);
}

.page-hero-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.page-hero-css-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
    color: var(--white);
}

.page-hero-css-content h1 span {
    color: var(--secondary);
}

.page-hero-css-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.page-hero-stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.page-hero-stats span:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.page-hero-stats span i {
    color: var(--secondary);
    font-size: 1rem;
}

/* ==============================================
   PAGE CONTENT
   ============================================== */
.page-content {
    padding: 2rem 0 4rem 0;
    background: #f8fafc;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    margin: 0 0 2.5rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li a {
    color: #1a3355;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: #eef2f7;
}

.breadcrumb li a:hover {
    background: #dce3ed;
    color: #0b1a2f;
}

.breadcrumb li .current {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    background: #0b1a2f;
    border-radius: 30px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: #8a9bb0;
    margin: 0 0.2rem;
}

/* Alert */
.alert-info {
    background: #e8f0fe;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: #1a3355;
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 5px solid var(--secondary);
    margin: 1rem 0;
}

.alert-info i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 1.2rem;
}

/* ==============================================
   SERVICE DETAIL
   ============================================== */
.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.service-detail-image {
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f7;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.service-detail-image .no-image {
    font-size: 4rem;
    color: #c0cbd8;
    text-align: center;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1a2f;
    margin-bottom: 0.5rem;
}

.service-detail-content .service-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef2f7;
}

.service-detail-content .service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #4a5f78;
}

.service-detail-content .service-meta i {
    color: var(--secondary);
}

.service-detail-content .service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 2rem;
}

.service-detail-content .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail-content .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f3f8;
    color: #2d3436;
}

.service-detail-content .service-features li:last-child {
    border-bottom: none;
}

.service-detail-content .service-features li i {
    color: var(--secondary);
    width: 20px;
}

.service-detail-content .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Other services */
.other-services {
    margin-top: 3rem;
}

.other-services h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1a2f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.other-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.other-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 26, 47, 0.08);
    border-color: rgba(245, 176, 65, 0.2);
}

.other-service-card .icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.other-service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b1a2f;
    margin-bottom: 0.4rem;
}

.other-service-card p {
    font-size: 0.9rem;
    color: #4a5f78;
}

/* ==============================================
   BLOG DETAIL
   ============================================== */
.blog-detail-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f7;
    margin-bottom: 2rem;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-image .no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
    color: #c0cbd8;
}

.blog-detail-image .no-image p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #4a5f78;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-header .blog-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #4a5f78;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

.blog-detail-header .blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-header .blog-meta i {
    color: var(--secondary);
}

.blog-detail-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0b1a2f;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.blog-detail-header .blog-excerpt {
    font-size: 1.1rem;
    color: #4a5f78;
    line-height: 1.6;
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3436;
}

.blog-detail-content p {
    margin-bottom: 1.2rem;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0b1a2f;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #1a3355;
}

.blog-detail-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eef2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-detail-footer .tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-detail-footer .tags span {
    background: #eef2f7;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #1a3355;
}

.blog-detail-footer .share {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.blog-detail-footer .share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.blog-detail-footer .share a:hover {
    transform: translateY(-3px);
}

.blog-detail-footer .share .facebook { background: #1877f2; }
.blog-detail-footer .share .twitter { background: #000000; }
.blog-detail-footer .share .linkedin { background: #0a66c2; }
.blog-detail-footer .share .whatsapp { background: #25d366; }

/* ==============================================
   CONTACT
   ============================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-info-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1a2f;
    margin-bottom: 0.5rem;
}

.contact-info-section .subtitle {
    color: #4a5f78;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eef2f7;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(245, 176, 65, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-info-item .info h4 {
    font-weight: 600;
    color: #0b1a2f;
    margin-bottom: 0.2rem;
}

.contact-info-item .info p {
    color: #4a5f78;
    font-size: 0.95rem;
}

.contact-info-item .info a {
    color: #4a5f78;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item .info a:hover {
    color: var(--secondary);
}

/* Social */
.social-section {
    margin-top: 1.5rem;
}

.social-section h4 {
    font-weight: 600;
    color: #0b1a2f;
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links .facebook { background: #1877f2; }
.social-links .twitter { background: #000000; }
.social-links .linkedin { background: #0a66c2; }
.social-links .instagram { background: #e4405f; }
.social-links .youtube { background: #ff0000; }
.social-links .whatsapp { background: #25d366; }

/* Contact form */
.contact-form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1a2f;
    margin-bottom: 0.5rem;
}

.contact-form-section .subtitle {
    color: #4a5f78;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0b1a2f;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #dc3545;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #eef2f7;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 176, 65, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

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

/* Map */
.map-section {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ==============================================
   PAGE BODY
   ============================================== */
.page-body {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.page-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.page-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.page-content-inner {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3436;
}

.page-content-inner p {
    margin-bottom: 1.2rem;
}

.page-content-inner h2,
.page-content-inner h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0b1a2f;
}

.page-content-inner ul,
.page-content-inner ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-content-inner li {
    margin-bottom: 0.5rem;
}

.page-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.page-content-inner blockquote {
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #1a3355;
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand .logo span {
    color: var(--secondary);
}

.footer-brand .logo img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    max-width: 320px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-brand .socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-brand .socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    font-size: 1rem;
}

.footer-brand .socials a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-col ul li i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==============================================
   RESPONSIVE - GENEL
   ============================================== */
@media (max-width: 1024px) {
    .slide-content h1 { font-size: 2.8rem; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-wrapper,
    .product-detail-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-detail-image,
    .product-detail-image {
        min-height: 250px;
    }
    .service-detail-image img,
    .product-detail-image img {
        min-height: 250px;
    }
}

@media (max-width: 992px) {
    .page-hero-css-content h1 {
        font-size: 2.2rem;
    }
    .blog-detail-image {
        height: 300px;
    }
    .blog-detail-header h1 {
        font-size: 2rem;
    }
    .service-detail-wrapper,
    .product-detail-wrapper {
        padding: 2rem;
    }
    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
    .counter-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .counter-item h3 { font-size: 2.4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .slider-arrows { display: none; }
    .about-features { grid-template-columns: 1fr; }

    .page-hero-css {
        padding: 2.5rem 1rem;
        min-height: 200px;
    }
    .page-hero-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }
    .page-hero-icon i {
        font-size: 1.8rem;
    }
    .page-hero-css-content h1 {
        font-size: 2rem;
    }
    .page-hero-css-content p {
        font-size: 1rem;
    }
    .page-hero-stats {
        gap: 0.8rem;
    }
    .page-hero-stats span {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .blog-card .blog-body {
        padding: 1.2rem;
    }
    .blog-card .blog-body h3 {
        font-size: 1.1rem;
    }

    .blog-detail-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .blog-detail-image {
        height: 220px;
    }
    .blog-detail-header h1 {
        font-size: 1.6rem;
    }
    .blog-detail-content {
        font-size: 0.95rem;
    }
    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .product-detail-image {
        min-height: 200px;
    }
    .product-detail-image img {
        min-height: 200px;
    }
    .product-detail-content h2 {
        font-size: 1.5rem;
    }
    .product-detail-content .product-price {
        font-size: 1.6rem;
    }
    .product-detail-content .product-description {
        font-size: 0.95rem;
    }
    .similar-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .map-section iframe {
        height: 250px;
    }

    .page-body {
        padding: 1.5rem;
        border-radius: 16px;
    }
    .page-content-inner {
        font-size: 0.95rem;
    }

    .breadcrumb li a,
    .breadcrumb li .current {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

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

@media (max-width: 480px) {
    .slide-content h1 { font-size: 1.6rem; }
    .btn-group { flex-direction: column; align-items: flex-start; }
    .counter-grid { grid-template-columns: 1fr 1fr; }
    .logo { font-size: 1.4rem; }
    .logo img { height: 40px; }
    header .container { padding: 0 16px; }

    .page-hero-css {
        padding: 2rem 0.8rem;
        min-height: 170px;
        border-radius: 8px;
    }
    .page-hero-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    .page-hero-icon i {
        font-size: 1.5rem;
    }
    .page-hero-css-content h1 {
        font-size: 1.5rem;
    }
    .page-hero-css-content p {
        font-size: 0.9rem;
    }
    .page-hero-stats {
        gap: 0.5rem;
    }
    .page-hero-stats span {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

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

    .blog-detail-wrapper {
        padding: 1rem;
        border-radius: 12px;
    }
    .blog-detail-image {
        height: 180px;
        border-radius: 12px;
    }
    .blog-detail-header h1 {
        font-size: 1.3rem;
    }
    .blog-detail-header .blog-meta {
        gap: 0.8rem;
        font-size: 0.8rem;
    }

    .product-detail-wrapper {
        padding: 1rem;
        border-radius: 12px;
    }
    .product-detail-image {
        min-height: 180px;
    }
    .product-detail-image img {
        min-height: 180px;
    }
    .product-detail-content h2 {
        font-size: 1.3rem;
    }
    .product-detail-content .product-price {
        font-size: 1.3rem;
    }
    .product-detail-content .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .product-detail-content .btn-group a {
        justify-content: center;
        width: 100%;
    }
    .similar-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .similar-products h3 {
        font-size: 1.4rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 1rem;
        border-radius: 12px;
    }
    .contact-info-item {
        padding: 0.8rem 0;
    }
    .contact-info-item .icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    .map-section iframe {
        height: 200px;
    }

    .page-body {
        padding: 1rem;
        border-radius: 12px;
    }
    .page-image {
        border-radius: 12px;
    }

    .service-detail-wrapper {
        padding: 1rem;
        border-radius: 12px;
    }
    .service-detail-content h2 {
        font-size: 1.3rem;
    }
    .service-detail-content .service-meta {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    .service-detail-content .btn-group {
        flex-direction: column;
        width: 100%;
    }
    .service-detail-content .btn-group a {
        justify-content: center;
        width: 100%;
    }
    .other-services-grid {
        grid-template-columns: 1fr;
    }
    .other-services h3 {
        font-size: 1.4rem;
    }
}
/* ===== ANİMASYONLAR ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== SAYAÇ ===== */
.counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    color: var(--white);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.counter-item p {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 500;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .counter-item h3 {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .counter-item h3 {
        font-size: 2rem;
    }
}

/* ===== HAKKIMIZDA ===== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    background: var(--light-bg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-content h2 span {
    color: var(--secondary);
}

.about-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
    padding: 0;
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
}

.about-features li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image {
        min-height: 300px;
    }
    .about-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
}

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

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(11, 26, 47, 0.10);
    border-color: var(--secondary);
}

.blog-img {
    overflow: hidden;
    height: 220px;
    background: var(--light-bg);
}

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

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

.blog-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #8a9bb0;
    margin-bottom: 0.8rem;
}

.blog-meta i {
    color: var(--secondary);
    margin-right: 4px;
}

.blog-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(6px);
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-img {
        height: 200px;
    }
}

.text-center {
    text-align: center;
}
.mt-4 {
    margin-top: 2rem;
}
/* ==============================================
   ANA SAYFA - HİZMETLER BÖLÜMÜ
   ============================================== */

/* ----- Hizmetler Grid (Anasayfa) ----- */
#hizmetler {
    padding: 80px 0;
    background: var(--white);
}

#hizmetler .services-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

#hizmetler .service-card{
    flex:0 0 calc(25% - 19px);
}

@media (max-width:1200px){
    #hizmetler .service-card{
        flex:0 0 calc(33.333% - 17px);
    }
}

@media (max-width:768px){
    #hizmetler .service-card{
        flex:0 0 calc(50% - 13px);
    }
}

@media (max-width:576px){
    #hizmetler .service-card{
        flex:0 0 100%;
    }
}

/* ----- Hizmet Kartı (Anasayfa) ----- */
#hizmetler .service-card {
    background: var(--white);
    padding: 30px 20px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

#hizmetler .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

/* Hizmet Kartı - Icon */
#hizmetler .service-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    overflow: hidden;
}

#hizmetler .service-card:hover .icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--secondary);
}

#hizmetler .service-card .icon i {
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

#hizmetler .service-card:hover .icon i {
    color: var(--primary);
}

#hizmetler .service-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#hizmetler .service-card:hover .icon img {
    transform: scale(1.1);
}

/* Hizmet Kartı - Başlık */
#hizmetler .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Hizmet Kartı - Açıklama */
#hizmetler .service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Hizmet Kartı - Read More Link */
#hizmetler .service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

#hizmetler .service-card .read-more i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

#hizmetler .service-card:hover .read-more i {
    transform: translateX(6px);
}

#hizmetler .service-card .read-more:hover {
    border-bottom-color: var(--secondary);
}

/* Hizmet Kartı - Dekoratif Çizgi (hover) */
#hizmetler .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.4s ease;
    border-radius: 4px;
}

#hizmetler .service-card:hover::after {
    width: 60%;
}

/* Hizmet Kartı - Kategori Etiketi (opsiyonel) */
#hizmetler .service-card .category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(245, 176, 65, 0.12);
    color: var(--secondary);
    margin-bottom: 12px;
}

/* ==============================================
   RESPONSIVE - ANA SAYFA HİZMETLER
   ============================================== */

@media (max-width: 1024px) {
    #hizmetler .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    #hizmetler .service-card {
        padding: 25px 18px 20px;
    }
}

@media (max-width: 768px) {
    #hizmetler {
        padding: 60px 0;
    }
    
    #hizmetler .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    #hizmetler .service-card {
        padding: 20px 15px 18px;
    }
    
    #hizmetler .service-card .icon {
        width: 65px;
        height: 65px;
    }
    
    #hizmetler .service-card .icon i {
        font-size: 26px;
    }
    
    #hizmetler .service-card h3 {
        font-size: 16px;
    }
    
    #hizmetler .service-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #hizmetler {
        padding: 50px 0;
    }
    
    #hizmetler .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    #hizmetler .service-card {
        padding: 16px 12px 14px;
        border-radius: 12px;
    }
    
    #hizmetler .service-card .icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    #hizmetler .service-card .icon i {
        font-size: 22px;
    }
    
    #hizmetler .service-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    #hizmetler .service-card p {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    #hizmetler .service-card .read-more {
        font-size: 12px;
    }
    
    #hizmetler .service-card::after {
        height: 2px;
    }
}

/* Çok küçük ekranlar için (320px) */
@media (max-width: 360px) {
    #hizmetler .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    #hizmetler .service-card {
        padding: 12px 8px 10px;
    }
    
    #hizmetler .service-card .icon {
        width: 45px;
        height: 45px;
    }
    
    #hizmetler .service-card .icon i {
        font-size: 18px;
    }
    
    #hizmetler .service-card h3 {
        font-size: 12px;
    }
    
    #hizmetler .service-card p {
        font-size: 11px;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    #hizmetler .service-card .read-more {
        font-size: 10px;
    }
    
    #hizmetler .service-card .read-more i {
        font-size: 10px;
    }
}

/* ==============================================
   ANA SAYFA - DİĞER BÖLÜMLER (EKSİK OLANLAR)
   ============================================== */

/* ----- Section Header (Başlık) ----- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--secondary);
    vertical-align: middle;
    margin: 0 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--secondary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* Section Header Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .section-header .subtitle::before,
    .section-header .subtitle::after {
        width: 20px;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header .subtitle {
        font-size: 0.75rem;
    }
    
    .section-header .subtitle::before,
    .section-header .subtitle::after {
        width: 15px;
        margin: 0 4px;
    }
}

/* ----- Anasayfa "Tüm Hizmetler" Butonu (isteğe bağlı) ----- */
#hizmetler .text-center {
    text-align: center;
    margin-top: 35px;
}

#hizmetler .btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(245, 176, 65, 0.35);
    text-decoration: none;
}

#hizmetler .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 176, 65, 0.45);
}