@charset "UTF-8";

/* ============================================================
   MALATYA GİYOTİN CAM — ANA STİL DOSYASI
   Kurumsal Web Sitesi — style.css
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (RENK PALETİ & DEĞİŞKENLER)
   ============================================================ */
:root {
    /* Ana Renkler */
    --ana-renk: #8B1A1A;
    --ana-koyu: #5C0E0E;
    --vurgu-renk: #D4363C;
    --vurgu-koyu: #A52A2A;
    --ikincil-renk: #2C3E50;

    /* Zemin & Yüzey */
    --zemin: #F5F5F5;
    --yuzey: #FFFFFF;
    --koyu-yuzey: #1A1A2E;

    /* Yazı */
    --yazi-renk: #2D2D2D;
    --yazi-yumusak: #6B7280;

    /* Border */
    --border-renk: #E0E0E0;

    /* Sabitler */
    --beyaz: #FFFFFF;
    --cam-renk: #E8F4F8;

    /* Fontlar */
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Gölgeler */
    --golge-hafif: 0 2px 8px rgba(0, 0, 0, 0.08);
    --golge-orta: 0 4px 16px rgba(0, 0, 0, 0.12);
    --golge-guclu: 0 8px 32px rgba(0, 0, 0, 0.18);

    /* Geçişler */
    --gecis: 0.3s ease;
    --gecis-hizli: 0.2s ease;

    /* Header yüksekliği */
    --header-h: 80px;
    --topbar-h: 40px;
}


/* ============================================================
   2. RESET / NORMALIZE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    line-height: 1.15;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--yazi-renk);
    background-color: var(--zemin);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}

summary {
    display: list-item;
}

[hidden],
template {
    display: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    border: 0;
    border-top: 1px solid var(--border-renk);
    margin: 2rem 0;
}

abbr[title] {
    text-decoration: underline dotted;
}

b, strong {
    font-weight: 700;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub { bottom: -0.25em; }
sup { top: -0.5em; }

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

fieldset {
    border: 1px solid var(--border-renk);
    padding: 0.75em;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

textarea {
    overflow: auto;
    resize: vertical;
}

[type="checkbox"],
[type="radio"] {
    padding: 0;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}


/* ============================================================
   3. GENEL STİLLER — Tipografi & Elementler
   ============================================================ */

/* --- Başlıklar --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--yazi-renk);
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* --- Paragraf --- */
p {
    margin-bottom: 1rem;
    color: var(--yazi-renk);
}

/* --- Bağlantılar --- */
a {
    color: var(--ana-renk);
    text-decoration: none;
    transition: color var(--gecis);
}

a:hover {
    color: var(--vurgu-renk);
}

a:focus-visible {
    outline: 2px solid var(--vurgu-renk);
    outline-offset: 2px;
}

/* --- Görseller --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

/* --- Listeler --- */
ul, ol {
    list-style: none;
}

/* --- İçerik Listeleri (makale vb.) --- */
.content-area ul,
.content-area ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-area ul {
    list-style: disc;
}

.content-area ol {
    list-style: decimal;
}

.content-area li {
    margin-bottom: 0.35rem;
}

/* --- Blockquote --- */
blockquote {
    border-left: 4px solid var(--ana-renk);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--cam-renk);
    font-style: italic;
    color: var(--ikincil-renk);
}

/* --- Seçim Rengi --- */
::selection {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}

::-moz-selection {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}


/* ============================================================
   4. CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-sm {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-lg {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ============================================================
   5. BUTON TEMELLERİ (Genel)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--gecis);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--vurgu-renk);
    outline-offset: 2px;
}

/* Birincil Buton */
.btn-primary {
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border-color: var(--ana-renk);
}

.btn-primary:hover {
    background-color: var(--ana-koyu);
    border-color: var(--ana-koyu);
    color: var(--beyaz);
}

/* İkincil Buton */
.btn-secondary {
    background-color: transparent;
    color: var(--beyaz);
    border-color: var(--beyaz);
}

.btn-secondary:hover {
    background-color: var(--beyaz);
    color: var(--ana-renk);
}

/* Vurgu Buton */
.btn-accent {
    background-color: var(--vurgu-renk);
    color: var(--beyaz);
    border-color: var(--vurgu-renk);
}

.btn-accent:hover {
    background-color: var(--vurgu-koyu);
    border-color: var(--vurgu-koyu);
    color: var(--beyaz);
}

/* Outlined Buton */
.btn-outline {
    background-color: transparent;
    color: var(--ana-renk);
    border-color: var(--ana-renk);
}

.btn-outline:hover {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}

/* Küçük Buton */
.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Büyük Buton */
.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}


/* ============================================================
   6. TOPBAR — Üst Şerit
   ============================================================ */
.topbar {
    background-color: var(--koyu-yuzey);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sol — İletişim Bilgileri */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--gecis-hizli);
}

.topbar-left a:hover {
    color: var(--beyaz);
}

.topbar-left i {
    font-size: 0.9rem;
    color: var(--vurgu-renk);
}

/* Sağ — Sosyal İkonlar */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--gecis-hizli);
}

.topbar-social a:hover {
    color: var(--beyaz);
}

/* Topbar mobilde gizlenir */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}


/* ============================================================
   7. HEADER — Ana Başlık Barı (Sticky)
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--yuzey);
    height: var(--header-h);
    box-shadow: var(--golge-hafif);
    transition: box-shadow var(--gecis);
}

.header.scrolled {
    box-shadow: var(--golge-orta);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.header-logo .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ana-renk);
    line-height: 1.2;
}

.header-logo .logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--yazi-yumusak);
    letter-spacing: 0.5px;
}

/* Sağ — CTA & WhatsApp Butonları */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--gecis);
    white-space: nowrap;
    line-height: 1;
}

.header-cta .btn-cta {
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border: 2px solid var(--ana-renk);
}

.header-cta .btn-cta:hover {
    background-color: var(--ana-koyu);
    border-color: var(--ana-koyu);
    color: var(--beyaz);
}

.header-cta .btn-whatsapp {
    background-color: #25D366;
    color: var(--beyaz);
    border: 2px solid #25D366;
}

.header-cta .btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    color: var(--beyaz);
}

/* WhatsApp Butonu — Header */
.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    background-color: #25D366;
    color: var(--beyaz);
    text-decoration: none;
    transition: all var(--gecis);
    white-space: nowrap;
}

.header-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}

.header-whatsapp i {
    font-size: 1rem;
}

/* Header butonlarını mobilde gizle */
@media (max-width: 992px) {
    .header-actions {
        display: none;
    }
}


/* ============================================================
   8. NAV MENÜ — Desktop Navigasyon & Dropdown
   ============================================================ */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yazi-renk);
    text-decoration: none;
    transition: color var(--gecis);
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--ana-renk);
}

/* Active sayfa vurgusu — Alt çizgi */
.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--ana-renk);
}

/* Dropdown Ok İkonu */
.nav-menu > li > a .dropdown-arrow {
    font-size: 0.65rem;
    transition: transform var(--gecis);
}

.nav-menu > li:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* --- Dropdown Alt Menü --- */
.dropdown-menu,
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--yuzey);
    box-shadow: var(--golge-orta);
    border-top: 3px solid var(--ana-renk);
    border-radius: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--gecis);
    z-index: 1001;
    list-style: none;
}

