/* ============================================
   EuroGlass - Ana Stil Dosyasi
   Tasarima birebir uyumlu - Koyu tema
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* ADMIN-YONETIMLI DEGISKENLER (header.php :root'a admin panel degerleriyle
       tekrar tanimlar; bunlar fallback). Tema rengini degistirmek icin
       Yonetim Paneli > Ayarlar > Tema bolumunu kullanin. */
    --renk-tema: #00AFAA;
    --renk-metin: #ffffff;
    --renk-baslik: #ffffff;
    --bg: #000000;
    --bg-2: #0d0d0d;
    --kart-bg: #111111;
    --border: rgba(255,255,255,0.06);

    /* LEGACY MAP - eski degiskenler admin'e baglaniyor */
    --primary: var(--renk-tema);
    --primary-dark: #008C88;
    --primary-light: #33BFBB;
    --bg-dark: var(--bg);
    --bg-card: var(--kart-bg);
    --bg-section: var(--bg-2);
    --white: var(--renk-metin);
    --gray-light: #cccccc;
    --gray: #999999;
    --gray-dark: #555555;
    --gray-darker: #333333;
    --border-subtle: var(--border);
    --font: 'Barlow', 'Noto Sans Arabic', 'Segoe UI', Arial, sans-serif;
    --transition: 0.3s ease;
    --header-height-full: 110px;
    --header-height-mobile: 55px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   HEADER - Tek satir layout (1920px tasarim)
   Sol: menu | Orta: logo | Sag: iletisim + sosyal + dil
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg);
}

.header-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Sol: Navigation */
.header-nav {
    display: flex;
    gap: 25px;
    flex: 1;
    align-items: center;
}

.header-nav a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--white);
}

/* Orta: Logo */
.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 90px;
    width: auto;
}

/* Sag: Ust satir iletisim, alt satir sosyal+dil */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 1;
}

.header-right-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 15px;
    white-space: nowrap;
}

.contact-link img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

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

/* Sosyal Ikonlar */
.social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-header .social-icons {
    gap: 12px;
}

.site-header .social-icons a {
    width: 22px;
    height: 22px;
}

.site-footer .social-icons,
.contact-section .social-icons {
    gap: 14px;
}

.site-footer .social-icons a,
.contact-section .social-icons a {
    width: 22px;
    height: 22px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    transition: opacity var(--transition);
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons a img {
    width: 100%;
    height: 100%;
}

/* Dil Secici */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    border: 1px solid var(--renk-tema);
    border-radius: 3px;
    font-size: 14px;
    color: var(--white);
    height: 30px;
}

.lang-selector .flag {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    -o-object-fit: cover;
    object-fit: cover;
}

.lang-selector .arrow {
    font-size: 8px;
    margin-left: 2px;
    transition: transform var(--transition);
}

.lang-selector:hover {
    border-color: var(--primary);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    min-width: 160px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-light);
}

.lang-dropdown a:hover {
    background: rgba(0,175,170,0.1);
    color: var(--primary);
}

.lang-dropdown a img {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO / VIDEO SECTION - Scroll scrubbed video
   hero-section yuksekligi scroll aralıgı olarak kullanılır.
   Ic sticky wrapper viewport'a pinlenir, video tam ekran.
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 600vh;
    background: var(--bg-dark);
    margin-top: 0;
}

.hero-video-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-product-3d {
    position: absolute;
    left: 0;
    bottom: 4%;
    height: 70vh;
    width: auto;
    max-width: none;
    z-index: 4;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    transform: translateX(calc((1 - var(--heroP, 0)) * 6vw + var(--heroP, 0) * (50vw - 50%)));
    transition: transform 0.05s linear;
}

@media (max-width: 480px) {
    .hero-product-3d { display: none; }
}

.hero-video-wrapper::before,
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 90px;
    pointer-events: none;
    z-index: 5;
}

.hero-video-wrapper::before {
    top: 110px;
    height: 150px;
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(0,0,0,0) 100%);
}

@media (max-width: 992px) {
    .hero-video-wrapper::before {
        top: 0;
        height: 100px;
    }
}

.hero-video-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg) 0%, rgba(0,0,0,0) 100%);
}

.hero-video,
.hero-canvas,
.hero-poster {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.hero-canvas {
    background: var(--bg-dark);
}

.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-mouse {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    pointer-events: none;
}
.hero-mouse .hero-skip-btn {
    pointer-events: auto;
}

.mouse-graphic {
    position: relative;
    width: 42px;
    height: 70px;
}

.mouse-body {
    width: 100%;
    height: auto;
    opacity: 0.9;
    display: block;
}

.mouse-arrow {
    position: absolute;
    left: 50%;
    top: 4px;
    width: 28px;
    height: auto;
    transform: translateX(-50%);
    opacity: 1;
    -webkit-animation: mouseArrowMove 1.6s ease-in-out infinite;
    animation: mouseArrowMove 1.6s ease-in-out infinite;
}

@-webkit-keyframes mouseArrowMove {
    0%   { transform: translate(-50%, -3px); }
    50%  { transform: translate(-50%, 3px); }
    100% { transform: translate(-50%, -3px); }
}
@keyframes mouseArrowMove {
    0%   { transform: translate(-50%, -3px); }
    50%  { transform: translate(-50%, 3px); }
    100% { transform: translate(-50%, -3px); }
}

.hero-mouse span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--renk-metin);
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hero-skip-btn {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: var(--renk-metin);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 20px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s, border-color 0.3s, background 0.3s;
    white-space: nowrap;
    pointer-events: auto;
}
.hero-skip-btn:hover {
    opacity: 1;
    border-color: var(--renk-ana);
    background: rgba(0,175,170,0.15);
}

