/* Sarkom Güvenlik - Kurumsal bilişim/siber güvenlik teması */
:root {
    --primary: #0052CC;       /* Ana mavi */
    --primary-dark: #003A99;  /* Daha koyu mavi */
    --primary-light: #E0ECFF; /* Açık mavi vurgular */
    --bg: #FFFFFF;
    --bg-alt: #F5F8FF;
    --text: #121826;
    --text-muted: #5F6473;
    --border: #D6DEFF;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 24px rgba(0,82,204,0.16);
    --success: #1E8E3E;
    --error: #D93025;
    --radius: 10px;
    --radius-sm: 6px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding-top: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* ========== Top bar ========== */
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.35rem 1rem;
    min-height: 36px;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.top-bar-icon {
    opacity: 0.95;
    margin-right: 0.35rem;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.8);
}
.top-bar-left { opacity: 0.98; font-weight: 600; }
.top-bar-left a { color: #fff; text-decoration: none; }
.top-bar-left a:hover { text-decoration: underline; }
.top-bar-center a { color: #fff; font-weight: 600; text-decoration: none; }
.top-bar-center a:hover { text-decoration: underline; }
.top-bar-whatsapp {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}
.top-bar-whatsapp:hover { background: rgba(255,255,255,0.3); color: #fff; }

/* ========== Header ========== */
.site-header {
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.5rem 1.25rem 0.65rem;
    gap: 1rem;
}
.header-inner .logo { justify-self: start; }
.header-inner .nav-toggle { justify-self: end; grid-column: 3; }
.header-inner .main-nav { grid-column: 2; justify-self: center; }

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.logo img { max-height: 68px; height: 60px; width: auto; display: block; object-fit: contain; }

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--text);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.35rem 0.6rem;
    color: var(--text);
}

.main-nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.1rem;
    align-items: center;
    justify-content: center;
    padding-left: 3rem;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--primary);
    border-radius: 9999px;
    font-size: 0.95rem;
    display: inline-block;
}

.main-nav a:hover {
    color: var(--primary);
    background: rgba(200,16,46,0.08);
}
.main-nav a.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.main-nav a.active:hover {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* Hizmetler dropdown */
.main-nav .nav-has-dropdown {
    position: relative;
}
.main-nav .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 0.5rem 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 0;
    z-index: 100;
    border: 1px solid var(--border);
}
.main-nav .nav-has-dropdown:hover .nav-dropdown,
.main-nav .nav-has-dropdown:focus-within .nav-dropdown {
    display: flex;
}
.main-nav .nav-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    border-radius: 0;
    border: none;
    background: transparent;
}
.main-nav .nav-dropdown a:hover {
    background: rgba(200,16,46,0.08);
}

@media (max-width: 768px) {
    .header-inner { display: flex; flex-wrap: wrap; justify-content: space-between; padding-right: 1rem; }
    .header-inner .logo { justify-self: auto; }
    .header-inner .nav-toggle { justify-self: auto; grid-column: auto; margin-right: 10vw; }
    .header-inner .main-nav {
        grid-column: auto; justify-self: auto; order: 3;
        width: 100vw; max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }
    .nav-toggle { display: block; }
    .main-nav { display: none; }
    .main-nav.is-open { display: block; }
    .main-nav ul { flex-direction: column; align-items: center; text-align: center; padding-left: 0; margin: 0 auto; gap: 0.5rem; max-width: 100%; }
    .main-nav li { width: 100%; max-width: 280px; }
    .main-nav a { display: block; width: 100%; padding: 0.75rem 1rem; text-align: center; box-sizing: border-box; }
    .main-nav .nav-has-dropdown { position: static; width: 100%; max-width: 280px; margin-left: auto; margin-right: auto; }
    .main-nav .nav-dropdown {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0.25rem;
        padding-bottom: 0.5rem;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        align-items: stretch;
        border-left: none;
    }
    .main-nav .nav-has-dropdown.is-open .nav-dropdown { display: flex; flex-direction: column; align-items: stretch; }
    .main-nav .nav-dropdown li { width: 100%; }
    .main-nav .nav-dropdown a { display: block; width: 100%; padding: 0.5rem 1rem; text-align: center; box-sizing: border-box; }
}