.nav-menu > li:hover > .dropdown-menu,
.nav-menu > li:hover > .dropdown,
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li,
.dropdown li {
    display: block;
}

.dropdown-menu li a,
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--yazi-renk);
    text-decoration: none;
    transition: all var(--gecis-hizli);
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active,
.dropdown li a:hover,
.dropdown li a.active {
    background-color: var(--zemin);
    color: var(--ana-renk);
    border-left-color: var(--ana-renk);
}

/* Desktop nav — tablet ve altında gizle */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
}


/* ============================================================
   9. MOBİL MENÜ — Hamburger, Overlay Panel, Accordion
   ============================================================ */

/* Hamburger Butonu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--yazi-renk);
    transition: all var(--gecis);
    margin: 3px 0;
}

/* Hamburger — Açık durumda X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all var(--gecis);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil Menü Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background-color: var(--yuzey);
    z-index: 1100;
    transition: right var(--gecis), visibility 0s linear 0.3s;
    overflow-y: auto;
    padding: 70px 0 30px;
    visibility: hidden;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
    transition: right var(--gecis), visibility 0s linear 0s;
}

/* Mobil Menü — Kapama Butonu */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--yazi-renk);
    transition: color var(--gecis-hizli);
}

.mobile-menu-close:hover {
    color: var(--vurgu-renk);
}

/* Mobil Menü Linkleri */
.mobile-nav-list {
    padding: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid var(--border-renk);
}

.mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--yazi-renk);
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > a.active {
    color: var(--ana-renk);
}

/* Accordion Alt Menü Tetikleyici */
.mobile-nav-list .has-submenu > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform var(--gecis);
}

.mobile-nav-list .has-submenu.open > a::after {
    transform: rotate(180deg);
}

/* Accordion Alt Menü */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--zemin);
}

.mobile-nav-list .has-submenu.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 20px 10px 36px;
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    text-decoration: none;
    transition: color var(--gecis-hizli);
    border-left: 3px solid transparent;
}

.mobile-submenu li a:hover,
.mobile-submenu li a.active {
    color: var(--ana-renk);
    border-left-color: var(--ana-renk);
}

/* Mobil Menü İçi CTA */
.mobile-menu-cta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobil Menü İçi WhatsApp */
.mobile-menu-cta .btn-whatsapp {
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
}

.mobile-menu-cta .btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}


/* ============================================================
   10. HERO SLIDER — Tam Ekran, Sol Hizalı
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

/* Overlay — koyu gradient */
.hero-slide-overlay,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 40, 0.82) 0%,
        rgba(100, 20, 20, 0.55) 100%
    );
    z-index: 1;
}

.hero-slide::before {
    display: none;
}

/* İçerik — SOLA HIZALI, container genişliğinde */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 680px;
    padding: 60px 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--beyaz);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    color: var(--vurgu-renk);
    font-size: 0.9rem;
}

/* Başlık */
.hero-content h1,
.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--beyaz);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content h1 em,
.hero-content h2 em {
    font-style: normal;
    color: var(--vurgu-renk);
}

/* Alt yazı */
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Butonlar */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border: 2px solid var(--ana-renk);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--gecis);
    cursor: pointer;
}

.hero-btn-primary:hover {
    background-color: var(--ana-koyu);
    border-color: var(--ana-koyu);
    gap: 14px;
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--beyaz);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--gecis);
    cursor: pointer;
}

.hero-btn-outline:hover {
    background-color: var(--beyaz);
    color: var(--yazi-renk);
    border-color: var(--beyaz);
}

/* Slider Okları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    color: var(--beyaz);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gecis);
}

.slider-arrow:hover {
    background-color: var(--ana-renk);
    border-color: var(--ana-renk);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Slider Bullet Noktaları */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--beyaz);
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    transition: all var(--gecis);
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background-color: var(--beyaz);
}



/* ============================================================
   11. BÖLÜM ORTAK STİLLERİ
   ============================================================ */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--zemin);
}

.section-white {
    background-color: var(--yuzey);
}

.section-dark {
    background-color: var(--koyu-yuzey);
    color: var(--beyaz);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--ana-renk);
    margin: 12px auto 0;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--yazi-yumusak);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-header h2 {
    color: var(--beyaz);
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   12. HİZMET KARTLARI — 3 Kolon Grid
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    background-color: var(--yuzey);
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--gecis), box-shadow var(--gecis);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge-guclu);
    color: inherit;
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.service-card-body {
    padding: 24px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background-color: var(--cam-renk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--ana-renk);
    font-size: 1.3rem;
    transition: all var(--gecis);
}

.service-card:hover .service-card-icon {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}

.service-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--yazi-renk);
}

.service-card-body p {
    font-size: 0.92rem;
    color: var(--yazi-yumusak);
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ana-renk);
    transition: gap var(--gecis);
}

.service-card:hover .service-card-link {
    gap: 10px;
}

/* Services Grid Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   13. FİRMA TANITIM — Sol Görsel + Sağ Metin
   ============================================================ */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-preview-image {
    position: relative;
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.about-preview-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 4px solid var(--ana-renk);
    border-radius: 0;
    z-index: -1;
}

.about-preview-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-preview-content p {
    color: var(--yazi-yumusak);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* İstatistik Sayaçları */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-renk);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ana-renk);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--yazi-yumusak);
    font-weight: 500;
}

/* About Preview Responsive */
@media (max-width: 768px) {
    .about-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-preview-image::after {
        display: none;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ============================================================
   14. NEDEN BİZ — 4 Özellik Kutusu Grid
   ============================================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-item {
    background-color: var(--yuzey);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    border-top: 3px solid transparent;
    transition: all var(--gecis);
}

.why-us-item:hover {
    border-top-color: var(--ana-renk);
    transform: translateY(-4px);
    box-shadow: var(--golge-orta);
}

.why-us-icon {
    width: 64px;
    height: 64px;
    background-color: var(--cam-renk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--ana-renk);
    transition: all var(--gecis);
}

.why-us-item:hover .why-us-icon {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}

.why-us-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.why-us-item p {
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    line-height: 1.6;
}

/* Neden Biz Responsive */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   15. ÖNE ÇIKAN ÜRÜNLER — Ürün Kartları Grid
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: block;
    background-color: var(--yuzey);
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--gecis), box-shadow var(--gecis);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge-guclu);
    color: inherit;
}

.product-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--ana-renk);
    color: var(--beyaz);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 0;
    z-index: 2;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--yazi-renk);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--yazi-yumusak);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-card-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ana-renk);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Ürünler Responsive */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   16. ANAHTAR TESLİM SÜREÇ — Timeline / Süreç Barı
   ============================================================ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Yatay çizgi */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background-color: var(--border-renk);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background-color: var(--yuzey);
    border: 3px solid var(--border-renk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yazi-yumusak);
    position: relative;
    z-index: 1;
    transition: all var(--gecis);
}

.process-step:hover .process-step-number,
.process-step.active .process-step-number {
    background-color: var(--ana-renk);
    border-color: var(--ana-renk);
    color: var(--beyaz);
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--yazi-yumusak);
    line-height: 1.5;
}

/* Süreç Responsive */
@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .process-step {
        text-align: left;
        padding-left: 100px;
    }

    .process-step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0;
    }
}