/* Hero scroll scrub pasif: normal yukseklik, video autoplay */
.hero-no-scrub {
    height: auto;
}
.hero-no-scrub .hero-video-wrapper {
    position: relative;
}
.hero-no-scrub .hero-mouse {
    display: none;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    pointer-events: none;
}
.hero-scroll-hint span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--renk-metin);
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}
/* Hero 3D animasyon pasif: sabit konum (baslangic offseti korunur) */
.hero-no-3d-anim .hero-product-3d {
    transform: translateX(6vw);
    transition: none;
}

/* ============================================
   FEATURES - 4 Ikon
   ============================================ */
.features-section {
    padding: 30px 0;
    background: var(--bg);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 180px;
    position: relative;
    text-align: center;
}

.feature-item + .feature-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 160px;
    background: rgba(0, 175, 170, 0.35);
}

.feature-icon {
    height: 110px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    height: 110px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,175,170,0.3));
}

.feature-item h4 {
    display: block;
    color: var(--renk-tema, #00AFAA);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    max-width: 180px;
    line-height: 1.3;
}

/* ============================================
   PRODUCT HERO - Buyuk baslik + araba
   Cam kirilma efekti ile
   ============================================ */
.product-hero {
    position: relative;
    padding: 40px 0 60px;
    background: var(--bg);
    overflow: hidden;
    text-align: center;
}

.ph-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.ph-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-95% + 15px));
    width: 95%;
    max-width: 1050px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

@property --p {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}
@property --lp {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}
.scrub { --p: 0; }

.ph-bg-logo.ph-anim-logo {
    transform: translate(-50%, calc(-95% + 15px + (1 - var(--p)) * 280px));
    opacity: var(--p);
}

.ph-car.ph-anim-car {
    transform: translate(calc(-50% + (1 - var(--p)) * 600px), calc(-45% + 55px - (1 - var(--p)) * 300px)) scale(calc(0.25 + var(--p) * 0.75));
    opacity: var(--p);
}

.ph-title-text.ph-anim-title {
    transform: translateX(calc(-50% - (1 - var(--p)) * 500px));
    opacity: var(--p);
}

.features-section.scrub .feature-item {
    --lp: max(0, min(1, calc((var(--p) - var(--off, 0)) / 0.6)));
    transform: translateY(calc((1 - var(--lp)) * 80px));
    opacity: var(--lp);
    transition: none;
}
.features-section.scrub .feature-item:nth-child(1) { --off: 0; }
.features-section.scrub .feature-item:nth-child(2) { --off: 0.1; }
.features-section.scrub .feature-item:nth-child(3) { --off: 0.2; }
.features-section.scrub .feature-item:nth-child(4) { --off: 0.3; }

.ph-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-45% + 55px));
    width: 78%;
    max-width: 850px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.ph-title {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 640px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.ph-title-text {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    margin: 0;
    text-align: center;
    font-family: var(--font);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(28px, 8.2vw, 100px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: var(--bg);
    -webkit-text-stroke: clamp(1px, 0.2vw, 2px) var(--renk-tema);
    text-stroke: 2px var(--renk-tema);
    white-space: nowrap;
    pointer-events: none;
}

.ph-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-align: center;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    -webkit-text-stroke: 0;
    text-stroke: 0;
    color: transparent;
    background-image: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 42%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0) 58%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 300% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    animation: phShine 5s linear infinite;
    animation-play-state: running !important;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    contain: paint;
}

@keyframes phShine {
    0%,  12%  { background-position: 100% 0; }
    32%       { background-position: 0% 0; }
    100%      { background-position: 0% 0; }
}

.product-hero-desc {
    font-size: 14px;
    color: var(--gray-light);
    max-width: 700px;
    margin: -10px auto 0;
    line-height: 1.8;
    position: relative;
    z-index: 4;
}

/* Cam kirilma efekti - radial cizgiler */
.glass-cracks {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    background:
        /* Merkezi parlak nokta */
        radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 8%),
        /* Kirilma cizgileri - sag ust */
        linear-gradient(25deg, transparent 49.5%, rgba(255,255,255,0.4) 49.5%, rgba(255,255,255,0.4) 50%, transparent 50%),
        linear-gradient(40deg, transparent 49.5%, rgba(255,255,255,0.25) 49.5%, rgba(255,255,255,0.25) 50%, transparent 50%),
        linear-gradient(65deg, transparent 49.5%, rgba(255,255,255,0.3) 49.5%, rgba(255,255,255,0.3) 50%, transparent 50%),
        /* Kirilma cizgileri - sol ust */
        linear-gradient(-30deg, transparent 49.5%, rgba(255,255,255,0.35) 49.5%, rgba(255,255,255,0.35) 50%, transparent 50%),
        linear-gradient(-55deg, transparent 49.5%, rgba(255,255,255,0.2) 49.5%, rgba(255,255,255,0.2) 50%, transparent 50%),
        linear-gradient(-75deg, transparent 49.5%, rgba(255,255,255,0.3) 49.5%, rgba(255,255,255,0.3) 50%, transparent 50%),
        /* Kirilma cizgileri - asagi */
        linear-gradient(100deg, transparent 49.5%, rgba(255,255,255,0.2) 49.5%, rgba(255,255,255,0.2) 50%, transparent 50%),
        linear-gradient(130deg, transparent 49.5%, rgba(255,255,255,0.25) 49.5%, rgba(255,255,255,0.25) 50%, transparent 50%),
        linear-gradient(160deg, transparent 49.5%, rgba(255,255,255,0.15) 49.5%, rgba(255,255,255,0.15) 50%, transparent 50%),
        linear-gradient(-110deg, transparent 49.5%, rgba(255,255,255,0.2) 49.5%, rgba(255,255,255,0.2) 50%, transparent 50%),
        linear-gradient(-140deg, transparent 49.5%, rgba(255,255,255,0.18) 49.5%, rgba(255,255,255,0.18) 50%, transparent 50%);
}