/* ========== Sticky CTA ========== */
.sticky-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sticky-call, .sticky-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-call { background: var(--primary); border: 2px solid #fff; }
.sticky-whatsapp { background: #25D366; }

.sticky-call:hover, .sticky-whatsapp:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .sticky-cta { bottom: 1rem; right: 1rem; }
    .sticky-call, .sticky-whatsapp { padding: 0.65rem 1rem; font-size: 0.9rem; }
}

/* ========== Main ========== */
.main-content { min-height: 65vh; padding-bottom: 2.5rem; }

/* ========== Hero ========== */
.hero {
    background: radial-gradient(circle at top left, #E0ECFF 0%, #F5F8FF 40%, #FFFFFF 100%);
    background-size: cover;
    background-position: center;
    padding: 3.5rem 1.5rem 4rem;
    position: relative;
    border-bottom: 4px solid var(--primary);
    min-height: 380px;
}

.hero.hero-has-bg { background-color: #1a1a1a; }

.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero.hero-has-bg .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.hero.hero-has-bg .hero h1,
.hero.hero-has-bg .hero-content h1,
.hero.hero-has-bg .hero-sub,
.hero.hero-has-bg .hero .btn { color: #fff; }
.hero.hero-has-bg .hero-sub { color: rgba(255,255,255,0.9); }
.hero.hero-has-bg .hero .btn-primary { background: var(--primary); color: #fff; }
.hero.hero-has-bg .hero .btn-secondary { background: #fff; color: var(--primary); }
.hero.hero-has-bg .hero-tagline { color: rgba(255,255,255,0.95); }
.hero .hero-tagline { color: var(--primary); font-weight: 700; margin: 1rem 0 0; font-size: 1.05rem; }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(200,16,46,0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 2;
}

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

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

.hero-illustration {
    width: 100%;
    max-width: 320px;
    height: auto;
    opacity: 0.9;
}

.hero-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 280px;
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { order: -1; max-width: 220px; margin: 0 auto; }
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-sub {
    margin: 0 0 2rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Hero content (slider üzeri): metin ve buton sol hizalı */
.hero-content .hero-sub { margin-left: 0; margin-right: auto; }
.hero-content .hero-cta { justify-content: flex-start; }

.hero-cta .btn { min-width: 200px; text-align: center; }

/* Hero slider (arka plan geçişi) – mobil ve PC’de aynı oran, görsel tam görünsün */
/* Slider tam genişlik – yanlarda boşluk kalmaması için hero yatay padding kaldırıldı */
.hero.hero-with-slider {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}
/* Masaüstü: kırmızı temalı site (Sarkom) boyutları – daha kompakt slider */
.hero-with-slider {
    position: relative;
    aspect-ratio: 2 / 1;
    min-height: 280px;
    max-height: min(520px, 55vh);
}
.hero-with-slider .hero-slider {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Görsel alanı doldurur, merkez odaklı kırpma (responsive object-fit: cover) */
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Tablet */
@media (max-width: 1199px) and (min-width: 769px) {
    .hero-with-slider {
        aspect-ratio: 1200 / 500;
        min-height: 240px;
        max-height: min(400px, 52vh);
    }
}

/* Mobil */
@media (max-width: 768px) {
    .hero-with-slider {
        aspect-ratio: 768 / 500;
        min-height: 220px;
        max-height: min(380px, 50vh);
    }
}

/* Çok küçük ekran */
@media (max-width: 480px) {
    .hero-with-slider {
        aspect-ratio: 480 / 400;
        min-height: 260px;
        max-height: min(360px, 50vh);
    }
}

/* Hero + floating form (yeni anasayfa) */
.hero-new { min-height: 320px; padding: 1rem 1.5rem 1.5rem; }
.hero.hero-with-slider.hero-new { min-height: 0; }
.hero-inner-new { align-items: start; gap: 1.5rem; }
.hero-form-wrap { max-width: 300px; width: 100%; }
/* Talep formu: sabit konum, hero metinleri açık/kapalı olsa da aynı yerde */
.hero-form-wrap--nav-align {
    align-self: flex-start;
    margin-top: 2.5rem;
}
/* Hero metinleri kapalıysa form sağda */
.hero-inner--form-only {
    grid-template-columns: 1fr;
    justify-items: end;
}
/* Form sağda, hero içerik solda */
.hero-inner-new {
    grid-template-columns: 1fr minmax(280px, 340px);
}
.hero-form-wrap { order: 1; justify-self: end; }
.hero-content { order: -1; }
.hero-form-card {
    background: rgba(255,255,255,0.96);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.06);
}
.hero-form-compact {
    padding: 1rem;
}
.hero-form-compact h3 { margin: 0 0 0.65rem; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.hero-request-form .form-row { margin-bottom: 0.5rem; }
.hero-request-form .form-row label { display: block; margin-bottom: 0.2rem; font-size: 0.8rem; font-weight: 500; color: var(--text); }
.hero-request-form .form-row input,
.hero-request-form .form-row select,
.hero-request-form .form-row textarea { width: 100%; padding: 0.4rem 0.5rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.85rem; }
.hero-request-form .form-row-group { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.hero-request-form .form-row-group .form-row { margin-bottom: 0; flex: 1; min-width: 0; }
.hero-request-form .form-row-inline { display: flex; gap: 0.35rem; }
.hero-request-form .form-row-inline input { flex: 1; min-width: 0; }
/* Tarih üstte, saat altta – çerçeve dışına taşmayı önler */
.hero-request-form .form-row-datetime-stack label { display: block; }
.hero-request-form .form-row-datetime-stack .form-datetime-date { display: block; width: 100%; max-width: 100%; margin-bottom: 0.35rem; min-width: 0; }
.hero-request-form .form-row-datetime-stack .form-datetime-time { display: block; width: 100%; max-width: 100%; min-width: 0; }
.hero-request-form .form-row-half { display: inline-block; width: calc(50% - 0.25rem); vertical-align: top; margin-right: 0.25rem; }
.hero-request-form .btn-block { width: 100%; margin-top: 0.35rem; padding: 0.5rem 0.75rem; font-size: 0.9rem; text-align: center; }
.btn-arrow { display: inline-flex; align-items: center; gap: 0.35rem; }
@media (max-width: 900px) {
    .hero-inner-new { grid-template-columns: 1fr; }
    .hero-form-wrap { max-width: 100%; order: 2; max-width: 340px; margin: 0 auto; }
    .hero-form-wrap--nav-align { margin-top: 0; }
}

/* Hero – form olmayan varyant (Sarkom tasarımı) */
.hero-inner--no-form {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}
/* Slider varken hero metin alanı */
.hero.hero-with-slider .hero-inner--no-form {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
}
.hero-inner--no-form .hero-content {
    max-width: 540px;
}
.hero-inner--no-form .hero-cta {
    margin-top: 1.25rem;
}

/* Ana sayfa üst hizmet kartları (4lü) */
.home-top-services {
    padding-top: 0;
}
.home-top-services-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.home-top-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.25rem;
    text-align: left;
    border-top: 4px solid var(--primary);
}
.home-top-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
.home-top-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}
.home-top-card p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.btn.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .home-top-services-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .home-top-services-inner {
        grid-template-columns: 1fr;
    }
}

/* Service highlights (3 kart) */
.service-highlights {
    padding: 2.5rem 0 2rem;
    background: var(--bg-alt);
}
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.highlight-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
a.highlight-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.highlight-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}
.highlight-label {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}
@media (max-width: 600px) { .highlight-grid { grid-template-columns: 1fr; } }

.service-grid-home { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.service-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.section-cta { text-align: center; margin-top: 1.5rem; }

/* Galeri önizleme */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}
.gallery-preview-item {
    display: block;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-preview-item:hover img { transform: scale(1.05); }
.gallery-preview-empty { text-align: center; color: var(--text-muted); margin: 1rem 0; }
@media (max-width: 768px) { .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); } }

/* Müşteri Yorumları – sol: başlık + kartlar + Google butonu; sağ: QR + puan + özet + Yorum Yaz; butonlar aynı hizada */
.reviews-preview .reviews-title { margin-bottom: 0.1rem; }
.reviews-layout-two-cols { display: flex; flex-wrap: wrap; align-items: stretch; gap: 2rem; margin-top: 0; }
.reviews-col-left { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.reviews-col-left .reviews-title { align-self: center; text-align: center; width: 100%; }
.reviews-col-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
.reviews-title--right { margin-bottom: 0; align-self: center; width: 182px; max-width: 100%; text-align: center; white-space: nowrap; transform: translateX(3%); }
.reviews-col-right .reviews-qr-box { margin-top: 0; margin-left: auto; margin-right: 0; align-self: flex-end; }
.reviews-col-right .reviews-desc--right { align-self: center; margin-top: 1rem; }
.reviews-col-right .reviews-rating--right { align-self: center; }
.reviews-col-right .reviews-cta-btn { align-self: flex-end; }
/* Sol sütunda tek sütun modunda puan + özet */
.reviews-col-left .reviews-rating { margin: 0 0 0.75rem; font-weight: 700; color: var(--text); display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem; }
.reviews-col-left .reviews-desc { margin: 0 0 1.25rem; max-width: 42ch; color: var(--text); line-height: 1.5; }
/* Sağ sütun: QR altında 4.9/5 ve özet metin ortada */
.reviews-rating--right { margin: 0; font-weight: 700; color: var(--text); display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.35rem; }
.reviews-desc--right { margin: 0; max-width: 34ch; color: var(--text); line-height: 1.5; text-align: center; overflow-wrap: break-word; word-break: normal; }
.reviews-desc-line2 { display: block; text-align: center; }
.reviews-preview .reviews-rating-value { margin-right: 0.25rem; }
.reviews-preview .stars-wrap { color: #f5a623; font-size: 1.25rem; letter-spacing: 0.05em; display: inline-flex; align-items: center; height: 1.25em; }
.reviews-preview .stars-wrap .stars-full,
.reviews-preview .stars-wrap .star-partial { display: inline-flex; align-items: center; justify-content: flex-start; height: 1em; line-height: 1; }
.reviews-preview .star-partial { width: calc(var(--star-fill, 100) * 1em / 100); overflow: hidden; }
.reviews-manual-wrap { position: relative; margin: 0.1rem 0 3vh 0; width: 100%; max-width: 520px; }
.reviews-manual-wrap--scroll { max-height: 420px; }
.reviews-manual-wrap--scroll .reviews-manual-list { max-height: 420px; overflow-y: auto; overflow-x: hidden; scroll-behavior: smooth; padding-right: 0.5rem; margin-bottom: 0; }
.reviews-manual-wrap--scroll .reviews-manual-list::-webkit-scrollbar { width: 6px; }
.reviews-manual-wrap--scroll .reviews-manual-list::-webkit-scrollbar-track { background: var(--bg-alt); border-radius: 3px; }
.reviews-manual-wrap--scroll .reviews-manual-list::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; opacity: 0.6; }
.reviews-manual-wrap--scroll .reviews-manual-list::-webkit-scrollbar-thumb:hover { opacity: 1; }
.reviews-manual-list { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; }
.reviews-scroll-hint { position: absolute; bottom: 0; left: 0; right: 0.5rem; height: 48px; background: linear-gradient(to top, var(--bg, #fff) 40%, transparent); pointer-events: none; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 0.5rem; transition: opacity 0.3s, visibility 0.3s; }
.reviews-scroll-hint-icon { width: 28px; height: 28px; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); margin-bottom: 0.5rem; animation: reviews-scroll-bounce 2s ease-in-out infinite; }
@keyframes reviews-scroll-bounce { 0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.8; } 50% { transform: rotate(45deg) translateY(4px); opacity: 1; } }
.testimonial-card { margin: 0; width: 100%; padding: 1.25rem 1.5rem; background: var(--bg-alt); border-radius: var(--radius); border-left: 4px solid var(--primary); text-align: left; box-sizing: border-box; flex-shrink: 0; }
.testimonial-author { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; color: var(--text); display: block; }
.testimonial-stars { color: #f5a623; font-size: 1rem; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.testimonial-text { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text); }
.reviews-preview .reviews-cta-btn { width: 280px; max-width: 100%; box-sizing: border-box; text-align: center; }
.reviews-col-left .reviews-cta-btn { margin-top: auto; align-self: flex-start; }
.reviews-col-right .reviews-cta-btn { margin-top: auto; }
.reviews-btn-no-link { opacity: 0.85; cursor: help; }

.reviews-qr-box { padding: 1rem; background: #f5f5f5; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.reviews-qr-link { display: inline-block; line-height: 0; }
.reviews-qr-img { display: block; width: 160px; height: 160px; object-fit: contain; }
.reviews-qr-caption { margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--text-muted); }

.reviews-layout-single .reviews-col-left { max-width: 100%; }
.reviews-layout-single .reviews-col-left .reviews-cta-btn { margin-top: 0; display: inline-block; }

@media (max-width: 768px) {
    .reviews-manual-list { grid-template-columns: 1fr; }
    .reviews-preview .container { text-align: center; }
    .reviews-layout-two-cols { flex-direction: column; align-items: center; }
    .reviews-col-left { order: 1; width: 100%; align-items: center; text-align: center; }
    .reviews-preview .reviews-col-left .reviews-title,
    .reviews-col-left .reviews-title,
    .reviews-col-left h2.section-title.reviews-title { display: block !important; align-self: center; text-align: center; width: 100%; margin-left: auto; margin-right: auto; }
    .reviews-col-left .reviews-manual-wrap { margin-left: auto; margin-right: auto; }
    .reviews-col-left .reviews-manual-list { align-items: center; }
    .reviews-col-left .reviews-manual-wrap--scroll .reviews-manual-list { max-height: 360px; }
    .reviews-col-left .reviews-cta-btn { margin-top: 0; padding-top: 0.6rem; padding-bottom: 0.5rem; display: block; margin-left: auto; margin-right: auto; }
    .reviews-col-right { order: 2; width: 100%; align-items: center; text-align: center; }
    .reviews-col-right .reviews-title--right { align-self: center; transform: translateX(-1%); }
    .reviews-col-right .reviews-qr-box { margin-left: auto; margin-right: auto; }
    .reviews-col-right .reviews-cta-btn { margin-top: 0; margin-left: auto; margin-right: auto; }
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(200,16,46,0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.btn-secondary {
    background: var(--text);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

/* ========== Sections ========== */
.section {
    padding: 2rem 0;
}

.section:nth-child(even) { background: var(--bg-alt); }

.section.section-refs {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

.section h1 {
    margin: 0 0 1.25rem;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.section h2 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.section-icon svg {
    width: 100%;
    height: 100%;
}

.content-body, .content-preview {
    line-height: 1.75;
    color: var(--text-muted);
}

.content-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }

.link-more {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    transition: color 0.2s;
}

.link-more:hover { color: var(--primary-dark); }

.link-more::after {
    content: ' →';
    margin-left: 0.2rem;
}

/* ========== Service grid & cards ========== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
    display: block;
    border-left: 4px solid var(--primary);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--text);
    transform: translateY(-3px);
    border-left-color: var(--primary-dark);
}

.service-card h2, .service-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== Home products showcase (Hizmetlerimiz altı) ========== */
.home-products-showcase {
    padding-top: 1.5rem;
}
.home-products-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.home-products-image {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.25rem;
}
.home-products-visual {
    background: transparent;
    padding: 0;
    border-radius: var(--radius);
    box-shadow: none;
}

.product-carousel {
    border-radius: var(--radius);
    background: rgba(0, 82, 204, 0.04);
    border: 1px solid var(--border);
    padding: 0.6rem 0.75rem 0.4rem;
    overflow: hidden;
}
.product-carousel-viewport { overflow: hidden; }
.product-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s ease;
    will-change: transform;
}
.product-carousel-item {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 240px;
}
@media (max-width: 1024px) {
    .product-carousel-item { flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 640px) {
    .product-carousel-item { flex-basis: 100%; }
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card-img {
    height: 95px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.product-card-body { padding: 0.65rem 0.8rem 0.8rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-card-title { margin: 0; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.product-card-desc { margin: 0; color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; max-height: 3em; overflow: hidden; }
.product-card-actions { margin-top: 0.25rem; }
.product-carousel-empty { padding: 1rem; }

.product-carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.75rem 0 0.25rem;
}
.product-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(0, 82, 204, 0.45);
    background: rgba(0, 82, 204, 0.12);
    cursor: pointer;
}
.product-carousel-dot.is-active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Ürün detay kutusu (41telekom benzeri) */
.product-detail-box {
    margin-top: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}
.product-detail-header {
    padding: 0.6rem 1rem;
    background: #fff7f0;
    border-bottom: 1px solid var(--border);
}
.product-detail-label {
    font-weight: 700;
    color: #ea7310;
}
.product-detail-body {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.product-detail-body ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
}

/* ========== About preview ========== */
/* Metin solda, görsel sağda */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: center;
}

.about-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }

.about-img {
    width: 100%;
    height: auto;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.about-text .content-preview { margin-bottom: 0.5rem; }

.about-inner--single { grid-template-columns: 1fr; }

/* Hakkımızda sayfasında grid ve görselin görünmesi */
.page-about .container.about-inner { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.page-about .about-visual { display: block; min-width: 0; }

@media (max-width: 900px) {
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { max-width: 400px; margin: 0 auto; }
    .page-about .container.about-inner { grid-template-columns: 1fr; }
}

.ref-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: center;
}

.ref-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; max-height: 220px; }

@media (max-width: 768px) {
    .ref-inner { grid-template-columns: 1fr; }
    .ref-visual { order: -1; }
}

/* ========== CTA section ========== */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 3rem 1.5rem;
}

.cta-section h2 {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
    color: #fff;
}

.cta-section p {
    margin: 0 0 1.25rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.cta-section .btn {
    background: #fff;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: #f0f0f0;
    color: var(--primary-dark);
    text-decoration: none;
}

/* CTA – kayan referans logoları */
.cta-refs-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
.cta-refs-wrap {
    overflow: hidden;
    padding: 0.6rem 0 0.9rem;
    /* Referans logoları için mavi şerit arka plan (footer ile aynı tonda) */
    background: var(--primary);
    border-radius: 999px;
}
.cta-refs-track {
    display: flex;
    gap: 2rem;
    animation: cta-refs-scroll 30s linear infinite;
}
.cta-refs-track:hover {
    animation-play-state: paused;
}
.cta-ref-item {
    flex-shrink: 0;
}
.cta-ref-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 1rem;
}
.cta-ref-link img {
    max-height: 44px;
    max-width: 130px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.cta-ref-link:hover img {
    opacity: 1;
}
@keyframes cta-refs-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Forms ========== */
.form-section .container { max-width: 600px; }

.request-form .form-row, .contact-form .form-row { margin-bottom: 1.25rem; }

.form-row label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text);
}

.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}

.form-row.half { display: inline-block; width: 48%; vertical-align: top; margin-right: 2%; }

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.alert-error { background: #ffebee; color: var(--error); border: 1px solid #ffcdd2; }

.alert-success { background: #e8f5e9; color: var(--success); border: 1px solid #c8e6c9; }

/* ========== Blog ========== */
.blog-list {
    display: grid;
    gap: 1.5rem;
}

.blog-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.blog-card h2 {
    margin-top: 0;
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.blog-card .cat { font-size: 0.85rem; color: var(--text-muted); }

.blog-single .featured-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.blog-single .meta { margin-bottom: 0.5rem; }

.pagination { display: flex; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; }

.pagination a {
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.pagination a:hover { background: var(--bg-alt); }

.pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== Gallery ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

/* Galeri lightbox slayt */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}
.lightbox-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-wrap .lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.25rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    opacity: 0.9;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.5rem; left: 0.5rem; right: 0.5rem; }
}

/* ========== Contact ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-info p { margin: 0 0 0.5rem; }

.contact-map {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-map iframe {
    display: block;
    min-height: 280px;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .contact-map iframe { min-height: 220px; } }

/* ========== Footer ========== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.95);
    padding: 2rem 0 0;
    margin-top: 3rem;
}

.site-footer a { color: #fff; transition: opacity 0.2s; }
.site-footer a:hover { opacity: 0.9; }

/* Botlar için SEO linkleri: ekranda görünmez, HTML'de mevcut */
.seo-links-bots {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-logo { display: block; margin-bottom: 0.75rem; }
.footer-logo img { display: block; height: auto; max-width: 160px; }
.footer-logo:hover img { opacity: 1; }

.footer-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(160px, 1fr) minmax(180px, 1fr) minmax(260px, 1.5fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
}
.footer-col-brand .footer-legal {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-col-brand .footer-legal a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.footer-col-map {
    min-width: 0;
}
.footer-map {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    min-height: 220px;
}
.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
}
.footer-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    padding: 1rem;
}
.footer-map-placeholder span {
    font-weight: 600;
    color: #fff;
}
.footer-map-hint {
    margin: 0.5rem 0 0;
    font-size: 0.75rem;
    opacity: 0.8;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col-map { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h3, .footer-col h4 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col p { color: rgba(255,255,255,0.9); margin: 0.25rem 0; }
.footer-col li { margin: 0.35rem 0; }
.footer-col:nth-child(2) { padding-left: 1rem; }
.footer-col:nth-child(3) { padding-left: 0.5rem; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: #fff;
}
.footer-bottom-right { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-right a { color: #fff; font-weight: 600; }
.footer-copyright { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.5rem; align-items: center; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.35); }
.footer-social .footer-social-icon { display: block; width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-left, .footer-bottom-right { justify-content: center; }
    .footer-col:nth-child(2), .footer-col:nth-child(3) { padding-left: 0; }
}

/* ========== Mobile-only hizalamalar (<=768px) ========== */
@media (max-width: 768px) {
    /* Üst bar: telefon simgesi çerçevesi genişlet */
    .top-bar-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    /* Logo mobilde biraz sağa */
    .header-inner .logo {
        margin: 0 auto 0 1.25rem;
        justify-content: flex-start;
    }

    /* Hamburger: alt alta 3 çizgi, kare içine tam sığacak şekilde */
    .nav-toggle {
        width: 38px;
        height: 30px;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        line-height: 0;
        background: transparent;
        box-sizing: border-box;
    }
    .nav-toggle::before {
        content: '';
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
        /* 3 çizgi: aralıklar 5px ve 10px; kare içinde alt üst ortalı */
        box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
        transform: translateY(-4px);
    }

    /* Neden Biz? başlığı */
    .service-highlights .section-title {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hakkımızda başlık ve buton */
    .about-preview .about-text {
        text-align: center;
    }
    .about-preview .about-text .section-title {
        justify-content: center;
    }
    .about-preview .about-text .btn {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hizmetlerimiz başlığı ve kart içeriği */
    .services-preview .section-title {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .services-preview .service-card {
        text-align: center;
    }
    .services-preview .service-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    /* Güvenli hırsız alanı ve ürün kartları */
    .home-products-hero {
        text-align: center;
    }
    .home-products-hero .section-title {
        justify-content: center;
    }
    .product-card {
        text-align: center;
    }
    .product-card-actions {
        display: flex;
        justify-content: center;
    }

    /* Fotoğraf Galerisi başlığı */
    .gallery-preview .section-title {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Müşteri yorumları: mobilde sütunlar ortalanabilir */
    .reviews-preview .reviews-col-right .reviews-cta-btn { margin-left: auto; margin-right: auto; }

    /* Footer logo ve alt bağlantıları ortalama */
    .footer-col-brand,
    .footer-col-brand h3,
    .footer-col-brand p {
        text-align: center;
    }
    .footer-logo {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .footer-col-brand .footer-legal {
        justify-content: center;
    }

    /* Footer Bağlantılar sütunu: başlık ve linkler ortada */
    .footer-col:nth-child(2) {
        text-align: center;
        padding-left: 0;
    }
    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(2) ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col:nth-child(2) li {
        text-align: center;
    }

    /* Footer İletişim sütunu ortala */
    .footer-col:nth-child(3) {
        text-align: center;
        padding-left: 0;
    }
    .footer-col:nth-child(3) h4,
    .footer-col:nth-child(3) p {
        text-align: center;
    }
}

/* ========== Error page ========== */
.error-page { text-align: center; padding: 4rem 1rem; }

.error-page h1 { font-size: 4rem; margin: 0; color: var(--primary); font-weight: 800; }

/* ========== Page content ========== */
.page-content {
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Makale / hizmet detay arka plan şeridi */
.page-content .container {
    max-width: 1040px;
}
.blog-single .container,
.page-content .container {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    border-left: 2px solid rgba(0, 82, 204, 0.35);
    border-right: 2px solid rgba(0, 82, 204, 0.35);
    border-top: none;
    border-bottom: none;
}
@media (max-width: 768px) {
    .blog-single .container,
    .page-content .container {
        padding: 1.5rem 1.25rem;
        border-left-width: 1px;
        border-right-width: 1px;
    }
}