/* ============================================================
   17. BLOG KARTLARI — Grid
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--yuzey);
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--gecis), box-shadow var(--gecis);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge-guclu);
    color: inherit;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--yazi-yumusak);
    margin-bottom: 10px;
}

.blog-card-date i {
    color: var(--ana-renk);
}

.blog-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--yazi-renk);
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ana-renk);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   18. GALERİ GRID — 4 Kolon, Hover Overlay
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 26, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--gecis);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--beyaz);
}

.gallery-overlay span {
    font-size: 0.85rem;
    color: var(--beyaz);
    font-weight: 600;
}

/* Galeri Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   19. LİGHTBOX — Tam Ekran Overlay
   ============================================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--gecis);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Kapatma Butonu */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    color: var(--beyaz);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gecis-hizli);
    z-index: 10;
}

.lightbox-close:hover {
    background-color: var(--vurgu-renk);
    border-color: var(--vurgu-renk);
}

/* Ana Görsel */
.lightbox-content {
    max-width: 90%;
    max-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 0;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

/* Oklar */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: var(--beyaz);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gecis-hizli);
    z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--ana-renk);
    border-color: var(--ana-renk);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Sayaç */
.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

/* Thumbnail Şeridi */
.lightbox-thumbnails {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    overflow-x: auto;
    max-width: 90%;
}

.lightbox-thumb {
    width: 70px;
    height: 50px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all var(--gecis-hizli);
    flex-shrink: 0;
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
    opacity: 1;
    border-color: var(--beyaz);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .lightbox-counter {
        top: 16px;
        left: 16px;
        font-size: 0.85rem;
    }

    .lightbox-content {
        max-width: 100%;
        width: 100%;
        padding: 60px 10px 10px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-content img {
        max-height: 55vh;
        max-width: 100%;
        width: auto;
    }

    /* Oklar — resmin altında sağ altta */
    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: auto;
        bottom: 90px;
        transform: none;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: auto;
        right: 56px;
    }

    .lightbox-next {
        right: 10px;
    }

    /* Thumbnail bar — görünür */
    .lightbox-thumbnails {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        gap: 6px;
        overflow-x: auto;
        max-width: 100%;
        margin-top: 0;
        background-color: rgba(0,0,0,0.7);
        -webkit-overflow-scrolling: touch;
    }

    .lightbox-thumb,
    .lightbox-thumbnails img.lightbox-thumb {
        width: 56px;
        height: 42px;
        min-width: 56px;
        flex-shrink: 0;
    }
}


/* ============================================================
   20. CTA BÖLÜMÜ — Geniş Arka Plan
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--ana-koyu) 0%, var(--ana-renk) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--beyaz);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA WhatsApp — Solid yeşil */
.cta-buttons .btn-whatsapp,
.cta-section .btn-whatsapp {
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
}

.cta-buttons .btn-whatsapp:hover,
.cta-section .btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}


/* ============================================================
   21. FOOTER — 4 Sütunlu Grid
   ============================================================ */
.footer,
.site-footer {
    background-color: var(--koyu-yuzey);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

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

/* Footer Logo / Bilgi */
.footer-about .footer-logo img,
.footer-brand .footer-logo img,
.footer-col.footer-brand .footer-logo img {
    height: 58px;
    width: auto;
    margin-bottom: 16px;
}

.footer-about .footer-logo .logo-text,
.footer-brand .footer-logo .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--beyaz);
    margin-bottom: 12px;
}

.footer-about p,
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--gecis-hizli);
}

.footer-social a:hover {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}

/* Footer Sütun Başlıkları */
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--beyaz);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--ana-renk);
}

/* Footer Link Listesi */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all var(--gecis-hizli);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--ana-renk);
}

.footer-links li a:hover {
    color: var(--beyaz);
    padding-left: 4px;
}

/* Footer İletişim */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact li i {
    color: var(--ana-renk);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

.footer-contact li a:hover {
    color: var(--beyaz);
}

/* Footer WhatsApp Butonu */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: background-color var(--gecis);
}

.footer-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}

/* Footer Alt Bar */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

.footer-bottom a:hover {
    color: var(--beyaz);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   22. SABİT BUTONLAR — Sol Kenar Fixed
   ============================================================ */
.fixed-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fixed-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--beyaz);
    transition: all var(--gecis);
    border-radius: 0;
}

.fixed-btn-phone {
    background-color: var(--ana-renk);
}

.fixed-btn-phone:hover {
    background-color: var(--ana-koyu);
    color: var(--beyaz);
}

.fixed-btn-whatsapp {
    background-color: #25D366;
}

.fixed-btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}

/* Mobilde konum alt sağ */
@media (max-width: 768px) {
    .fixed-buttons {
        left: auto;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
    }

    .fixed-btn {
        width: 48px;
        height: 48px;
    }
}


/* ============================================================
   23. SİDEBAR — Sticky, 320px
   ============================================================ */
.sidebar {
    width: 320px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--yuzey);
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ana-renk);
}

/* Hizmet/Ürün Listesi */
.sidebar-nav li {
    border-bottom: 1px solid var(--border-renk);
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--yazi-renk);
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: var(--ana-renk);
    font-weight: 600;
}

.sidebar-nav li a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--yazi-yumusak);
    transition: all var(--gecis-hizli);
}

.sidebar-nav li a:hover::after,
.sidebar-nav li a.active::after {
    color: var(--ana-renk);
    transform: translateX(3px);
}

/* Sidebar WhatsApp */
.sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--gecis);
}

.sidebar-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}

.sidebar-whatsapp i {
    font-size: 1.1rem;
}


/* ============================================================
   24. CONTENT WITH SIDEBAR LAYOUT
   ============================================================ */
.content-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .content-sidebar-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        width: 100%;
        position: static;
    }
}


/* ============================================================
   25. BREADCRUMB — Sayfa Üstü Navigasyon
   ============================================================ */
.breadcrumb-section {
    background-color: var(--zemin);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-renk);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb li a {
    color: var(--yazi-yumusak);
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

.breadcrumb li a:hover {
    color: var(--ana-renk);
}

.breadcrumb li.active {
    color: var(--ana-renk);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--yazi-yumusak);
    font-size: 0.7rem;
}


/* ============================================================
   26. SSS ACCORDION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background-color: var(--yuzey);
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    border-left: 4px solid var(--ana-renk);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--yazi-renk);
    text-align: left;
    line-height: 1.5;
    transition: color var(--gecis-hizli);
}

.faq-question:hover {
    color: var(--ana-renk);
}

/* + ikonu sağda */
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ana-renk);
    transition: transform 0.35s ease;
    margin-left: 12px;
}

/* Açıkken 45° dönme (+ → x) */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Cevap Alanı */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    line-height: 1.7;
}


/* ============================================================
   27. FORM STİLLERİ — Input, Textarea, Select, Buton
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--yazi-renk);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--vurgu-renk);
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--yazi-renk);
    background-color: var(--yuzey);
    border: 1px solid var(--border-renk);
    border-radius: 0;
    transition: border-color var(--gecis), box-shadow var(--gecis);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--ana-renk);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

.form-control::placeholder {
    color: var(--yazi-yumusak);
    opacity: 0.7;
}

/* Textarea — Sabit 140px yükseklik */
textarea.form-control {
    height: 140px;
    resize: vertical;
}

/* Select */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Checkbox / Radio */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--ana-renk);
}

.form-check label {
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    cursor: pointer;
}

/* Form Buton */
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color var(--gecis);
}

.form-submit:hover {
    background-color: var(--ana-koyu);
}