/* ============================================
   TWO COLUMN SECTIONS
   ============================================ */
.two-col-section {
    padding: 40px 0;
    background: var(--bg);
    overflow: hidden;
}

.two-col-section + .two-col-section {
    border-top: 1px solid var(--border-subtle);
}

.two-col {
    display: flex;
    align-items: center;
    gap: 50px;
}

.two-col.reverse {
    flex-direction: row-reverse;
}

.two-col-text {
    flex: 1;
}

.two-col-text .mini-logo {
    width: 90px;
    margin-bottom: 15px;
}

.two-col-text p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 9px 25px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg);
}

.two-col-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.two-col-image img {
    max-width: 100%;
    max-height: 280px;
    height: auto;
}

/* Scroll Animasyonlari */
.anim-left,
.anim-right,
.anim-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-left { transform: translateX(-40px); }
.anim-right { transform: translateX(40px); }
.anim-up { transform: translateY(30px); }

.anim-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   CONTACT HOME SECTION
   ============================================ */
.contact-home-section {
    position: relative;
    padding: 45px 0;
    overflow: hidden;
}

.contact-home-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-home-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.35;
}

.contact-home-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-home-info {
    flex: 1;
}

.contact-home-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-home-info .detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-light);
}

.contact-home-info .detail-row img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    margin-top: 3px;
}

.contact-home-info .detail-row i {
    color: var(--primary);
    width: 14px;
    text-align: center;
    margin-top: 3px;
    font-size: 14px;
}

.contact-home-info .address-row {
    margin-top: 10px;
}

.contact-home-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-home-container img {
    max-width: 350px;
    width: 100%;
    -webkit-animation: containerFloat 4s ease-in-out infinite;
    animation: containerFloat 4s ease-in-out infinite;
}

@-webkit-keyframes containerFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(12px); }
}
@keyframes containerFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(12px); }
}

/* ============================================
   PRODUCT DETAIL - Tupler + araba
   ============================================ */
.product-detail-section {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border-subtle);
}

.product-detail-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-detail-left {
    flex: 1;
}

.product-detail-left img {
    width: 100%;
    max-width: 320px;
}

.product-detail-right {
    flex: 1;
}

.detail-car-img {
    margin-bottom: 20px;
    max-width: 100%;
}

.product-detail-right h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.product-detail-right p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.9;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 20px 0 35px;
    background: var(--bg);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-align: center;
}

.section-title span {
    color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--renk-tema);
    border-radius: 5px;
    transition: border-color 0.25s ease;
}

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

.blog-card:hover .blog-card-img {
    border-color: var(--renk-metin);
}

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

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

.blog-card-body h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(18px * 1.3 * 2);
}

.blog-card-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(14px * 1.5 * 4);
}

.blog-more {
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-card:hover .blog-more {
    background: #000;
    color: var(--primary);
}

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

@media (max-width: 480px) {
    .blog-section { padding: 20px 0 30px; }
    .blog-grid { grid-template-columns: 1fr; gap: 26px; }
    .blog-card-body h4 { min-height: 0; }
    .blog-card-body p { min-height: 0; }
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
    background: var(--bg);
    padding: 30px 0 30px;
    color: var(--renk-metin);
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pd-info {
    font-size: 14px;
    line-height: 1.45;
}

.pd-heading {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.pd-subheading {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin: 14px 0 4px;
    line-height: 1.3;
}

.pd-info p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.82);
}

.pd-list {
    list-style: none;
    padding: 0;
    margin: 0 0 6px;
    font-size: 14px;
}

.pd-list li {
    position: relative;
    padding: 1px 0 1px 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.82);
}

.pd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.pd-list-tech li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-left: 14px;
}

.pd-list-tech li span { color: rgba(255,255,255,0.82); }
.pd-list-tech li b { color: var(--renk-metin); font-weight: 500; }

.pd-group {
    color: var(--renk-metin);
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 4px;
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 14px;
}

.pd-table th,
.pd-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pd-table thead th {
    background: rgba(0, 175, 170, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 175, 170, 0.4);
}

.pd-table tbody td {
    color: rgba(255,255,255,0.85);
}

.pd-table tbody tr:hover td {
    background: rgba(255,255,255,0.03);
}