/* İnline form grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   28. HAKKIMIZDA SAYFASI — İki Bölümlü Grid
   ============================================================ */

/* Bölüm 1: Sol görsel + Sağ metin */
.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-section-image {
    overflow: hidden;
    border-radius: 0;
}

.about-section-image img {
    width: 100%;
    height: auto;
}

.about-section-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-section-content p {
    color: var(--yazi-yumusak);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section-content ul {
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.about-section-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--yazi-renk);
}

.about-section-content ul li i {
    color: var(--ana-renk);
    margin-top: 4px;
}

/* Bölüm 2: Sıra değişir (metin sol, görsel sağ) */
.about-section-grid.reverse {
    direction: rtl;
}

.about-section-grid.reverse > * {
    direction: ltr;
}

/* Modern alternatif: order ile */
.about-section-grid.order-reverse .about-section-image {
    order: 2;
}

.about-section-grid.order-reverse .about-section-content {
    order: 1;
}

/* About Responsive */
@media (max-width: 768px) {
    .about-section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section-grid.reverse {
        direction: ltr;
    }

    .about-section-grid.order-reverse .about-section-image,
    .about-section-grid.order-reverse .about-section-content {
        order: unset;
    }
}


/* ============================================================
   29. İLETİŞİM SAYFASI
   ============================================================ */

/* İki Sütunlu Grid — Form + Bilgiler */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--yuzey);
    padding: 32px;
    box-shadow: var(--golge-hafif);
    border-radius: 0;
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

/* İletişim Bilgi Kartları */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--yuzey);
    padding: 24px;
    box-shadow: var(--golge-hafif);
    border-radius: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--cam-renk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ana-renk);
    font-size: 1.1rem;
}

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    margin-bottom: 2px;
}

.contact-info-text a {
    color: var(--yazi-yumusak);
    text-decoration: none;
    transition: color var(--gecis-hizli);
}

.contact-info-text a:hover {
    color: var(--ana-renk);
}

/* İletişim WhatsApp */
.contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--gecis);
}

.contact-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}

/* Aksiyon Barı */
.contact-action-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 0;
    flex-wrap: wrap;
}

/* Harita */
.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    margin-top: 0;
}

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

/* İletişim Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }
}


/* ============================================================
   30. ANİMASYONLAR — Keyframes & Scroll Animate
   ============================================================ */

/* --- Animasyonlu elementlerin üst container — taşma önleme --- */
.animate-container {
    overflow-x: hidden;
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter sayaç animasyonu */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Animate sınıfları — başlangıç durumu */
.animate {
    opacity: 0;
}

.animate.animated {
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.animate-fade-in.animated {
    animation-name: fadeIn;
}

.animate-fade-in-left.animated {
    animation-name: fadeInLeft;
}

.animate-fade-in-right.animated {
    animation-name: fadeInRight;
}

.animate-fade-in-up.animated {
    animation-name: fadeInUp;
}

.animate-scale-in.animated {
    animation-name: scaleIn;
}

/* Gecikme sınıfları */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Mobilde taşma önleme — animasyonlu bölümler */
@media (max-width: 768px) {
    .section {
        overflow-x: hidden;
    }
}


/* ============================================================
   31. WhatsApp BUTONLARI — Global Stiller
   ============================================================ */

/*
 * KRİTİK: Tüm WhatsApp butonları HER ZAMAN solid yeşil (#25D366)
 * arka planlı, beyaz ikon/metin. ASLA outlined/bordered DEĞİL.
 */

.btn-whatsapp {
    background-color: #25D366 !important;
    color: var(--beyaz) !important;
    border: none !important;
    border-radius: 0 !important;
}

.btn-whatsapp:hover {
    background-color: #1da851 !important;
    color: var(--beyaz) !important;
}

.btn-whatsapp i,
.btn-whatsapp svg {
    color: var(--beyaz) !important;
}

/* WhatsApp ikon boyutu tutarlılık */
.btn-whatsapp .fa-whatsapp {
    font-size: 1.1em;
}


/* ============================================================
   32. DETAY SAYFASI — Hero Banner, Kapak, İçerik
   ============================================================ */

/* Detay Hero Banner */
.detail-hero {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(139, 26, 26, 0.7) 100%
    );
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.detail-hero-content h1 {
    font-size: 2.2rem;
    color: var(--beyaz);
    margin-bottom: 0.5rem;
}

.detail-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Detail Hero & Detay Hero: TÜM YAZI RENKLERİ BEYAZ --- */
.detail-hero,
.detay-hero {
    color: var(--beyaz);
}

.detail-hero h1,
.detail-hero h2,
.detail-hero-content h1,
.detay-hero h1,
.detay-hero h2 {
    color: var(--beyaz) !important;
}

.detail-hero .breadcrumb,
.detail-hero .breadcrumb li,
.detail-hero .breadcrumb li a,
.detail-hero .breadcrumb li.active,
.detail-hero .breadcrumb-separator,
.detail-hero-content .breadcrumb,
.detail-hero-content .breadcrumb li,
.detail-hero-content .breadcrumb li a,
.detail-hero-content .breadcrumb li.active,
.detail-hero-content .breadcrumb-separator,
.detay-hero .breadcrumb,
.detay-hero .breadcrumb li,
.detay-hero .breadcrumb li a,
.detay-hero .breadcrumb li.active,
.detay-hero .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.75);
}

.detail-hero .breadcrumb li a:hover,
.detail-hero-content .breadcrumb li a:hover,
.detay-hero .breadcrumb li a:hover {
    color: var(--beyaz);
}

.detail-hero .breadcrumb li.active,
.detail-hero-content .breadcrumb li.active,
.detay-hero .breadcrumb li.active {
    color: var(--beyaz);
    font-weight: 600;
}

.detail-hero .section-title,
.detay-hero .section-title {
    color: var(--beyaz) !important;
}

.detail-hero .section-title::after,
.detay-hero .section-title::after {
    background-color: var(--beyaz);
}

/* Kapak Görseli */
.detail-cover {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 30px;
}

.detail-cover img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* İçerik Alanı */
.detail-content {
    padding: 40px 0;
}

.detail-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.detail-content h2:first-child {
    margin-top: 0;
}

.detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.detail-content p {
    color: var(--yazi-yumusak);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.detail-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    list-style: disc;
}

.detail-content ul li {
    margin-bottom: 6px;
    color: var(--yazi-yumusak);
    line-height: 1.7;
}

.detail-content img {
    margin: 1.5rem 0;
    border-radius: 0;
}

/* Detay Hero Responsive */
@media (max-width: 768px) {
    .detail-hero {
        height: 220px;
    }

    .detail-hero-content h1 {
        font-size: 1.6rem;
    }
}


/* ============================================================
   33. BLOG DETAY SAYFASI
   ============================================================ */
.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-header h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Yazar + Tarih Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--yazi-yumusak);
}

.blog-meta-item i {
    color: var(--ana-renk);
    font-size: 0.9rem;
}

/* Blog Kapak Görseli */
.blog-detail-cover {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 30px;
}

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

/* Blog ve Detay Sayfaları İçerik Tipografisi */
.blog-detay,
.content-with-sidebar article {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--yazi-renk);
}

.blog-detay h2,
.content-with-sidebar article h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ana-koyu);
    font-weight: 700;
}

.blog-detay h3,
.content-with-sidebar article h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ana-koyu);
    font-weight: 600;
}

.blog-detay p,
.content-with-sidebar article p {
    margin-bottom: 1.5rem;
    color: var(--yazi-renk);
}

.blog-detay ul,
.blog-detay ol,
.content-with-sidebar article ul,
.content-with-sidebar article ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--yazi-renk);
}

.blog-detay ul,
.content-with-sidebar article ul { list-style: disc; }

.blog-detay ol,
.content-with-sidebar article ol { list-style: decimal; }

.blog-detay li,
.content-with-sidebar article li {
    margin-bottom: 8px;
}

.blog-detay blockquote,
.content-with-sidebar article blockquote {
    border-left: 4px solid var(--ana-renk);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background-color: var(--cam-renk);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--yazi-renk);
}

.blog-detay img,
.content-with-sidebar article img {
    margin: 2rem 0;
    border-radius: 0;
    max-width: 100%;
    height: auto;
}

/* Etiketler */
.blog-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-renk);
}

.blog-tags span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yazi-renk);
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    background-color: var(--zemin);
    color: var(--yazi-yumusak);
    border: 1px solid var(--border-renk);
    border-radius: 0;
    text-decoration: none;
    transition: all var(--gecis-hizli);
}

.blog-tag:hover {
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border-color: var(--ana-renk);
}

/* Paylaşım */
.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.blog-share span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yazi-renk);
}

.blog-share a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--zemin);
    color: var(--yazi-yumusak);
    border-radius: 0;
    font-size: 0.9rem;
    transition: all var(--gecis-hizli);
}

.blog-share a:hover {
    background-color: var(--ana-renk);
    color: var(--beyaz);
}

/* Blog Navigasyon (Önceki/Sonraki) */
.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-renk);
}

.blog-nav-item {
    display: block;
    padding: 16px;
    background-color: var(--zemin);
    text-decoration: none;
    transition: all var(--gecis-hizli);
    border-radius: 0;
}

.blog-nav-item:hover {
    background-color: var(--cam-renk);
}

.blog-nav-label {
    font-size: 0.78rem;
    color: var(--yazi-yumusak);
    margin-bottom: 4px;
    display: block;
}

.blog-nav-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--yazi-renk);
}

.blog-nav-item.next {
    text-align: right;
}

@media (max-width: 576px) {
    .blog-navigation {
        grid-template-columns: 1fr;
    }

    .blog-nav-item.next {
        text-align: left;
    }
}


/* ============================================================
   34. SCHEMA & YAPISAL STILLER
   ============================================================ */

/* Schema için görünmez meta bilgiler */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Schema itemscope container */
[itemscope] {
    position: relative;
}

/* Rating Stars */
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #F59E0B;
    font-size: 0.9rem;
}

.rating-value {
    font-weight: 600;
    color: var(--yazi-renk);
    margin-left: 6px;
    font-size: 0.85rem;
}

/* Yapısal bilgi kutuları */
.info-box {
    background-color: var(--cam-renk);
    padding: 20px;
    border-radius: 0;
    margin-bottom: 20px;
    border-left: 4px solid var(--ikincil-renk);
}

.info-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--ikincil-renk);
}

.info-box p {
    font-size: 0.88rem;
    color: var(--yazi-yumusak);
    margin-bottom: 0;
}


/* ============================================================
   35. SAYFALAMA (PAGİNATİON)
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--yazi-renk);
    background-color: var(--yuzey);
    border: 1px solid var(--border-renk);
    border-radius: 0;
    text-decoration: none;
    transition: all var(--gecis-hizli);
}

.pagination a:hover {
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border-color: var(--ana-renk);
}

.pagination .active {
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border-color: var(--ana-renk);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* ============================================================
   36. SAYFA İÇ BANNER (Alt Sayfa Hero)
   ============================================================ */
.page-banner {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.88) 0%,
        rgba(139, 26, 26, 0.75) 100%
    );
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 2.2rem;
    color: var(--beyaz);
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Banner içi breadcrumb */
.page-banner .breadcrumb {
    margin-top: 12px;
}

.page-banner .breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
}

.page-banner .breadcrumb li a:hover {
    color: var(--beyaz);
}

.page-banner .breadcrumb li.active {
    color: var(--beyaz);
}

.page-banner .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }

    .page-banner h1 {
        font-size: 1.6rem;
    }
}


/* ============================================================
   37. YARDIMCI (UTILITY) SINIFLARI
   ============================================================ */

/* Metin Hizalama */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Metin Renkleri */
.text-primary { color: var(--ana-renk); }
.text-white { color: var(--beyaz); }
.text-muted { color: var(--yazi-yumusak); }

/* Arka Plan */
.bg-primary { background-color: var(--ana-renk); }
.bg-white { background-color: var(--yuzey); }
.bg-light { background-color: var(--zemin); }
.bg-dark { background-color: var(--koyu-yuzey); }
.bg-cam { background-color: var(--cam-renk); }

/* Margin */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Padding */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-flex { display: inline-flex; }

/* Flex */
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Font Weight */
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* Responsive gizleme */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

@media (max-width: 992px) {
    .hide-tablet { display: none !important; }
}


/* ============================================================
   38. TABLO STİLLERİ
   ============================================================ */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-renk);
    font-size: 0.9rem;
}

.table th {
    background-color: var(--koyu-yuzey);
    color: var(--beyaz);
    font-weight: 600;
    font-family: var(--font-heading);
}

.table tbody tr:hover {
    background-color: var(--cam-renk);
}

.table-striped tbody tr:nth-child(even) {
    background-color: var(--zemin);
}


/* ============================================================
   39. ALERT / BİLDİRİM KUTULARI
   ============================================================ */
.alert {
    padding: 16px 20px;
    border-radius: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert i {
    margin-top: 2px;
    flex-shrink: 0;
}

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

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

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background-color: var(--cam-renk);
    color: var(--ikincil-renk);
    border-left: 4px solid var(--ikincil-renk);
}


/* ============================================================
   40. LOADING / SPINNER
   ============================================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--yuzey);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease;
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-renk);
    border-top-color: var(--ana-renk);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* İçerik yükleme spinner */
.content-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}


/* ============================================================
   41. SCROLL TO TOP BUTONU
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--gecis);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--ana-koyu);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 60px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}


/* ============================================================
   42. COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--koyu-yuzey);
    color: rgba(255, 255, 255, 0.85);
    padding: 20px 0;
    z-index: 9998;
    display: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.85rem;
    margin: 0;
    flex: 1;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-banner .btn {
    flex-shrink: 0;
}


/* ============================================================
   43. REFERANSLAR / MÜŞTERİ LOGOLARI
   ============================================================ */
.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo {
    height: 50px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--gecis);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}


/* ============================================================
   44. TESTİMONİALS / YORUMLAR
   ============================================================ */
.testimonial-card {
    background-color: var(--yuzey);
    padding: 32px;
    box-shadow: var(--golge-hafif);
    border-radius: 0;
    border-top: 3px solid var(--ana-renk);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--ana-renk);
    opacity: 0.15;
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--yazi-yumusak);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--yazi-renk);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--yazi-yumusak);
}