.pd-media {
    position: sticky;
    top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-media img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pd-media {
        position: static;
        order: -1;
    }
    .pd-media img {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 50px 0 60px;
    }
    .pd-media img {
        max-width: 260px;
    }
    .pd-list-tech li {
        flex-direction: column;
        gap: 2px;
    }
    .pd-table {
        font-size: 12px;
    }
    .pd-table th,
    .pd-table td {
        padding: 8px 6px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    position: relative;
    padding: 80px 0 40px;
    background: var(--bg) url('../img/iletisim-zemin.jpg') 50% 50% / cover no-repeat;
    background-position-x: center;
    overflow: hidden;
    isolation: isolate;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
    z-index: 0;
}

.contact-container-img {
    position: absolute;
    right: 20%;
    top: 50%;
    width: 32%;
    max-width: 480px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    animation: containerFloat 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes containerFloat {
    0%, 100% { transform: translateY(-50%) translateX(-18px); }
    50% { transform: translateY(-50%) translateX(18px); }
}

.contact-inner {
    position: relative;
    z-index: 2;
}

.contact-logo {
    display: block;
    width: 180px;
    margin: 0 auto 40px 4%;
}

.contact-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: auto 340px;
    justify-content: start;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto 0 4%;
}

.contact-title {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 22px;
    letter-spacing: 0.5px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li a {
    color: var(--renk-metin);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-list li a:hover {
    color: var(--primary);
}

.contact-list li,
.contact-list li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--renk-metin);
}

.ci-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ci-icon svg {
    width: 18px;
    height: 18px;
}

.ci-icon img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form .contact-title {
    margin-bottom: 6px;
}

.cf-field input,
.cf-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding: 10px 2px;
    color: var(--renk-metin);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-bottom-color: var(--primary);
}

.cf-field {
    position: relative;
}

.cf-field input.is-invalid,
.cf-field textarea.is-invalid {
    border-bottom-color: #e53935;
}

.cf-err {
    display: block;
    min-height: 16px;
    margin-top: 4px;
    color: #ff6b6b;
    font-size: 12px;
    line-height: 1.3;
}

.cf-err:empty {
    display: none;
}

.cf-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.cf-submit {
    background: var(--primary);
    color: var(--renk-metin);
    border: none;
    padding: 10px 34px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.cf-submit:hover {
    background: var(--renk-metin);
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0 60px;
    }
    .contact-container-img {
        opacity: 0.25;
        width: 85%;
        right: -15%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    .contact-logo {
        width: 150px;
        margin: 0 auto 28px;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-info .contact-title {
        text-align: center;
    }
    .contact-list {
        align-items: center;
    }
    .contact-list li,
    .contact-list li a {
        justify-content: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg);
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    align-items: center;
    padding: 28px 0 22px;
    gap: 28px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--primary);
}

.footer-main .footer-nav {
    margin-left: auto;
}

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

.footer-contact,
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
}

.f-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    transition: color var(--transition);
}

.f-line i {
    color: var(--primary);
    width: 14px;
    text-align: center;
    margin-top: 4px;
    font-size: 14px;
}

.f-line img,
.f-line .f-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
    -webkit-filter: brightness(0) saturate(100%) invert(58%) sepia(74%) saturate(456%) hue-rotate(131deg) brightness(91%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(58%) sepia(74%) saturate(456%) hue-rotate(131deg) brightness(91%) contrast(101%);
}

.f-line .f-icon {
    filter: none;
    -webkit-filter: none;
    stroke: var(--primary);
}

.f-line:hover {
    color: var(--primary);
}

/* Footer adresi - 3 satir */
.f-line-adres .f-adres-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.5;
}
.f-adres-satir { display: block; }

.footer-nav {
    display: flex;
    gap: 26px;
}

.footer-nav a {
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

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

.footer-social a {
    width: 28px;
    height: 28px;
}

.footer-social a img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 14px;
    color: var(--primary);
}

.footer-visitors {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: .9;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-visitors .fv-label { color: var(--teal, var(--renk-tema)); margin-right: 4px; }
.footer-visitors strong { color: var(--teal, var(--renk-tema)); font-weight: 700; }
.footer-visitors .fv-sep { opacity: .4; }

.footer-credit {
    display: inline-flex;
    align-items: center;
}

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

/* ============================================
   UTILITY
   ============================================ */
.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;
}

/* ============================================
   RESPONSIVE - Header
   Desktop (>992px) bozulmaz.
   Tablet/Mobil: logo ustte, icerik dikey siralanir.
   Menu hamburger ile, hicbir icerik gizlenmez.
   ============================================ */

/* Mobile nav & overlay - sabit slide-in panel (tum mobil boyutlarda) */
.mobile-nav,
.mobile-overlay {
    display: none;
}

@media (max-width: 992px) {
    .site-header {
        position: relative;
        background: rgba(0, 0, 0, 1);
    }

    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 20px 20px;
        gap: 12px;
        max-width: 100%;
    }

    /* Desktop nav gizli - hamburger acar */
    .header-nav {
        display: none;
    }

    /* Hamburger sol ustte sabit */
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 22px;
        left: 20px;
    }

    /* Logo ortada, en ustte */
    .logo {
        order: 1;
    }

    .logo img {
        height: 70px;
    }

    /* Sag blok logonun altina, ortala */
    .header-right {
        order: 2;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .header-right-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .header-right-bottom {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 15px;
    }

    .contact-link {
        font-size: 15px;
    }

    /* Mobile slide-in nav */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(5,5,5,0.98);
        padding: 70px 25px 25px;
        transition: left var(--transition);
        z-index: 1001;
    }

    .mobile-nav.active {
        left: 0;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--white);
        border-bottom: 1px solid var(--border-subtle);
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: var(--primary);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 1000;
    }

    .mobile-overlay.active {
        display: block;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        align-items: center;
        gap: 30px 80px;
    }

    .feature-item + .feature-item::before { display: none; }
    .features-grid .feature-item:nth-child(2)::before,
    .features-grid .feature-item:nth-child(4)::before {
        content: '';
        display: block;
        position: absolute;
        left: -40px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 160px;
        background: rgba(0, 175, 170, 0.35);
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 24px 40px;
    }
    .product-hero {
        padding: 0 0 20px;
        margin-top: -40px;
    }
    .ph-stage {
        aspect-ratio: auto;
        height: 200px;
    }
    .ph-bg-logo.ph-anim-logo {
        transform: translate(-50%, calc(-70% + 10px + (1 - var(--p)) * 200px)) !important;
    }
    .ph-car.ph-anim-car {
        transform: translate(calc(-50% + (1 - var(--p)) * 400px), calc(-35% + 30px - (1 - var(--p)) * 200px)) scale(calc(0.25 + var(--p) * 0.75)) !important;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 0 0 30px;
    }
    .features-section {
        padding: 20px 0;
    }
}

/* Footer tablet */
@media (max-width: 992px) {
    .footer-main {
        justify-content: center;
        text-align: center;
        gap: 22px;
    }

    .footer-main .footer-nav {
        margin-left: 0;
    }

    .footer-contact,
    .footer-address {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Telefon - 576px alti */
@media (max-width: 576px) {
    /* Footer mobil - hepsi ortali, dikey */
    .footer-inner {
        padding: 0 20px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0 20px;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-contact,
    .footer-address {
        align-items: center;
        text-align: center;
    }

    .footer-contact .f-line,
    .footer-address .f-line {
        justify-content: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 14px 0;
    }

    .footer-credit img {
        height: 34px;
    }
}

@media (max-width: 576px) {
    .header-inner {
        padding: 15px 15px 18px;
    }

    .logo img {
        height: 60px;
    }

    .header-right-top {
        flex-direction: column;
        gap: 6px;
    }

    .contact-link {
        font-size: 14px;
    }

    /* Sosyal ikonlar ve dil secici ust uste */
    .header-right-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        padding: 0 15px;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-nav {
    background: var(--bg);
    padding: 128px 0 0;
}

.breadcrumb-list {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--primary);
}

@media (max-width: 992px) {
    .breadcrumb-nav {
        padding-top: 18px;
    }
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: var(--renk-metin);
}

.breadcrumb-list a {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: var(--renk-metin);
}

.breadcrumb-list .sep {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-list .current {
    color: var(--renk-metin);
    font-weight: 600;
}

.blog-listing {
    padding: 28px 0 40px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination .pg-btn,
.pagination .pg-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--renk-metin);
    background: transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination .pg-btn:hover,
.pagination .pg-num:hover {
    background: var(--primary);
    color: var(--renk-metin);
}

.pagination .pg-num.active {
    background: var(--primary);
    color: var(--renk-metin);
    border-color: var(--primary);
}

.pagination .pg-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 480px) {
    .pagination .pg-btn,
    .pagination .pg-num {
        min-width: 30px;
        height: 30px;
        font-size: 14px;
        padding: 0 8px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    position: relative;
    background: var(--bg) url('../img/iletisim-zemin.jpg') center/cover no-repeat;
    padding: 40px 0 60px;
    color: var(--renk-metin);
    overflow: hidden;
}

.contact-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.contact-page-inner {
    position: relative;
    z-index: 1;
}

.cp-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: stretch;
}

.cp-map {
    position: relative;
    border: 1px solid var(--primary);
    border-radius: 6px;
    overflow: hidden;
    min-height: 520px;
    background: var(--bg);
}

.cp-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    filter: grayscale(1) invert(0.92) contrast(0.95) hue-rotate(180deg);
    transition: filter 0.3s ease;
}

.cp-map:hover iframe {
    filter: grayscale(1) invert(0.88) contrast(1) hue-rotate(180deg);
}

/* Leaflet harita konteyneri */
#cpMap {
    width: 100%;
    height: 100%;
    min-height: 520px;
    background: #0a0a0a;
}

/* Koyu tema filtresi — tile'lari site temasiyla uyumla */
#cpMap .leaflet-tile-pane {
    filter: grayscale(1) invert(0.92) contrast(0.95) hue-rotate(180deg);
    transition: filter 0.3s ease;
}
.cp-map:hover #cpMap .leaflet-tile-pane {
    filter: grayscale(1) invert(0.88) contrast(1) hue-rotate(180deg);
}

/* Pin svg'sini filtreden mustesna tut */
.cp-leaflet-pin svg {
    width: 28px;
    height: 40px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

/* Leaflet kontrolleri ve attribution okunur kalsin */
.leaflet-control-attribution,
.leaflet-control-zoom {
    filter: none !important;
}
.leaflet-control-attribution {
    background: rgba(0,0,0,0.6) !important;
    color: #ccc !important;
}
.leaflet-control-attribution a { color: var(--renk-tema) !important; }

.cp-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cp-company {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0 0 6px;
    line-height: 1.35;
}

.cp-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--renk-metin);
}