/* ============================================================
   45. ÜRÜN DETAY SAYFASI
   ============================================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-detail-gallery {
    position: relative;
}

.product-detail-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 12px;
}

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

.product-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.product-detail-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--gecis-hizli);
}

.product-detail-thumb.active,
.product-detail-thumb:hover {
    border-color: var(--ana-renk);
}

.product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-detail-info p {
    color: var(--yazi-yumusak);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-detail-features {
    margin: 1.5rem 0;
    padding: 0;
}

.product-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-renk);
    font-size: 0.92rem;
}

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

.product-detail-features li i {
    color: var(--ana-renk);
    margin-top: 3px;
}

.product-detail-cta {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Ürün Detay WhatsApp */
.product-detail-cta .btn-whatsapp {
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
}

.product-detail-cta .btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   46. HİZMET DETAY SAYFASI
   ============================================================ */
.service-detail-content {
    padding: 40px 0;
}

.service-detail-content h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-renk);
}

.service-detail-content h2:first-child {
    margin-top: 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background-color: var(--zemin);
    border-radius: 0;
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--cam-renk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ana-renk);
    font-size: 1rem;
}

.service-feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.service-feature-text p {
    font-size: 0.85rem;
    color: var(--yazi-yumusak);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Hizmet CTA Barı */
.service-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 30px;
    background-color: var(--cam-renk);
    border-radius: 0;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-cta-bar p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--yazi-renk);
    margin: 0;
}

.service-cta-bar .btn-whatsapp {
    background-color: #25D366;
    color: var(--beyaz);
    border: none;
    border-radius: 0;
}

.service-cta-bar .btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--beyaz);
}


/* ============================================================
   47. GALERİ FİLTRE BUTONLARI
   ============================================================ */
.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--yazi-renk);
    background-color: var(--zemin);
    border: 1px solid var(--border-renk);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--gecis-hizli);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--ana-renk);
    color: var(--beyaz);
    border-color: var(--ana-renk);
}


/* ============================================================
   48. HATA SAYFALARI (404 vb.)
   ============================================================ */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--ana-renk);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.error-page h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1rem;
    color: var(--yazi-yumusak);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}


/* ============================================================
   49. PRİNT STİLLERİ
   ============================================================ */
@media print {
    .topbar,
    .header,
    .fixed-buttons,
    .scroll-to-top,
    .cookie-banner,
    .footer,
    .sidebar,
    .lightbox,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section {
        padding: 20px 0;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}


/* ============================================================
   50. BODY.NO-SCROLL (Menü/Lightbox Açıkken)
   ============================================================ */
body.no-scroll {
    overflow: hidden;
}


/* ============================================================
   51. PHP-CSS CLASS UYUMLULUK ALIAS'LARI
   PHP dosyalarındaki class isimlerini CSS'teki mevcut stillere eşler
   ============================================================ */

/* --- HEADER --- */
.main-header { position: sticky; top: 0; z-index: 1000; background-color: var(--yuzey); height: var(--header-h); box-shadow: var(--golge-hafif); transition: box-shadow var(--gecis); }
.main-header.scrolled { box-shadow: var(--golge-orta); }
.main-header .container,
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; width: 100%; }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta .btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 38px; padding: 0 20px; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; border-radius: 0; text-decoration: none; transition: all var(--gecis); white-space: nowrap; line-height: 1; }
.header-cta .btn-cta { background-color: var(--ana-renk); color: var(--beyaz); border: 2px solid var(--ana-renk); }
.header-cta .btn-cta:hover { background-color: var(--ana-koyu); border-color: var(--ana-koyu); }
.header-cta .btn-whatsapp { background-color: #25D366; color: var(--beyaz); border: 2px solid #25D366; }
.header-cta .btn-whatsapp:hover { background-color: #1da851; border-color: #1da851; }

/* Logo — .logo class */
.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo img { height: 58px; width: auto; }

@media (max-width: 1024px) {
    .main-nav, .header-actions, .header-cta { display: none !important; }
    .main-header { height: 70px; }
    .main-header .container { padding-left: 10px; padding-right: 10px; }
    .header-inner { padding: 0; }
    .logo img { height: 56px; }
    .hamburger { display: flex; margin-left: auto; width: 44px; height: 44px; }
    .hamburger span { width: 26px; height: 2.5px; }
}
@media (max-width: 480px) {
    .main-header { height: 64px; }
    .logo img { height: 50px; }
}

/* --- BTN-CTA (alias for btn-primary) --- */
.btn-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; background-color: var(--ana-renk); color: var(--beyaz); border: 2px solid var(--ana-renk); border-radius: 0; text-decoration: none; transition: all var(--gecis); cursor: pointer; }
.btn-cta:hover { background-color: var(--ana-koyu); border-color: var(--ana-koyu); color: var(--beyaz); }
.btn-cta-light { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; background-color: var(--beyaz); color: var(--ana-renk); border: 2px solid var(--beyaz); border-radius: 0; text-decoration: none; transition: all var(--gecis); }
.btn-cta-light:hover { background-color: rgba(255,255,255,0.9); }
.btn-block { display: block; width: 100%; text-align: center; }

/* --- HERO SLIDER ALIASES --- */
.hero-slides { position: relative; width: 100%; }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 50px; height: 50px; background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 0; color: var(--beyaz); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(4px); }
.hero-prev { left: 30px; }
.hero-next { right: 30px; }
.hero-prev:hover, .hero-next:hover { background-color: var(--ana-renk); border-color: var(--ana-renk); }
.hero-bullets { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 8px; }
.hero-bullet { width: 28px; height: 4px; border: none; border-radius: 0; background-color: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.4s ease; padding: 0; }
.hero-bullet.active { width: 48px; background-color: var(--beyaz); }
.hero-bullet:hover { background-color: rgba(255,255,255,0.7); }
@media (max-width: 992px) {
    .hero-content h1, .hero-content h2 { font-size: 2.4rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-btn-primary, .hero-btn-outline { padding: 12px 24px; font-size: 0.88rem; }
}
@media (max-width: 768px) {
    .hero-slider { min-height: 540px; height: 75vh; overflow: hidden; }
    .hero-slide { min-height: 540px; height: 75vh; align-items: flex-end; }
    .hero-slide-overlay, .hero-slide::before { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.15) 100%); }
    .hero-content { padding: 0 0 90px; max-width: 100%; }
    .hero-content h1 { font-size: 2rem !important; line-height: 1.2 !important; margin-bottom: 14px; letter-spacing: -0.3px; }
    .hero-content h2 { font-size: 2rem !important; line-height: 1.2 !important; margin-bottom: 14px; letter-spacing: -0.3px; }
    .hero-content h1 br,
    .hero-content h2 br { display: none; }
    .hero-content h1 em,
    .hero-content h2 em { font-style: normal; display: inline; line-height: inherit; }
    .hero-desc { font-size: 1.12rem !important; line-height: 1.65 !important; margin-bottom: 22px; max-width: 100%; color: rgba(255,255,255,0.9) !important; }
    .hero-desc br { display: none; }
    .hero-badge { font-size: 0.82rem; padding: 6px 14px; margin-bottom: 16px; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .hero-btn-primary,
    .hero-btn-outline { width: 100%; justify-content: center; padding: 13px 16px; font-size: 0.88rem; text-align: center; }
    .hero-btn-outline { background-color: var(--yuzey); color: var(--yazi-renk); border-color: var(--border-renk); }
    .hero-prev, .hero-next { top: auto; bottom: 22px; transform: none; width: 36px; height: 36px; font-size: 0.85rem; background-color: rgba(255,255,255,0.15); }
    .hero-prev { left: auto; right: 56px; }
    .hero-next { right: 15px; }
    .hero-bullets { bottom: 28px; left: 20px; transform: none; }
    .hero-bullet { width: 18px; height: 3px; }
    .hero-bullet.active { width: 36px; }
}

/* --- MOBILE OVERLAY --- */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 998; display: none; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }

/* Mobile menu extras */
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-bottom: 1px solid var(--border-renk); }
.mobile-menu-contact { padding: 15px 20px; border-top: 1px solid var(--border-renk); }
.mobile-nav-menu { list-style: none; padding: 0; margin: 0; }
.mobile-nav-menu > li { border-bottom: 1px solid var(--border-renk); }
.mobile-nav-menu > li > a { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; color: var(--yazi-renk); font-weight: 600; text-decoration: none; transition: color var(--gecis-hizli); }
.mobile-nav-menu > li > a:hover, .mobile-nav-menu > li > a.active { color: var(--ana-renk); }
.mobile-has-dropdown { position: relative; }
.mobile-dropdown-toggle, .mobile-accordion-btn { background: none; border: none; padding: 14px 20px; width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; color: var(--yazi-renk); font-weight: 600; font-size: 1rem; cursor: pointer; font-family: var(--font-body); }
.mobile-dropdown-toggle:hover { color: var(--ana-renk); }
.mobile-dropdown { display: none; background-color: var(--zemin); padding: 0; }
.mobile-dropdown.active { display: block; }
.mobile-dropdown li a { display: block; padding: 10px 20px 10px 35px; color: var(--yazi-yumusak); font-size: 0.9rem; text-decoration: none; transition: color var(--gecis-hizli); }
.mobile-dropdown li a:hover { color: var(--ana-renk); }

/* --- DETAY HERO --- */
.detay-hero { position: relative; padding: 60px 0; background: linear-gradient(135deg, var(--koyu-yuzey) 0%, var(--ikincil-renk) 100%); overflow: hidden; }
.detay-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('') center/cover no-repeat; opacity: 0.05; }
.detay-hero .container { position: relative; z-index: 2; }
.detay-hero h1 { font-size: 2.2rem; color: var(--beyaz); margin-bottom: 0.5rem; }
.detay-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* --- BREADCRUMB in detay-hero --- */
.detay-hero .breadcrumb { margin-bottom: 15px; }
.detay-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.detay-hero .breadcrumb span { color: var(--beyaz); }

/* --- DETAY KAPAK --- */
.detay-kapak { width: 100%; max-height: 400px; object-fit: cover; margin-bottom: 30px; border-radius: 0; }

/* --- CONTENT WITH SIDEBAR --- */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.content-with-sidebar > .sidebar,
.content-with-sidebar > .sidebar-sticky,
.content-with-sidebar > aside {
    position: sticky;
    top: 90px;
    align-self: start;
}
@media (max-width: 1024px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
    .content-with-sidebar > .sidebar,
    .content-with-sidebar > .sidebar-sticky,
    .content-with-sidebar > aside {
        position: static;
    }
}

/* --- SECTION TITLE/SUBTITLE --- */
.section-title { font-size: 2rem; font-weight: 700; color: var(--yazi-renk); margin-bottom: 0.5rem; text-align: center; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--ana-renk); margin: 12px auto 0; }
.section-subtitle { font-size: 1rem; color: var(--yazi-yumusak); text-align: center; max-width: 600px; margin: 0 auto 40px; }
.section-footer { text-align: center; margin-top: 40px; }

/* --- HIZMET KARTLARI (PHP names) --- */
.hizmetler-section { padding: 80px 0; }
.hizmetler-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hizmet-card { display: block; background-color: var(--yuzey); box-shadow: var(--golge-hafif); overflow: hidden; text-decoration: none; color: var(--yazi-renk); transition: all var(--gecis); border-radius: 0; }
.hizmet-card:hover { transform: translateY(-4px); box-shadow: var(--golge-orta); }
.hizmet-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.hizmet-card:hover img { transform: scale(1.05); }
.hizmet-icon { width: 56px; height: 56px; background-color: var(--ana-renk); color: var(--beyaz); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; margin: 20px 20px 15px; }
.hizmet-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--yazi-renk); padding: 0 20px; }
.hizmet-desc { font-size: 0.9rem; color: var(--yazi-yumusak); line-height: 1.6; padding: 0 20px 20px; }
@media (max-width: 1024px) { .hizmetler-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .hizmetler-grid { grid-template-columns: 1fr; } }

/* --- FIRMA TANITIM --- */
.firma-tanitim-section { padding: 80px 0; }
.firma-tanitim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.firma-tanitim-img img { width: 100%; height: auto; border-radius: 0; }
.firma-tanitim-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: var(--yazi-renk); }
.firma-tanitim-content p { color: var(--yazi-yumusak); line-height: 1.8; margin-bottom: 15px; }
.firma-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.stat-plus { color: var(--ana-renk); font-weight: 700; }
@media (max-width: 768px) {
    .firma-tanitim-grid { grid-template-columns: 1fr; }
    .firma-stats { grid-template-columns: repeat(2, 1fr); }
}

/* --- NEDEN BIZ --- */
.neden-biz-section { padding: 80px 0; background-color: var(--zemin); }
.neden-biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.neden-biz-card { background-color: var(--yuzey); padding: 30px; text-align: center; box-shadow: var(--golge-hafif); transition: all var(--gecis); border-radius: 0; }
.neden-biz-card:hover { transform: translateY(-4px); box-shadow: var(--golge-orta); }
.neden-biz-icon { width: 64px; height: 64px; background-color: var(--cam-renk); color: var(--ana-renk); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.4rem; margin: 0 auto 15px; }
.neden-biz-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.neden-biz-card p { font-size: 0.9rem; color: var(--yazi-yumusak); line-height: 1.6; }
@media (max-width: 768px) { .neden-biz-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .neden-biz-grid { grid-template-columns: 1fr; } }

/* --- ÜRÜN KARTLARI (PHP names) --- */
.urunler-section { padding: 80px 0; }
.urunler-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.urun-card { display: block; background-color: var(--yuzey); box-shadow: var(--golge-hafif); overflow: hidden; text-decoration: none; color: var(--yazi-renk); transition: all var(--gecis); border-radius: 0; }
.urun-card:hover { transform: translateY(-4px); box-shadow: var(--golge-orta); }
.urun-img { overflow: hidden; }
.urun-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.urun-card:hover .urun-img img { transform: scale(1.05); }
.urun-info { padding: 20px; }
.urun-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.urun-info p { font-size: 0.9rem; color: var(--yazi-yumusak); line-height: 1.6; margin-bottom: 12px; }
.urun-link { font-size: 0.9rem; color: var(--ana-renk); font-weight: 600; text-decoration: none; }
@media (max-width: 1024px) { .urunler-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .urunler-grid { grid-template-columns: 1fr; } }