.cp-info a {
    color: var(--renk-metin);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.cp-info a:hover {
    color: var(--primary);
}

.cp-info-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.cp-info li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.cp-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cp-ic svg {
    width: 18px;
    height: 18px;
}

.cp-ic img {
    width: 16px;
    height: 16px;
    display: block;
}

.cp-social {
    display: flex;
    gap: 10px;
    margin: 4px 0 8px;
}

.cp-social a img {
    width: 22px;
    height: 22px;
}

.cp-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-form .cf-field input,
.cp-form .cf-field textarea {
    background: transparent;
}

.cp-form .cf-actions {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 992px) {
    .cp-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cp-map, .cp-map iframe { min-height: 360px; }
}

@media (max-width: 480px) {
    .contact-page { padding: 28px 0 40px; }
    .cp-info-row { gap: 14px; }
}

/* ============================================
   BLOG DETAIL
   ============================================ */
.blog-detail {
    background: var(--bg);
    padding: 28px 0 50px;
    color: var(--renk-metin);
}

.bd-media {
    margin: 0 0 28px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    overflow: hidden;
}

.bd-media img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.bd-title {
    text-align: center;
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 0 0 22px;
}

.bd-content {
    column-count: 2;
    column-gap: 36px;
    column-rule: 1px solid rgba(255, 255, 255, 0.08);
    text-align: justify;
    hyphens: auto;
}

.bd-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 18px;
    text-align: justify;
    break-inside: avoid-column;
}

.bd-content p:last-child {
    margin-bottom: 0;
}

.bd-content h1,
.bd-content h2,
.bd-content h3,
.bd-content h4,
.bd-content h5,
.bd-content h6,
.bd-content figure,
.bd-content img,
.bd-content ul,
.bd-content ol,
.bd-content blockquote,
.bd-content table,
.bd-content pre {
    break-inside: avoid;
    page-break-inside: avoid;
}

.bd-content img,
.bd-content figure {
    max-width: 100%;
    height: auto;
}

.bd-content h1:first-child,
.bd-content h2:first-child,
.bd-content h3:first-child {
    margin-top: 0;
}

@media (max-width: 900px) {
    .bd-content {
        column-count: 1;
        column-rule: none;
    }
}

@media (max-width: 480px) {
    .blog-detail { padding: 20px 0 36px; }
    .bd-title { font-size: 18px; }
    .bd-content p { font-size: 14px; }
}

/* ============================================
   HAKKIMIZDA (About)
   ============================================ */
.about-intro {
    position: relative;
    padding: 60px 0 40px;
    background: var(--bg);
    overflow: hidden;
    text-align: center;
}

.about-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 760px;
    max-width: 120%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.about-intro-inner {
    position: relative;
    z-index: 1;
}

.about-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--renk-metin);
    margin: 0 0 18px;
}

.about-title span {
    color: var(--primary);
}

.about-lead {
    max-width: 780px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.about-divider {
    width: 72px;
    height: 3px;
    margin: 30px auto 0;
    background: var(--primary);
    border-radius: 2px;
}

/* STORY */
.about-story {
    padding: 60px 0;
    background: var(--bg);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-story-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(0, 175, 170, 0.35);
    border-radius: 8px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0,175,170,0.12), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: border-color 0.3s ease, transform 0.4s ease;
}

.about-story-media::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(0,175,170,0.3), transparent 40%, transparent 60%, rgba(0,175,170,0.2));
    -webkit-mask: linear-gradient(var(--renk-metin) 0 0) content-box, linear-gradient(var(--renk-metin) 0 0);
    mask: linear-gradient(var(--renk-metin) 0 0) content-box, linear-gradient(var(--renk-metin) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    border-radius: 8px;
    pointer-events: none;
}

.about-story-media img {
    max-width: 85%;
    max-height: 85%;
    -o-object-fit: contain;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,175,170,0.25));
    transition: transform 0.5s ease;
}

.about-story-media:hover img {
    transform: scale(1.04);
}

.about-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}

.about-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--primary);
}

.about-story-body h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--renk-metin);
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}

.about-story-body h2 span {
    color: var(--primary);
}

.about-story-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 0 14px;
}

.about-story-body p strong {
    color: var(--renk-metin);
    font-weight: 600;
}

.about-story-body p em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

.about-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 26px;
    background: var(--primary);
    color: var(--renk-metin);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.about-cta:hover {
    background: var(--renk-metin);
    color: var(--primary);
    transform: translateY(-2px);
}

/* MISYON / VIZYON */
.about-mv {
    padding: 40px 0 60px;
    background: var(--bg);
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.about-mv-card {
    position: relative;
    padding: 44px 36px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(0,175,170,0.06), rgba(255,255,255,0.015));
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.about-mv-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.35s ease;
}

.about-mv-card:hover {
    border-color: rgba(0,175,170,0.45);
    transform: translateY(-4px);
    background: linear-gradient(160deg, rgba(0,175,170,0.1), rgba(255,255,255,0.02));
}

.about-mv-card:hover::after {
    height: 100%;
}

.about-mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(0,175,170,0.08);
    margin-bottom: 22px;
    transition: background 0.3s ease, color 0.3s ease;
}

.about-mv-icon svg {
    width: 32px;
    height: 32px;
}

.about-mv-card:hover .about-mv-icon {
    background: var(--primary);
    color: var(--renk-metin);
}

.about-mv-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--renk-metin);
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}

.about-mv-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

/* VALUES */
.about-values {
    padding: 40px 0 50px;
    background: var(--bg);
}

.about-values .section-title {
    font-size: 22px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.about-values .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-value {
    text-align: center;
    padding: 32px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.about-value:hover {
    border-color: rgba(0,175,170,0.4);
    background: rgba(0,175,170,0.04);
    transform: translateY(-4px);
}

.about-value-ic {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,175,170,0.08);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.about-value-ic img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.about-value:hover .about-value-ic {
    background: rgba(0,175,170,0.18);
}

.about-value h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.about-value p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* STATS */
.about-stats {
    padding: 50px 0;
    background:
        linear-gradient(180deg, rgba(0,175,170,0.08), rgba(0,0,0,0)),
        var(--bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.about-stat {
    padding: 14px 10px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat-num {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.5px;
}

.about-stat-num sup {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--renk-metin);
    margin-left: 2px;
    vertical-align: top;
}

.about-stat-num .slash {
    color: var(--renk-metin);
    opacity: 0.5;
    margin: 0 2px;
}

.about-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

/* CTA STRIP */
.about-cta-strip {
    position: relative;
    padding: 70px 0;
    background: var(--bg);
    overflow: hidden;
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta-inner h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--renk-metin);
    line-height: 1.5;
    margin: 0;
    max-width: 720px;
}

/* ABOUT VIDEO — Intro ile Story arasi genis showcase */
.about-video {
    padding: 20px 0 40px;
    background: var(--bg);
}

.about-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
    border: 1px solid rgba(0,175,170,.18);
}

.about-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 120px rgba(0,0,0,.35);
}

.about-video-el {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 10px; }
    .about-stat:nth-child(2) { border-right: 0; }
    .about-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .about-intro { padding: 40px 0 28px; }
    .about-story { padding: 40px 0; }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-stats-inner { grid-template-columns: 1fr; }
    .about-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
    .about-stat:last-child { border-bottom: 0; }
    .about-cta-strip { padding: 48px 0; }
    .about-video { padding: 14px 0 28px; }
    .about-video-frame { border-radius: 10px; }
}

/* Print */
@media print {
    .site-header, .hero-section, .hero-mouse { display: none; }
    body { background: var(--renk-metin); color: var(--bg); }
}

/* ============ HATA SAYFALARI (404/403/405) ============ */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.error-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,175,170,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.error-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.error-code {
    font-size: clamp(120px, 22vw, 240px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--renk-tema) 0%, var(--renk-metin) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    user-select: none;
}
.error-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--renk-baslik);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.error-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--renk-metin);
    opacity: 0.85;
    margin: 0 0 36px;
}
.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-ghost {
    background: transparent;
    border: 1px solid var(--renk-tema);
    color: var(--renk-tema);
}
.about-cta-ghost:hover {
    background: var(--renk-tema);
    color: var(--renk-metin);
}
@media (max-width: 640px) {
    .error-page { padding: 60px 0; min-height: auto; }
    .error-actions { flex-direction: column; align-items: stretch; }
    .error-actions .about-cta { width: 100%; }
}

/* Floating side actions (WhatsApp + Katalog) */
.side-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.side-actions .side-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--renk-tema, var(--renk-tema));
    color: var(--renk-metin, var(--renk-metin));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0, 175, 170, 0.35);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.side-actions .side-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}
.side-actions .side-btn:hover,
.side-actions .side-btn:focus-visible {
    background: var(--bg, var(--bg));
    color: var(--renk-metin, var(--renk-metin));
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}
@media (max-width: 640px) {
    .side-actions { right: 14px; bottom: 14px; gap: 10px; }
    .side-actions .side-btn { width: 46px; height: 46px; }
    .side-actions .side-btn svg { width: 22px; height: 22px; }
}

/* Blog detay ekleri */
.bd-ekler { margin-top: 36px; display: flex; flex-direction: column; gap: 40px; }
.bd-ek-media { margin: 0 0 18px; border: 1px solid var(--renk-tema); border-radius: 6px; overflow: hidden; }
.bd-ek-media img { width: 100%; display: block; }
.bd-ek-title { font-size: 22px; color: var(--renk-metin); margin: 0 0 12px; letter-spacing: .5px; }
.bd-ek-content {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.7;
    column-count: 2;
    column-gap: 36px;
    column-rule: 1px solid rgba(255, 255, 255, 0.08);
    text-align: justify;
    hyphens: auto;
}
.bd-ek-content p { margin: 0 0 18px; break-inside: avoid-column; text-align: justify; }
.bd-ek-content p:last-child { margin-bottom: 0; }
.bd-ek-content h1,
.bd-ek-content h2,
.bd-ek-content h3,
.bd-ek-content h4,
.bd-ek-content h5,
.bd-ek-content h6,
.bd-ek-content figure,
.bd-ek-content img,
.bd-ek-content ul,
.bd-ek-content ol,
.bd-ek-content blockquote,
.bd-ek-content table,
.bd-ek-content pre { break-inside: avoid; page-break-inside: avoid; }
.bd-ek-content img, .bd-ek-content figure { max-width: 100%; height: auto; }
@media (max-width: 900px) {
    .bd-ek-content { column-count: 1; column-rule: none; }
}
@media (max-width: 480px) { .bd-ek-title { font-size: 18px; } }