/* --- SÜREÇ (PHP names) --- */
.surec-section { padding: 80px 0; background-color: var(--zemin); }
.surec-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; position: relative; }
.surec-grid::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 3px; background: var(--border-renk); z-index: 0; }
.surec-item { position: relative; z-index: 1; }
.surec-icon, .surec-number { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 15px; font-size: 1.3rem; font-weight: 700; }
.surec-icon { background-color: var(--ana-renk); color: var(--beyaz); }
.surec-number { background-color: var(--cam-renk); color: var(--ana-renk); }
.surec-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.surec-item p { font-size: 0.85rem; color: var(--yazi-yumusak); }
.surec-adimlari { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.surec-adim { display: block; background-color: var(--cam-renk); padding: 15px 20px; border-left: 3px solid var(--ana-renk); }
.surec-numara { display: none; }
.surec-icerik h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; color: var(--ana-koyu); }
.surec-icerik p { font-size: 0.9rem; color: var(--yazi-renk); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
    .surec-grid { grid-template-columns: repeat(2, 1fr); }
    .surec-grid::before { display: none; }
}

/* --- BLOG SECTION (PHP names) --- */
.blog-section { padding: 80px 0; }
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.blog-card-link:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--yazi-renk); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--yazi-yumusak); line-height: 1.6; }
.blog-img { overflow: hidden; height: 200px; }
.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-info { padding: 20px; }
.blog-info time { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--yazi-yumusak); margin-bottom: 8px; }
.blog-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--yazi-renk); line-height: 1.4; }
.blog-info p { font-size: 0.9rem; color: var(--yazi-yumusak); line-height: 1.6; }
.blog-detay .blog-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 25px; color: var(--yazi-yumusak); font-size: 0.9rem; }
.blog-detay .blog-meta span { display: flex; align-items: center; gap: 6px; }

/* --- GALERI (PHP names — alias) --- */
.galeri-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.galeri-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 0; aspect-ratio: 4/3; box-shadow: 0 2px 8px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s ease; }
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.galeri-item:hover img { transform: scale(1.08); }
.galeri-section { padding: 80px 0; }
@media (max-width: 1024px) { .galeri-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .galeri-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .galeri-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* --- LIGHTBOX img alias --- */
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; }

/* --- SSS / FAQ (PHP names — alias) --- */
.sss-section { padding: 80px 0; }
.sss-kategori { margin-bottom: 40px; }
.sss-kategori h2 { font-size: 1.4rem; font-weight: 700; color: var(--yazi-renk); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border-renk); }
.sss-item { border-left: 3px solid transparent; margin-bottom: 8px; background-color: var(--yuzey); box-shadow: var(--golge-hafif); transition: all var(--gecis); border-radius: 0; }
.sss-item.active { border-left-color: var(--ana-renk); }
.sss-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 20px; background: none; border: none; cursor: pointer; font-size: 0.88rem; font-weight: 600; color: var(--yazi-renk); text-align: left; font-family: var(--font-body); transition: color var(--gecis-hizli); }
.sss-question:hover { color: var(--ana-renk); }
.sss-icon { font-size: 1.2rem; font-weight: 700; color: var(--ana-renk); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 10px; }
.sss-item.active .sss-icon { transform: rotate(45deg); }
.sss-answer { max-height: 0; overflow: hidden; padding: 0 20px; font-size: 0.9rem; color: var(--yazi-yumusak); line-height: 1.7; transition: max-height 0.35s ease, padding 0.35s ease; }
.sss-item.active .sss-answer { padding-bottom: 16px; }
.sss-block { margin-bottom: 20px; }
.sss-cta { text-align: center; margin-top: 40px; padding: 30px; background-color: var(--zemin); }



/* --- FIXED CONTACT BUTTONS (PHP name) --- */
.fixed-contact-buttons { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 997; display: flex; flex-direction: column; gap: 4px; }
.fixed-contact-buttons a { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--beyaz); font-size: 1.2rem; text-decoration: none; transition: all var(--gecis); border-radius: 0; }
@media (max-width: 768px) {
    .fixed-contact-buttons { top: auto; bottom: 20px; left: 10px; transform: none; }
    .fixed-contact-buttons a { width: 42px; height: 42px; font-size: 1.1rem; }
}

/* --- SIDEBAR extras --- */
.sidebar-sticky { position: -webkit-sticky !important; position: sticky !important; top: 90px !important; align-self: start !important; }
.sidebar-title { font-size: 1.1rem; font-weight: 700; color: var(--yazi-renk); padding-bottom: 10px; margin-bottom: 15px; border-bottom: 2px solid var(--ana-renk); }
.sidebar-links { list-style: none; padding: 0; margin: 0 0 25px; }
.sidebar-links li { border-bottom: 1px solid var(--border-renk); }
.sidebar-links li a { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; color: var(--yazi-yumusak); font-size: 0.9rem; text-decoration: none; transition: color var(--gecis-hizli); }
.sidebar-links li a:hover, .sidebar-links-active a { color: var(--ana-renk); font-weight: 600; }
.sidebar-cta { background: linear-gradient(135deg, var(--ana-renk), var(--ana-koyu)); padding: 25px; text-align: center; margin-top: 25px; border-radius: 0; }
.sidebar-cta-inner { color: var(--beyaz); }
.sidebar-cta-inner h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--beyaz) !important; }
.sidebar-cta-inner p { font-size: 0.9rem; margin-bottom: 15px; color: rgba(255,255,255,0.85); }
.sidebar-blog-posts { list-style: none; padding: 0; margin: 0 0 25px; }
.sidebar-blog-posts li { padding: 8px 0; border-bottom: 1px solid var(--border-renk); }
.sidebar-post-title { font-size: 0.88rem; color: var(--yazi-yumusak); text-decoration: none; display: block; transition: color var(--gecis-hizli); }
.sidebar-post-title:hover { color: var(--ana-renk); }

/* --- CTA extras --- */
.cta-content { text-align: center; }
.cta-title { font-size: 2rem; font-weight: 700; color: var(--beyaz); margin-bottom: 15px; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 25px; }

/* --- FOOTER extras --- */
.site-footer { background-color: var(--koyu-yuzey); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-brand { margin-bottom: 20px; }
.footer-brand img { height: 58px; margin-bottom: 15px; }
.footer-title { font-size: 1.1rem; font-weight: 700; color: var(--beyaz); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--ana-renk); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.tayfa-link { color: var(--vurgu-renk); text-decoration: none; font-weight: 600; }
.tayfa-link:hover { color: var(--beyaz); }

/* --- SPEC TABLE (ürün detay) --- */
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.spec-table th, .spec-table td { padding: 10px 15px; text-align: left; border-bottom: 1px solid var(--border-renk); font-size: 0.9rem; }
.spec-table th { background-color: var(--zemin); font-weight: 600; color: var(--yazi-renk); width: 40%; }
.spec-table td { color: var(--yazi-yumusak); }

/* --- ANIMATE ON SCROLL --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll.fade-in-left { transform: translateX(-30px); }
.animate-on-scroll.fade-in-left.animated { transform: translateX(0); }
.animate-on-scroll.fade-in-right { transform: translateX(30px); }
.animate-on-scroll.fade-in-right.animated { transform: translateX(0); }

@media (max-width: 768px) {
    .animate-on-scroll.fade-in-left { transform: translateY(30px); }
    .animate-on-scroll.fade-in-right { transform: translateY(30px); }
}

/* --- COUNTER --- */
.counter { font-size: 2.5rem; font-weight: 800; color: var(--ana-renk); }

/* --- HAS-DROPDOWN (desktop nav) --- */
.has-dropdown { position: relative; }
.has-dropdown > a i { font-size: 0.65rem; margin-left: 4px; transition: transform 0.3s ease; }
.has-dropdown:hover > a i { transform: rotate(180deg); }

/* ============================================================
   FIN — style.css
   ============================================================ */