/* ===== Yasal sayfalar (Gizlilik / Cerez / KVKK) ===== */
.yasal-section { padding: 60px 0 80px; background: var(--bg); }
.yasal-inner { max-width: 880px; }
.yasal-article { background: var(--kart-bg); border: 1px solid var(--border); border-radius: 14px; padding: 40px 48px; color: var(--renk-metin, var(--renk-metin)); }
.yasal-title { color: var(--renk-baslik); font-size: 34px; margin: 0 0 24px; letter-spacing: .5px; border-bottom: 2px solid var(--renk-tema); padding-bottom: 16px; display: inline-block; }
.yasal-content { font-size: 15px; line-height: 1.85; }
.yasal-content h2 { color: var(--renk-tema); font-size: 22px; margin: 28px 0 12px; }
.yasal-content h3 { color: var(--renk-baslik, var(--renk-metin)); font-size: 18px; margin: 24px 0 10px; }
.yasal-content p { margin: 0 0 14px; }
.yasal-content ul, .yasal-content ol { margin: 0 0 16px; padding-left: 22px; }
.yasal-content li { margin: 0 0 8px; }
.yasal-content a { color: var(--renk-tema); text-decoration: underline; }
.yasal-content strong { color: var(--renk-baslik, var(--renk-metin)); }
.yasal-updated { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--renk-metin, var(--renk-metin)); opacity: .5; font-size: 12px; }
@media (max-width: 700px) {
    .yasal-article { padding: 28px 22px; }
    .yasal-title { font-size: 26px; }
}

/* ===== KVKK / Cerez banner ===== */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999; background: var(--kart-bg, #111); border: 1px solid var(--renk-tema); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.5); color: var(--renk-metin, var(--renk-metin)); opacity: 0; transform: translateY(20px); transition: opacity .35s ease, transform .35s ease; }
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px 26px; max-width: 1240px; margin: 0 auto; }
.cookie-banner-text strong { display: block; font-size: 14px; color: var(--renk-tema); margin-bottom: 4px; letter-spacing: .4px; }
.cookie-banner-text p { margin: 0 0 6px; font-size: 12px; line-height: 1.6; color: var(--renk-metin, var(--renk-metin)); opacity: .85; }
.cookie-banner-link { color: var(--renk-tema); text-decoration: underline; font-size: 12px; }
.cookie-banner-link:hover { color: var(--renk-metin, var(--renk-metin)); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { cursor: pointer; border-radius: 8px; padding: 10px 20px; font-size: 12px; font-weight: 600; letter-spacing: .4px; border: 1px solid var(--renk-tema); transition: background .2s, color .2s, border-color .2s; min-width: 110px; }
.cookie-btn-accept { background: var(--renk-tema); color: var(--bg, var(--bg)); }
.cookie-btn-accept:hover { background: var(--renk-metin, var(--renk-metin)); color: var(--renk-tema); border-color: var(--renk-metin, var(--renk-metin)); }
.cookie-btn-reject { background: transparent; color: var(--renk-metin, var(--renk-metin)); }
.cookie-btn-reject:hover { background: var(--renk-metin, var(--renk-metin)); color: var(--bg, var(--bg)); }
@media (max-width: 720px) {
    .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
    .cookie-banner-inner { grid-template-columns: 1fr; padding: 16px 18px; gap: 14px; }
    .cookie-banner-actions { justify-content: flex-end; }
    .cookie-btn { min-width: 0; flex: 1; padding: 10px 14px; }
}

/* Blog detay — tarih, paylas, ilgili */
.bd-meta { color: rgba(255,255,255,.55); font-size: 14px; margin: 0 0 24px; letter-spacing: .3px; }
.bd-share { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 40px 0 10px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bd-share-label { color: var(--renk-metin, var(--renk-metin)); font-size: 14px; letter-spacing: .5px; text-transform: uppercase; margin-right: 6px; }
.bd-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid var(--renk-tema); color: var(--renk-metin, var(--renk-metin)); font-size: 16px; cursor: pointer; transition: background .2s, color .2s, transform .2s; text-decoration: none; }
.bd-share-btn:hover { background: var(--renk-tema); color: var(--bg, var(--bg)); transform: translateY(-2px); }
.bd-share-btn.is-copied { background: var(--renk-tema); color: var(--bg, var(--bg)); }

.blog-related { padding: 60px 0 20px; }
.blog-related .section-title { color: var(--renk-baslik); font-size: 24px; margin: 0 0 24px; letter-spacing: .5px; }

/* Footer yasal link bar — mevcut footer-nav'i ezer */
.footer-nav.footer-legal { flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.footer-nav.footer-legal a,
.footer-legal-btn {
    background: transparent;
    border: 0;
    color: var(--renk-tema);
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-size: 12px;
    font-weight: 500;
    transition: color .2s;
}
.footer-nav.footer-legal a:hover,
.footer-legal-btn:hover { color: var(--renk-metin, var(--renk-metin)); }
