/* ===== MMR REFRAKTER — Ana Stil ===== */

/* --- Değişkenler --- */
:root {
    --primary:     #003366;   /* lacivert */
    --primary-dark:#001f44;
    --accent:      #e8793a;   /* turuncu vurgu */
    --text:        #2c2c2c;
    --text-light:  #666;
    --bg:          #fff;
    --bg-light:    #f5f7fa;
    --bg-dark:     #0a1628;
    --border:      #e0e4ea;
    --radius:      4px;
    --shadow:      0 4px 24px rgba(0,0,0,.08);
    --transition:  .3s ease;
    --container:   1200px;
    --font:        'Inter', 'Segoe UI', Arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; padding-top: 0; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Tipografi --- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; color: var(--text-light); }

/* --- Yardımcılar --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.bg-light    { background: var(--bg-light); }
.bg-dark     { background: var(--bg-dark); }
.bg-primary  { background: var(--primary); }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-title.white { color: #fff; }
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
}
.section-desc.white { color: rgba(255,255,255,.75); }

/* --- Buton --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.75rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover { background: #d06828; border-color: #d06828; }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: #fff; color: var(--primary); }

/* ================================================
   HEADER
================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height .3s ease;
}
.site-header.scrolled .header-inner { height: 68px; }

.site-logo img {
    height: 62px;
    width: auto;
    transition: height .3s ease;
    animation: logo-glow 2.8s ease-in-out infinite;
}
.site-header.scrolled .site-logo img { height: 50px; }

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 0px rgba(255,255,255,0));
    }
    50% {
        filter: drop-shadow(0 0 4px rgba(255,255,255,.45))
                drop-shadow(0 0 8px rgba(255,255,255,.15));
    }
}


.site-logo span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    transition: color .3s;
}
.site-header.scrolled .site-logo span { color: var(--primary); }

/* Ana nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .6rem 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .25s ease;
    white-space: nowrap;
    position: relative;
}
.main-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.main-nav > li > a:hover::after,
.main-nav > li.active > a::after { transform: scaleX(1); }
.main-nav > li > a:hover { color: #fff; }
.main-nav > li.active > a { color: #fff; }

.site-header.scrolled .main-nav > li > a { color: var(--text); }
.site-header.scrolled .main-nav > li > a:hover { color: var(--primary); }
.site-header.scrolled .main-nav > li.active > a { color: var(--primary); }

.main-nav > li > a .chevron { font-size: .6rem; opacity: .7; transition: transform .25s; }
.main-nav > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 255px;
    background: linear-gradient(160deg, #162544 0%, #0d1b2e 100%);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 56px rgba(0,0,0,.38), 0 4px 16px rgba(0,0,0,.20), 0 0 0 1px rgba(255,255,255,.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 200;
    overflow: hidden;
}
.main-nav > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* "Tüm …" başlık öğesi */
.dropdown li.dropdown-all a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .82rem 1.3rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,121,58,.10);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .18s, color .18s;
}
.dropdown li.dropdown-all a::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    opacity: .8;
    transition: width .2s;
}
.dropdown li.dropdown-all a:hover { background: rgba(232,121,58,.18); }
.dropdown li.dropdown-all a:hover::before { width: 22px; opacity: 1; }
/* Normal öğeler */
.dropdown li a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .82rem 1.3rem;
    font-size: .86rem;
    font-weight: 500;
    color: rgba(255,255,255,.68);
    border-bottom: 1px solid rgba(255,255,255,.055);
    transition: background .16s, color .16s, padding-left .16s;
    position: relative;
}
.dropdown li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--accent);
    transition: width .16s ease;
    border-radius: 0 2px 2px 0;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
    background: rgba(255,255,255,.055);
    color: #fff;
    padding-left: 1.7rem;
}
.dropdown li a:hover::after { width: 3px; }

/* Header sağ alan */
.header-right { display: flex; align-items: center; gap: 1.25rem; }

/* Dil seçici */
.lang-switcher { display: flex; gap: .2rem; }
.lang-switcher a {
    padding: .25rem .5rem;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    border-bottom: 2px solid transparent;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lang-switcher a:hover { color: #fff; border-bottom-color: var(--accent); }
.lang-switcher a.active { color: #fff; border-bottom-color: var(--accent); }
.site-header.scrolled .lang-switcher a { color: var(--text-light); }
.site-header.scrolled .lang-switcher a:hover,
.site-header.scrolled .lang-switcher a.active { color: var(--primary); border-bottom-color: var(--accent); }

/* Mobil hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--primary); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO — Video Banner
================================================ */
.hero {
    position: relative;
    top: 0;
    margin-top: 0;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
}

/* Video slider container */
.hero-videos {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Her video katmanı */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .9s ease;
}
.hero-video.active {
    opacity: 1;
}

/* Sol / Sağ geçiş butonları */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.25);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    backdrop-filter: blur(4px);
}
.hero-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-nav--prev { left: 1.5rem; }
.hero-nav--next { right: 1.5rem; }

/* Video dot navigasyonu */
.hero-dots {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: .6rem;
    align-items: center;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.55);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}
.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.25);
}
.hero-dot:hover:not(.active) {
    border-color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.2);
}

/* Fallback görsel (video yüklenemezse görünür) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

/* Koyu gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0,10,30,.92) 0%, rgba(0,10,30,.65) 50%, rgba(0,10,30,.2) 100%),
        linear-gradient(to top, rgba(0,10,30,.6) 0%, transparent 55%);
    z-index: 1;
}

/* Geometrik şekiller */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Sağ taraf turuncu diagonal şeritler */
.hero-shape-stripe {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
}

/* Köşe bracket süslemeleri */
.hero-shape-bracket {
    position: absolute;
    width: 56px;
    height: 56px;
}
.hero-shape-bracket--tr {
    top: 100px;
    right: 6%;
}
.hero-shape-bracket--bl {
    bottom: 100px;
    left: 3%;
}

/* Yatay aksan çizgisi (içerik üzerinde) */
.hero-shape-hline {
    position: absolute;
    top: 50%;
    right: 8%;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(232,121,58,.5), transparent);
    transform: translateY(-50%);
}

/* Dekoratif elipsler — svc-visual-band ile aynı mantık, banner'a uyarlanmış */
.hero-shape-ellipse {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-shape-ellipse--1 {
    right: -8%;
    bottom: -18%;
    width: 80vw;
    height: 55vh;
    background: rgba(232,121,58,.45);
    transform: rotate(0deg);
}
.hero-shape-ellipse--2 {
    right: -8%;
    bottom: -18%;
    width: 80vw;
    height: 55vh;
    background: rgba(30,90,180,.45);
    transform: rotate(-15deg);
}
.hero-shape-ellipse--3 {
    right: -8%;
    bottom: -18%;
    width: 80vw;
    height: 55vh;
    background: rgba(60,130,220,.35);
    transform: rotate(-30deg);
}
.hero-shape-ellipse--4 {
    right: -8%;
    bottom: -18%;
    width: 80vw;
    height: 55vh;
    background: rgba(255,255,255,.1);
    transform: rotate(-45deg);
}

/* İçerik wrapper */
.hero > .container {
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    max-width: 680px;
    padding-top: 80px;
    animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slayt container — named area ile güvenli stacking */
.hero-slides {
    display: grid;
    grid-template-areas: 'slide';
}
.hero-slide {
    grid-area: slide;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
    padding-bottom: 2rem;
    min-width: 0;
}
.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* Eyebrow tag */
.hero-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(232,121,58,.5);
    padding: .3rem .8rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

/* Başlık */
.hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 0;
    text-shadow: 0 2px 32px rgba(0,0,0,.5);
}

/* Turuncu aksan çizgisi (h1 altında) */
.hero-accent-bar {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 1.4rem 0 1.4rem;
    border-radius: 1px;
}

/* ── Slogan slaytı ────────────────────────────────────────── */
.hero-slide--slogan {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-slogan-sub {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.hero-slogan-title {
    font-size: clamp(3rem, 7vw, 6rem) !important;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,.6);
    margin: 0;
}
.hero-slogan-title span {
    color: var(--accent);
}
.hero-slogan-bar {
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 2rem;
}

/* Alt metin */
.hero p {
    color: rgba(255,255,255,.68);
    font-size: .97rem;
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 2.2rem;
    max-width: 460px;
}
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-desc-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    max-width: 640px;
    margin-bottom: 2.2rem;
}
.hero-desc-row p { margin-bottom: 0; }
.btn-hero-sm {
    padding: .6rem 1.4rem;
    font-size: .78rem;
    flex-shrink: 0;
}
.btn-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: .85rem;
    flex-shrink: 0;
    transition: all .25s ease;
}
.btn-hero-icon:hover {
    background: transparent;
    border-color: rgba(255,255,255,.6);
}

/* Butonlar */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 2.2rem;
    background: var(--accent);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: all .25s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-hero-primary:hover {
    background: #c9621a;
    border-color: #c9621a;
    color: #fff;
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 2.2rem;
    background: transparent;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,.45);
    transition: all .25s ease;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
}

/* Alt diagonal kesim */
.hero-diagonal {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}
.hero-diagonal svg {
    display: block;
    width: 100%;
    height: 72px;
}



/* ================================================
   SEKTÖRLER (Endüstri Kartları)
================================================ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.sector-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--bg-light);
    display: block;
    text-decoration: none;
}
.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.sector-card:hover img { transform: scale(1.06); }
.sector-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,30,70,.85) 0%, rgba(0,30,70,.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    transition: var(--transition);
}
.sector-card h3 { color: #fff; font-size: 1rem; margin-bottom: .25rem; }
.sector-card p  { color: rgba(255,255,255,.75); font-size: .8rem; margin: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.sector-card:hover p { max-height: 80px; }

/* ================================================
   ÜRÜNLER
================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
}
.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--primary);
}
.product-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-light); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1rem; color: var(--primary); margin-bottom: .5rem; }
.product-card-body p  { font-size: .85rem; margin: 0; }
.product-card-footer {
    padding: .75rem 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}
.link-arrow {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: var(--transition);
}
.link-arrow:hover { color: var(--accent); gap: .6rem; }

/* ================================================
   RAKAMLAR / İSTATİSTİKLER
================================================ */
.stats-section { background: var(--primary); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 60px 0;
    text-align: center;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-unit { font-size: 1.5rem; color: #fff; }
.stat-label { font-size: .85rem; color: #fff; margin-top: .5rem; text-transform: uppercase; letter-spacing: .06em; padding-left: .06em; }

/* ================================================
   REFERANSLAR (Logo grid)
================================================ */
.ref-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}
.ref-logo-item {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 110px;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.ref-logo-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(22,60,120,.1);
    transform: translateY(-3px);
}
.ref-logo-item img {
    max-width: 110px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
    transition: var(--transition);
}
.ref-logo-item:hover img {
    filter: none;
    opacity: 1;
}
.ref-logo-name {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1.3;
}
.ref-empty {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
}
@media (max-width: 640px) {
    .ref-logo-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .85rem; }
}

/* ================================================
   ÇÖZÜM MERKEZİ / HİZMETLER
================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.service-card {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.service-card p  { font-size: .875rem; margin: 0; }

.mobile-lang-item { display: none; }

/* Çözüm Merkezi */
.cozum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.cozum-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.cozum-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.cozum-image-wrap:hover img { transform: scale(1.03); }
.cozum-image-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.1rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.cozum-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.cozum-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: var(--text);
}
.cozum-list li .fa-check {
    color: var(--accent);
    font-size: .8rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .cozum-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Çözüm Merkezi CTA (anasayfa) */
.cozum-cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.cozum-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.cozum-cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
@media (max-width: 768px) {
    .cozum-cta-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cozum-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }
}
@media (max-width: 480px) {
    .cozum-service-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   HABER & İÇERİK
================================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.news-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-light); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 1.25rem; }
.news-date { font-size: .75rem; color: var(--text-light); margin-bottom: .5rem; display: block; }
.news-card-body h3 { font-size: 1rem; color: var(--primary); margin-bottom: .5rem; }
.news-card-body p  { font-size: .85rem; margin: 0; }

/* ================================================
   GALERİ
================================================ */
/* Sector filter tabs */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 2rem 0 1.5rem;
}
.gallery-filter-btn {
    padding: .45rem 1.1rem;
    border: 2px solid var(--primary);
    border-radius: 2rem;
    background: transparent;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary);
    color: #fff;
}

/* Sector group heading */
.gallery-sector-group { margin-bottom: 3.5rem; }
.gallery-sector-heading {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding-bottom: .6rem;
    border-bottom: 3px solid var(--accent);
}
.gallery-sector-heading h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.gallery-sector-heading i {
    font-size: 1.2rem;
    color: var(--accent);
}

/* Grid — smaller thumbnails */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .6rem;
    margin-top: 1rem;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: calc(var(--radius) * .7);
    position: relative;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,30,70,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    font-size: 1.3rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item--video .gallery-item-overlay { font-size: 2rem; }
.gallery-album { margin-bottom: 2rem; }
.gallery-album-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--border);
    display: inline-block;
}
.gallery-album-desc { color: var(--text-light); font-size: .85rem; margin-bottom: .5rem; }
.gallery-empty { padding: 40px 0; color: var(--text-light); }

/* Video lightbox */
.mmr-video-lb .mmr-video-wrap {
    width: min(90vw, 900px);
    aspect-ratio: 16/9;
    position: relative;
}
.mmr-video-lb .mmr-video-wrap iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

/* ================================================
   İLETİŞİM
================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
}

/* Form box */
.contact-form-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.25rem 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.contact-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

/* Alert messages */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    line-height: 1.5;
}
.contact-alert i { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.contact-alert--success { background: #edfbf3; border: 1px solid #86efb2; color: #166534; }
.contact-alert--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: .45rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.form-group label .req { color: var(--accent); font-style: normal; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
    font-family: var(--font);
    background: var(--bg-light);
    transition: var(--transition);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,51,102,.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-submit { display: inline-flex; align-items: center; gap: .5rem; margin-top: .25rem; }

/* Info sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    height: 100%;
}
.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
    transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--primary); box-shadow: 0 4px 14px rgba(22,60,120,.1); }
.contact-info-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #1b4d9e 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0;
}
.contact-info-body strong {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    margin-bottom: .25rem;
}
.contact-info-body span,
.contact-info-body a {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.5;
}
.contact-info-body a:hover { color: var(--primary); }

/* Social links */
.contact-social {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.contact-social strong {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    margin-bottom: .75rem;
}
.contact-social-links { display: flex; gap: .6rem; }
.contact-social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}
.contact-social-btn:hover { background: var(--primary); color: #fff; }

/* Social inside svc-visual-band */
.svc-band-social {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.2);
    width: 100%;
    justify-content: center;
}
.svc-band-social span {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.7);
}
.svc-social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: background .2s;
}
.svc-social-btn:hover { background: rgba(255,255,255,.3); color: #fff; }

/* Map */
.contact-maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.contact-map-item {
    display: flex;
    flex-direction: column;
}
.contact-map-item .contact-map {
    flex: 1;
}
.contact-map-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.contact-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border: 1px solid var(--border);
}
.contact-map iframe { display: block !important; width: 100% !important; height: 380px !important; border: 0 !important; }
@media (max-width: 768px) {
    .contact-maps-grid { grid-template-columns: 1fr; }
    .contact-map iframe { height: 280px; }
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
    .contact-info-card { flex: 1 1 calc(50% - .5rem); min-width: 200px; }
}
@media (max-width: 640px) {
    .contact-form-box { padding: 1.5rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-card { flex: 1 1 100%; }
    .contact-map iframe { height: 300px; }
}

/* ================================================
   FOOTER
================================================ */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .site-logo span { color: #fff; }
.footer-brand .site-logo img { animation: none; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social .footer-cert-img-link {
    width: 36px;
    height: 51px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    transition: var(--transition);
    flex-shrink: 0;
}
.footer-social .footer-cert-img-link img {
    width: 36px;
    height: 51px;
    object-fit: cover;
    display: block;
}
.footer-social .footer-cert-img-link:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.18);
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--accent); }

/* ================================================
   BREADCRUMB
================================================ */
.breadcrumb-bar { background: var(--bg-light); padding: .75rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: .35rem; font-size: .78rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb > span:not(:last-child) { color: rgba(255,255,255,.3); }
.breadcrumb > span:last-child {
    color: var(--accent);
    font-weight: 600;
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(232,121,58,.5);
}

/* İç sayfa — header her zaman koyu lacivert (anasayfayla aynı stil) */
body.inner-page .site-header { background: #0d1b2e; box-shadow: 0 2px 20px rgba(0,0,0,.28); }
body.inner-page .site-header.scrolled { background: #0d1b2e; box-shadow: 0 2px 20px rgba(0,0,0,.32); }
body.inner-page .page-hero { margin-top: 80px; }

/* İç sayfa scrolled — yazı renkleri beyaz kalmalı (koyu zemin üzerinde) */
body.inner-page .site-header.scrolled .main-nav > li > a { color: rgba(255,255,255,.9); }
body.inner-page .site-header.scrolled .main-nav > li > a:hover { color: #fff; }
body.inner-page .site-header.scrolled .main-nav > li.active > a { color: #fff; }
body.inner-page .site-header.scrolled .site-logo span { color: #fff; }
body.inner-page .site-header.scrolled .lang-switcher a { color: rgba(255,255,255,.75); }
body.inner-page .site-header.scrolled .lang-switcher a:hover,
body.inner-page .site-header.scrolled .lang-switcher a.active { color: #fff; }
body.inner-page .site-header.scrolled .hamburger span { background: #fff; }
body.inner-page .site-header.scrolled .search-toggle { color: rgba(255,255,255,.85); }

/* ================================================
   İÇ SAYFA BANNER
================================================ */
.page-hero {
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
/* Koyu gradient overlay + dekoratif elips aksan (sağ üst) */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 320px 165px at calc(100% - 60px) -55px, rgba(255,255,255,.07) 0%, transparent 68%),
        radial-gradient(ellipse 270px 142px at calc(100% - 35px) -75px, rgba(255,255,255,.04) 0%, transparent 68%),
        linear-gradient(100deg, rgba(0,10,30,.88) 0%, rgba(0,10,30,.65) 55%, rgba(0,10,30,.45) 100%),
        linear-gradient(to top, rgba(0,10,30,.5) 0%, transparent 60%);
    z-index: 0;
}
/* Sağda turuncu dikey aksan çizgisi */
.page-hero::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 15%;
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(232,121,58,.5), transparent);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { max-width: 700px; }
.page-hero h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
}
.page-hero p  { color: rgba(255,255,255,.7); margin-top: .5rem; }
.page-hero--tall { min-height: 420px; display: flex; align-items: center; padding: 100px 0 80px; }
.page-hero--tall::before { background: linear-gradient(to top, rgba(0,10,30,.75) 0%, rgba(0,10,30,.45) 50%, rgba(0,10,30,.25) 100%); }

/* ================================================
   SAYFALAMA
================================================ */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; }
.pagination a,
.pagination span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }

    /* Nav */
    .main-nav { display: none; }
    .lang-switcher { display: flex; gap: .1rem; }
    .lang-switcher a { font-size: .72rem; padding: .2rem .3rem; }
    .hamburger { display: flex; }

    /* Mobilde video compositor layer sorunu: videoları gizle, poster kullan */
    .hero-videos { display: none; }
    .hero-bg { opacity: 1 !important; transform: none !important; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 64px 0 0 0;
        background: #0f1f38;
        padding: 0;
        overflow-y: auto;
        z-index: 999;
        gap: 0;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    }

    /* Ana menü öğeleri */
    .main-nav.open > li > a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,.07);
        color: rgba(255,255,255,.82);
        font-size: .95rem;
        font-weight: 500;
        letter-spacing: .02em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background .15s, color .15s;
    }
    .main-nav.open > li > a:hover { background: rgba(255,255,255,.05); color: #fff; }
    .main-nav.open > li > a .chevron {
        transition: transform .25s;
        opacity: .45;
        font-size: .65rem;
    }
    .main-nav.open > li.dropdown-open > a {
        color: var(--accent);
        background: rgba(232,121,58,.08);
        border-bottom-color: rgba(232,121,58,.18);
    }
    .main-nav.open > li.dropdown-open > a .chevron {
        transform: rotate(180deg);
        opacity: 1;
        color: var(--accent);
    }

    /* Alt menü konteyner */
    .main-nav.open .dropdown {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    .main-nav.open .dropdown::before { display: none; }
    .main-nav.open > li.dropdown-open > .dropdown li a::after { display: none; }
    .main-nav.open > li.dropdown-open > .dropdown {
        display: block;
        background: rgba(0,0,0,.25);
        border-left: 3px solid var(--accent);
        border-top: 1px solid rgba(232,121,58,.2);
        margin: 0;
        padding: .25rem 0;
    }

    /* Alt menü öğeleri */
    .main-nav.open > li.dropdown-open > .dropdown li a {
        padding: .72rem 1.5rem .72rem 1.3rem;
        font-size: .86rem;
        font-weight: 500;
        color: rgba(255,255,255,.65);
        border-bottom: 1px solid rgba(255,255,255,.05);
        display: flex;
        align-items: center;
        gap: .55rem;
        background: transparent;
        transition: color .15s, background .15s;
    }
    .main-nav.open > li.dropdown-open > .dropdown li a::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent);
        flex-shrink: 0;
        opacity: .6;
    }
    .main-nav.open > li.dropdown-open > .dropdown li a:hover {
        color: #fff;
        background: rgba(255,255,255,.05);
    }
    .main-nav.open > li.dropdown-open > .dropdown li a:hover::before { opacity: 1; }
    .main-nav.open > li.dropdown-open > .dropdown li:last-child a { border-bottom: none; }
    .main-nav.open > li.dropdown-open > .dropdown li.dropdown-all a {
        color: var(--accent);
        font-weight: 600;
        background: rgba(232,121,58,.09);
        border-bottom: 1px solid rgba(232,121,58,.15);
    }
    .main-nav.open > li.dropdown-open > .dropdown li.dropdown-all a::before {
        opacity: 1;
        width: 5px;
        height: 5px;
    }

    /* Hero */
    .hero { min-height: 480px; }
    .hero-nav { display: none; }

    /* Grids */
    .sectors-grid  { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .news-grid     { grid-template-columns: 1fr; }
    .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }

    /* Header */
    .header-inner  { height: 64px; }
    body.inner-page .page-hero { margin-top: 64px; }
}

@media (max-width: 480px) {
    .sectors-grid  { grid-template-columns: 1fr; }
    .stats-grid    { grid-template-columns: 1fr; }
    .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
    .hero-actions  { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-hero-primary,
    .hero-actions .btn-hero-outline { width: auto; max-width: 240px; font-size: .8rem; padding: .75rem 1.5rem; }
    .hero-desc-row { flex-direction: column; align-items: flex-start; }
    .btn           { justify-content: center; }
}

/* ================================================
   ÜRÜNLER SAYFASI — KATEGORİ LİSTESİ
================================================ */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 80px;
}

.cat-card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--primary-dark);
    aspect-ratio: 4/3;
}
/* Elips 1 — svc-visual-band::before ile aynı */
.cat-card::before {
    content: '';
    position: absolute;
    right: -20px; top: -28px;
    width: 170px; height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,.11);
    pointer-events: none;
    z-index: 1;
    transform: rotate(-10deg);
}
/* Elips 2 — svc-visual-band::after ile aynı */
.cat-card::after {
    content: '';
    position: absolute;
    right: -38px; top: -44px;
    width: 150px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
    z-index: 1;
    transform: rotate(5deg);
}

.cat-card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform .7s ease;
}
.cat-card:hover .cat-card-img img { transform: scale(1.0); }

.cat-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.15);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(10,35,90,.82) 0%, rgba(27,77,158,.82) 100%);
    transition: background .35s;
}
.cat-card:hover .cat-card-overlay {
    background: linear-gradient(130deg, rgba(10,35,90,.90) 0%, rgba(27,77,158,.90) 100%);
}

.cat-card-body {
    position: absolute;
    inset: 0;
    padding: 1.6rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    color: #fff;
}

/* Eyebrow etiketi — hero-tag ile aynı stil */
.cat-card-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(232,121,58,.5);
    padding: .18rem .55rem;
    border-radius: 2px;
    margin-bottom: .7rem;
    width: fit-content;
    transition: background .25s, border-color .25s;
}
.cat-card:hover .cat-card-tag {
    background: rgba(232,121,58,.12);
    border-color: rgba(232,121,58,.8);
}

.cat-card-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .7rem;
    line-height: 1.3;
}

/* Aksan çizgisi — hero-accent-bar ile aynı stil */
.cat-card-bar {
    width: 36px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 1px;
    margin-bottom: .9rem;
    transition: width .35s ease;
}
.cat-card:hover .cat-card-bar { width: 54px; }

.cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-card-cta {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    transition: color .25s;
}
.cat-card:hover .cat-card-cta { color: #fff; }

/* Yuvarlak ok butonu — btn-hero-icon ile aynı stil */
.cat-card-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: all .3s ease;
}
.cat-card:hover .cat-card-icon-btn {
    background: transparent;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
    transform: translateX(3px);
}

/* ================================================
   ÜRÜNLER SAYFASI — ÜRÜN LİSTESİ (sidebar + list)
================================================ */
.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    padding: 48px 0 80px;
    align-items: start;
}

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-back-link {
    display: flex; align-items: center; gap: .4rem;
    font-size: .8rem; font-weight: 600; color: var(--primary);
    text-decoration: none; margin-bottom: .75rem;
    transition: opacity .2s;
}
.sidebar-back-link:hover { opacity: .7; }
.sidebar-header h3 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 0;
}
.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    border: 1px solid var(--border);
    border-top: none;
}
.sidebar-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 1rem;
    font-size: .875rem;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all .2s ease;
}
.sidebar-cat-list li:last-child a { border-bottom: none; }
.sidebar-cat-list li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
}
.sidebar-cat-list li.active a {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding-left: 1.25rem;
}
.sidebar-cat-list li.active a .sidebar-cat-count { background: rgba(255,255,255,.2); color: #fff; }
.sidebar-cat-name { flex: 1; }
.sidebar-cat-count {
    font-size: .72rem;
    font-weight: 700;
    background: var(--bg-light);
    color: var(--text-light);
    padding: .15rem .45rem;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.25rem;
    border-radius: 4px;
}
.sidebar-cta p {
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    margin-bottom: .75rem;
    line-height: 1.5;
}
.sidebar-cta .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: .8rem;
    padding: .6rem 1rem;
}

/* Products main */
.products-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.products-count {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Sector detail page ─────────────────────────────────────────────────── */
.sector-intro-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 48px 0 40px;
}
.sector-intro-text {
    flex: 1;
    padding-top: 8px;
}
.sector-intro-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
}

/* ── Hotspot interactive image ─────────────────────────────────────────── */
.sector-hotspot-section { padding: 48px 0 0; }

.sector-img-cols {
    display: flex;
    gap: 1.25rem;
    width: 100%;
}
.sector-img-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sector-hotspot-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 32px rgba(0,20,60,.15), 0 1px 4px rgba(0,0,0,.08);
    border: 1px solid rgba(0,51,102,.12);
}
.sector-hotspot-bg {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: contain;
    display: block;
}
.sector-img-cols--triple,
.sector-img-cols--quad   { flex-wrap: wrap; }
.sector-img-cols--triple .sector-img-col,
.sector-img-cols--quad   .sector-img-col  { flex: 0 0 calc(50% - 0.625rem); }
.sector-img-cols--triple .sector-hotspot-bg { aspect-ratio: 4/3; }
.sector-img-cols--quad   .sector-hotspot-bg { aspect-ratio: 4/3; }
.sector-img-title {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    align-self: center;
}

/* Hotspot unit: positions the whole button+popup block */
.hotspot-unit {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.hotspot-unit:has(.hotspot-popup.is-open) { z-index: 50; }

/* Hotspot button */
.hotspot-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232,121,58,.85);
    border: 2px solid #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background .2s, transform .2s;
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hotspot-btn:hover,
.hotspot-btn.is-active {
    background: var(--accent, #e8793a);
    transform: scale(1.12);
}

.hotspot-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    pointer-events: none;
    display: block;
    margin-top: -2px;
    transition: transform .2s;
}
.hotspot-btn.is-active .hotspot-icon { transform: rotate(45deg); }

/* Pulse rings */
.hotspot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(232,121,58,.5);
    animation: hs-pulse 2.5s ease-out infinite;
    pointer-events: none;
}
.hotspot-ring--2 { animation-delay: 1.25s; }
@keyframes hs-pulse {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(2.2); opacity: 0; }
}
.hotspot-btn.is-active .hotspot-ring { animation: none; opacity: 0; }

/* ── Popup — positioned relative to .hotspot-unit ──────────────────────── */
.hotspot-popup {
    display: none;
    position: absolute;
    z-index: 20;
    /* Default: opens to the RIGHT of the button, vertically centered */
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    min-width: 240px;
    max-width: 300px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,20,60,.2), 0 2px 8px rgba(0,0,0,.1);
    overflow: hidden;
}
.hotspot-popup.is-open { display: block; }

/* Opens to the LEFT when button is on the right side of image */
.hotspot-popup--left {
    left: auto;
    right: calc(100% + 14px);
}

/* Opens ABOVE when button is near the bottom */
.hotspot-popup--up {
    top: auto;
    bottom: 0;
    transform: none;
}
.hotspot-popup--up.hotspot-popup--left {
    transform: none;
}

/* Caret arrow — removed */
.hotspot-popup::before {
    display: none;
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: -2px 2px 4px rgba(0,20,60,.07);
}
/* Left-opening popup: caret on right side */
.hotspot-popup--left::before {
    left: auto;
    right: -6px;
    box-shadow: 2px -2px 4px rgba(0,20,60,.07);
}
/* Up-opening popup: no caret needed (bottom-aligned) */
.hotspot-popup--up::before { display: none; }


.hotspot-popup-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.hotspot-popup-list li { border-bottom: 1px solid #f0f2f5; }
.hotspot-popup-list li:last-child { border-bottom: none; }
.hotspot-popup-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 14px;
    text-decoration: none;
    color: var(--text, #1a2a3a);
    font-size: .875rem;
    transition: background .15s, color .15s;
    line-height: 1.3;
}
.hotspot-popup-list a:hover {
    background: var(--primary, #0d2a5e);
    color: #fff;
}
.hotspot-popup-list a:hover .hp-code  { color: rgba(255,255,255,.65); }
.hotspot-popup-list a:hover .hp-arrow { stroke: #fff; }

.hp-arrow { display: none; }

.hp-code {
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent, #e8793a);
    flex-shrink: 0;
    letter-spacing: .02em;
}
.hp-name  { flex: 1; min-width: 0; }
.hp-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--text-light, #888);
    transition: stroke .15s;
}

.sector-hotspot-desc {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light, #555);
}

@media (max-width: 768px) {
    .sector-img-cols { gap: .75rem; flex-direction: column; }
    .sector-img-title { font-size: 1.1rem; }
    .hotspot-btn  { width: 34px; height: 34px; }
    .hotspot-icon { font-size: 1.1rem; }
    .hotspot-popup { min-width: 180px; max-width: 220px; font-size: .82rem; }
    .sector-hotspot-section { padding: 32px 0 0; }
}
/* legacy fallback */
.sector-desc-block {
    padding: 48px 0 32px;
    max-width: 820px;
}
.sector-desc-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}
.sector-products-block { padding-bottom: 64px; }
.sector-products-group { margin-bottom: 48px; }
.sector-products-group-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--primary);
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
}
.sector-products-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Product list items */
.prod-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.prod-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.prod-item:hover { box-shadow: 0 6px 24px rgba(0,20,60,.12); border-color: var(--accent); transform: translateY(-2px); }
.prod-item:hover .prod-detail-btn { color: var(--accent); }

.prod-item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}


/* Product image */
.prod-item-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f2f5;
    flex-shrink: 0;
}
.prod-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .35s ease;
}
.prod-item:hover .prod-item-img img { transform: scale(1.06); }
.prod-item-img img.img-content { object-position: center 80%; }
[data-category="plastik-refrakter-harclar"] .prod-item-img img.img-packaging { object-position: center 80%; }
.prod-item-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bcc5d3;
}

.prod-item-body { min-width: 0; width: 100%; padding: .9rem 1rem .4rem; }
.prod-code-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,121,58,.08);
    border: 1px solid rgba(232,121,58,.2);
    padding: .1rem .5rem;
    border-radius: 2px;
    margin-bottom: .4rem;
}
.prod-item-body h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .3rem;
    line-height: 1.35;
}
.prod-item-body p { display: none; }

.prod-item-action { flex-shrink: 0; margin-top: auto; padding: .5rem 1rem .9rem; }
.prod-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s, gap .2s;
}
.prod-detail-btn:hover { color: var(--accent); gap: .6rem; }

.products-empty {
    padding: 3rem;
    text-align: center;
    background: var(--bg-light);
    color: var(--text-light);
    border: 1px dashed var(--border);
}

/* ================================================
   ÜRÜN DETAY SAYFASI
================================================ */
.product-detail-page {
    padding: 48px 0 80px;
    background: #f4f6f9;
}

.pdetail-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 64px;
}

/* ── Visual column ── */
.pdetail-visual {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

/* Vertical thumbnail strip */
.pdetail-thumb-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 64px;
    flex-shrink: 0;
}
.pdetail-thumb {
    width: 64px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s;
}
.pdetail-thumb-img {
    width: 64px;
    height: 64px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.pdetail-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdetail-thumb span { display: none; }
.pdetail-thumb:hover { border-color: var(--primary); box-shadow: 0 2px 10px rgba(0,51,102,.12); }
.pdetail-thumb.active { border-color: var(--accent); border-width: 2.5px; box-shadow: 0 2px 10px rgba(232,121,58,.22); }

/* Video thumbnail */
.pdetail-thumb--play .pdetail-thumb-img { background: var(--primary); color: #fff; }
.pdetail-thumb--play .pdetail-thumb-img svg { width: 28px; height: 28px; }
.pdetail-thumb--play.active .pdetail-thumb-img { background: var(--accent); }

/* Main media box */
.pdetail-media-box {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 420px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e4e8ef;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,.08);
}
.pdetail-img-pane {
    position: absolute;
    inset: 0;
    display: none;
}
.pdetail-img-pane.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdetail-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdetail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.pdetail-img-wrap:hover img { transform: scale(1.025); }

/* Zoom hint */
.pdetail-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}
.pdetail-img-wrap:hover .pdetail-zoom-hint { opacity: 1; }

/* Video embed */
.pdetail-video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdetail-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.pdetail-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
    cursor: pointer;
}
/* Wrapper fullscreen — tarayıcı native kontroller çıkmaz, kendi overlay görünür */
.pdetail-video-wrap:fullscreen,
.pdetail-video-wrap:-webkit-full-screen,
.pdetail-video-wrap:-moz-full-screen {
    background: #000;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdetail-video-wrap:fullscreen video,
.pdetail-video-wrap:-webkit-full-screen video,
.pdetail-video-wrap:-moz-full-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Custom video controls */
.pvid-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity .3s;
}
.pvid-overlay.is-playing {
    opacity: 0;
}
.pdetail-video-wrap:hover .pvid-overlay.is-playing {
    opacity: 1;
    pointer-events: all;
}
.pvid-play-btn {
    width: 68px;
    height: 68px;
    background: rgba(26,58,92,.82);
    border: 2px solid rgba(255,255,255,.22);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: all;
    transition: background .2s, transform .18s, border-color .2s;
}
.pvid-play-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}
.pvid-play-btn svg { width: 26px; height: 26px; }
/* Nudge play icon slightly right for optical centering */
.pvid-play-btn .pvid-ic-play { transform: translateX(2px); }

.pvid-fs-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,.52);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .2s;
    z-index: 2;
}
.pvid-fs-btn:hover { background: rgba(0,0,0,.8); }
.pvid-fs-btn svg { width: 16px; height: 16px; }

/* No image placeholder */
.pdetail-no-img {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,.5);
}
.pdetail-no-img svg { width: 64px; height: 64px; }
.pdetail-no-img span {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

/* Back link — inside info panel card */
.pdetail-back {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--primary);
    background: rgba(26,58,92,.07);
    border: 1px solid rgba(26,58,92,.12);
    border-radius: 6px;
    padding: .3rem .85rem;
    text-decoration: none;
    transition: background .18s, color .18s;
}
.pdetail-back svg { flex-shrink: 0; transition: transform .18s; }
.pdetail-back:hover { background: var(--primary); color: #fff; }
.pdetail-back:hover svg { transform: translateX(-3px); }

/* ── Info panel card ── */
.pdetail-info--sticky {
    /* sticky removed — panels stretch to same height via grid */
}
.pdetail-info {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 2.25rem 2.25rem;
    border: 1px solid #e4e8ef;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
}

.pdetail-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}
.pdetail-cat-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--accent);
    background: rgba(232,121,58,.1);
    padding: .3rem .85rem;
    border-radius: 6px;
    border: 1px solid rgba(232,121,58,.2);
}
.pdetail-code-chip {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: .04em;
    margin-top: .25rem;
}

.pdetail-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark, #0d2640);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

.pdetail-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.5rem;
}

/* Prop rows */
.pdetail-prop-row {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.25rem;
}
.pdetail-prop-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0f3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 1px;
}
.pdetail-prop-body { flex: 1; }
.pdetail-prop-label {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: .45rem;
}

/* Description */
.pdetail-desc {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    padding-top: .25rem;
}
.pdetail-desc p { margin-bottom: .75rem; }
.pdetail-desc ul, .pdetail-desc ol { padding-left: 1.5rem; margin-bottom: .75rem; }
.pdetail-desc li { margin-bottom: .35rem; }

/* Specs */
.pdetail-specs {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.pdetail-specs h4 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--bg-light);
    padding: .75rem 1rem;
    margin: 0;
    border-bottom: 1px solid var(--border);
}
.pdetail-specs table { width: 100%; border-collapse: collapse; }
.pdetail-specs tr:not(:last-child) td,
.pdetail-specs tr:not(:last-child) th { border-bottom: 1px solid var(--border); }
.pdetail-specs th {
    padding: .75rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: left;
    width: 40%;
}
.pdetail-specs td {
    padding: .75rem 1rem;
    font-size: .875rem;
    color: var(--text);
}

/* CTA block — always at bottom of card */
.pdetail-cta-block {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.pdetail-cta-block .btn {
    width: 100%;
    justify-content: center;
    padding: .9rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 700;
}

/* Packaging badges */
.pdetail-badges {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.pdetail-badge {
    display: inline-flex;
    align-items: center;
    padding: .3rem .75rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
}
.pdetail-badge--pkg {
    background: #e8f0fe;
    color: #1a3a5c;
    border: 1px solid #c5d6f0;
}

/* Application checkboxes */
.pdetail-checkboxes {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.pdetail-checkbox {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .75rem;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 500;
    border: 1.5px solid;
}
.pdetail-checkbox--on {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(26,58,92,.06);
}
.pdetail-checkbox--off {
    border-color: var(--border);
    color: var(--text-light);
    background: #fff;
    opacity: .6;
}

/* Quote modal */
.quote-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.quote-modal-overlay.open { display: flex; }
.quote-modal {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 560px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.quote-modal h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .35rem;
}
.quote-modal-sub {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.quote-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: .25rem;
    line-height: 1;
    transition: color .2s;
}
.quote-modal-close:hover { color: var(--primary); }
.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.quote-field label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}
.quote-field input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: .55rem .8rem;
    font-size: .88rem;
    color: var(--text);
    transition: border-color .2s;
    box-sizing: border-box;
}
.quote-field input:focus {
    outline: none;
    border-color: var(--primary);
}
.quote-field--full { grid-column: 1 / -1; }
.quote-submit { width: 100%; justify-content: center; }
.quote-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pdetail-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.pdetail-cta--top {
    margin-top: .5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

/* Related Products */
.related-section { padding-top: 3rem; border-top: 2px solid var(--border); }
.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.related-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.related-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color .2s;
}
.related-all:hover { color: var(--primary); }

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.related-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background .2s;
}
.related-card:hover { background: var(--bg-light); }
.related-card:hover .related-arrow { color: var(--accent); transform: translateX(3px); }
.related-card-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.related-card-icon svg { width: 20px; height: 20px; }
.related-card-body { flex: 1; min-width: 0; }
.related-code {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .2rem;
}
.related-card-body p {
    font-size: .78rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-arrow {
    color: var(--text-light);
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .pdetail-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .pdetail-layout { align-items: start; }
    .pdetail-info h2 { font-size: 1.7rem; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .cat-grid { grid-template-columns: 1fr; gap: 2px; }
    .products-layout { grid-template-columns: 1fr; }
    .products-sidebar { position: static; }
    .sidebar-cat-list { display: flex; flex-wrap: wrap; gap: 0; }
    .sidebar-cat-list li { flex: 1 1 auto; }
    .sidebar-cat-list li a { border-right: 1px solid var(--border); font-size: .8rem; padding: .6rem .75rem; }
    .pdetail-layout { grid-template-columns: 1fr; }
    .pdetail-info { height: auto; }
    .pdetail-info { border-radius: 10px; padding: 1.5rem; }
    .pdetail-info h2 { font-size: 1.5rem; }
    .pdetail-visual { flex-direction: column-reverse; }
    .pdetail-thumb-strip { flex-direction: row; width: auto; justify-content: center; }
    .pdetail-thumb { width: 56px; }
    .pdetail-thumb-img { width: 56px; height: 56px; }

    .related-grid { grid-template-columns: 1fr; }
    .quote-form-grid { grid-template-columns: 1fr; }
    .pdetail-checkboxes { gap: .4rem; }
    .pdetail-checkbox { font-size: .75rem; }
    .prod-list { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
    .prod-item-inner { padding: .9rem 1rem; }
}

/* ================================================
   ENDÜSTRİYEL SEKTÖRLER — LİSTİNG SAYFASI
================================================ */

.sectors-listing-page { padding: 60px 0; }

.sectors-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}
.sectors-intro p { font-size: 1.05rem; color: var(--text-light); margin: 0; }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card {
    position: relative;
    display: block;
    min-height: 340px;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.sector-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.sector-card:hover .sector-card-bg { transform: scale(1.06); }

.sector-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,30,.85) 0%, rgba(0,10,30,.4) 50%, rgba(0,10,30,.15) 100%);
    transition: background .3s;
}
.sector-card:hover .sector-card-overlay {
    background: linear-gradient(to top, rgba(0,10,30,.9) 0%, rgba(0,10,30,.55) 55%, rgba(0,10,30,.2) 100%);
}

.sector-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 28px 24px;
}

.sector-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232,121,58,.2);
    border: 1px solid rgba(232,121,58,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
    transition: background .3s;
}
.sector-card:hover .sector-card-icon { background: rgba(232,121,58,.35); }

.sector-card h2 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.sector-card p {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.sector-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s, transform .3s;
}
.sector-card:hover .sector-card-cta { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sectors-grid { grid-template-columns: 1fr; gap: 16px; }
    .sector-card { min-height: 260px; }
}

/* ================================================
   ENDÜSTRİYEL SEKTÖR — DETAY SAYFASI
================================================ */

/* Hero */
.sector-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding-bottom: 60px;
}
.sector-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,30,.88) 0%, rgba(0,10,30,.5) 50%, rgba(0,10,30,.2) 100%);
}
.sector-page-hero .container { position: relative; z-index: 2; }
.sector-page-hero .breadcrumb a,
.sector-page-hero .breadcrumb span { color: rgba(255,255,255,.7); }
.sector-page-hero .breadcrumb a:hover { color: #fff; }
.sector-page-hero-content h1 { color: #fff; margin-bottom: 16px; }
.sector-hero-lead {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 620px;
    margin-bottom: 28px;
}
.sector-hero-btn { margin-top: 4px; }

/* Description Section */
.sector-desc-section { padding: 72px 0; background: var(--bg); }
.sector-desc-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.sector-desc-body { font-size: 1.05rem; line-height: 1.8; }
.sector-desc-body p { color: var(--text); }

.sector-fact-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
}
.sfc-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.sector-fact-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.sector-fact-card p { font-size: .92rem; color: var(--text-light); margin-bottom: 20px; }

/* Products Section */
.sector-products-section {
    padding: 72px 0;
    background: var(--bg-light);
}
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 36px;
    gap: 1rem;
}
.section-head > div { flex: 1; min-width: 0; }
.section-head h2 { margin: 0; }
.section-head .btn { flex-shrink: 0; }
.section-head-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    transition: gap .2s;
}
.section-head-link:hover { gap: 10px; }

.sector-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sector-prod-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}
.sector-prod-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.spc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.spc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(0,51,102,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.spc-code {
    font-size: .75rem;
    font-weight: 700;
    background: rgba(232,121,58,.1);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: .04em;
}
.spc-body { flex: 1; }
.spc-body h4 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; line-height: 1.35; }
.spc-body p  { font-size: .85rem; color: var(--text-light); margin: 0; }
.spc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap .2s, color .2s;
}
.spc-link:hover { color: var(--accent); gap: 10px; }

/* Contact CTA */
.sector-cta-section { padding: 64px 0; background: var(--primary); }
.sector-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.sector-cta-text h2 { color: #fff; margin-bottom: 8px; font-size: 1.6rem; }
.sector-cta-text p  { color: rgba(255,255,255,.75); margin: 0; }

/* Other Sectors */
.other-sectors-section { padding: 72px 0; background: var(--bg); }
.other-sectors-title { text-align: center; margin-bottom: 36px; }
.other-sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.other-sec-card {
    position: relative;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.other-sec-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.other-sec-card:hover .other-sec-bg { transform: scale(1.08); }
.other-sec-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,10,30,.55);
    transition: background .3s;
}
.other-sec-card:hover .other-sec-overlay { background: rgba(0,10,30,.7); }
.other-sec-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px 14px;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
    z-index: 2;
}

@media (max-width: 960px) {
    .sector-desc-grid { grid-template-columns: 1fr; }
    .sector-fact-card { max-width: 480px; }
    .sector-prod-grid { grid-template-columns: repeat(2, 1fr); }
    .other-sectors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .sector-page-hero { min-height: 380px; }
    .sector-prod-grid { grid-template-columns: 1fr; }
    .sector-cta-box { flex-direction: column; text-align: center; }
    .other-sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sidebar category image in products page */
.sidebar-cat-image {
    margin: 16px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.sidebar-cat-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* ================================================
   ARAMA — OVERLAY + SONUÇ SAYFASI
================================================ */

/* Header search button */
.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: .35rem;
    color: inherit;
    border-radius: 4px;
    transition: color .2s;
    order: -1; /* sol tarafa al, lang-switcher'ın önüne */
}
.site-header:not(.scrolled) .search-toggle { color: rgba(255,255,255,.85); }
.site-header.scrolled .search-toggle { color: var(--primary); }
body.inner-page .site-header .search-toggle { color: rgba(255,255,255,.85); }
.search-toggle:hover { color: var(--accent); }

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}
.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.search-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,8,30,.75);
    backdrop-filter: blur(6px);
}
.search-overlay-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2d5e 60%, #102a54 100%);
    padding: 2.2rem 0 1.8rem;
    transform: translateY(-20px);
    transition: transform .3s ease;
    box-shadow: 0 8px 50px rgba(0,0,0,.45);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}
.search-overlay-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 10px;
    padding: .65rem 1rem;
    transition: border-color .2s, background .2s;
}
.search-overlay-form:focus-within {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.15);
}
.search-overlay-form svg { color: rgba(255,255,255,.6); flex-shrink: 0; }
.search-overlay-form input[type="search"] {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 1.15rem;
    color: #fff;
    font-family: inherit;
    min-width: 0;
}
.search-overlay-form input::placeholder { color: rgba(255,255,255,.45); }
.search-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .55rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    font-family: inherit;
}
.search-submit:hover { background: #c9621a; }
.search-hints {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    flex-wrap: wrap;
}
.search-hints a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    padding: .15rem .6rem;
    background: rgba(255,255,255,.12);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s;
}
.search-hints a:hover { border-color: var(--accent); color: #fff; background: rgba(255,255,255,.2); }
/* Live search results box */
.search-live {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: .75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}
.slive-group { border-bottom: 1px solid var(--border); }
.slive-group:last-of-type { border-bottom: none; }
.slive-group-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    padding: .6rem 1rem .3rem;
    background: var(--bg-light);
}
.slive-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: background .15s;
    border-top: 1px solid var(--border);
}
.slive-item:first-of-type { border-top: none; }
.slive-item:hover { background: var(--bg-light); }
.slive-badge {
    font-size: .7rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(232,121,58,.1);
    padding: .1rem .45rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.slive-name { font-size: .9rem; font-weight: 500; flex: 1; }
.slive-name mark { background: rgba(232,121,58,.25); color: inherit; border-radius: 2px; padding: 0 1px; }
.slive-sub { font-size: .75rem; color: var(--text-light); margin-left: auto; white-space: nowrap; }
.slive-all {
    display: block;
    text-align: center;
    padding: .7rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(232,121,58,.05);
    text-decoration: none;
    transition: background .15s;
    border-top: 1px solid var(--border);
}
.slive-all:hover { background: rgba(232,121,58,.12); }
.slive-empty { padding: .8rem 1rem; font-size: .88rem; color: var(--text-light); margin: 0; }

.search-overlay-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: .4rem;
    border-radius: 4px;
    transition: color .2s, opacity .2s;
    z-index: 2;
}
.search-overlay-close:hover { color: #fff; opacity: .45; }

/* Search results page */
.search-page { padding: 48px 0 80px; }
.search-page-form {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: .6rem 1rem;
    margin-bottom: 2.5rem;
    transition: border-color .2s;
}
.search-page-form:focus-within { border-color: var(--accent); }
.search-page-form input[type="search"] {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
    color: var(--text);
    font-family: inherit;
    min-width: 0;
}
.search-page-form button {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .55rem 1.25rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
    white-space: nowrap;
}
.search-page-form button:hover { background: #c9621a; }
.search-summary {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: .95rem;
}
.search-summary strong { color: var(--text); }
.search-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}
.search-empty svg { margin-bottom: 1rem; opacity: .35; }
.search-section { margin-bottom: 3rem; }
.search-section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--border);
}
.search-count {
    margin-left: auto;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    padding: .1rem .6rem;
    color: var(--text-light);
}
.search-results-list { display: flex; flex-direction: column; gap: .5rem; }
.search-result-item {
    display: grid;
    grid-template-columns: 44px 1fr 20px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.search-result-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transform: translateX(3px);
}
.sri-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.sri-icon svg { width: 22px; height: 22px; }
.sri-badge {
    display: inline-block;
    background: rgba(232,121,58,.1);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 600;
    padding: .1rem .5rem;
    border-radius: 4px;
    margin-bottom: .25rem;
}
.sri-body h4 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 .2rem;
}
.sri-body p {
    font-size: .8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}
.sri-cat {
    font-size: .78rem;
    color: var(--text-light);
}
.sri-arrow { color: var(--text-light); flex-shrink: 0; transition: color .2s; }
.search-result-item:hover .sri-arrow { color: var(--accent); }

@media (max-width: 640px) {
    .search-overlay-form input { font-size: 1rem; }
    .search-result-item { grid-template-columns: 38px 1fr; }
    .sri-arrow { display: none; }
    .search-overlay-inner { padding-top: 3.5rem; }
}

/* ═══════════════════════════════════════════
   FAIRS PAGE
═══════════════════════════════════════════ */
.fairs-intro {
    padding: 40px 0 8px;
    max-width: 760px;
}
.fairs-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}
.fairs-list {
    padding: 24px 0 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.fair-card {
    display: flex;
    gap: 0;
    border: 1px solid #e8edf2;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.fair-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.08); }

.fair-card-date {
    flex: 0 0 100px;
    background: var(--primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 24px 12px;
    text-align: center;
}
.fair-month { font-size: 1.6rem; font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: .03em; }
.fair-year  { font-size: 1.1rem; font-weight: 700; opacity: .8; }

.fair-card-body {
    flex: 1;
    padding: 28px 32px;
}
.fair-card-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
}
.fair-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}
.fair-location,
.fair-date-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .88rem;
    color: var(--text-light);
}
.fair-location svg,
.fair-date-text svg { flex-shrink: 0; color: var(--accent); }

.fair-desc {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}
.fair-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.fair-thumb {
    position: relative;
    width: 90px;
    height: 68px;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.fair-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.fair-thumb:hover img { transform: scale(1.08); }
.fair-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
    color: #fff;
}
.fair-thumb:hover .fair-thumb-overlay { opacity: 1; }
.fairs-empty { padding: 60px 0; color: var(--text-light); }

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.mmr-lb {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.mmr-lb.active { display: flex; }
.mmr-lb-img-wrap {
    max-width: min(90vw, 1100px);
    text-align: center;
}
.mmr-lb-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 3px;
    display: block;
    margin: 0 auto;
    transition: opacity .2s;
}
.mmr-lb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 10px;
    padding: 0 4px;
}
#mmr-lb-caption {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    margin: 0;
    flex: 1;
    text-align: left;
}
#mmr-lb-counter {
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.mmr-lb-spinner {
    display: none;
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lbSpin .7s linear infinite;
    margin: 0 auto 12px;
}
@keyframes lbSpin { to { transform: rotate(360deg); } }
.mmr-lb-close,
.mmr-lb-prev,
.mmr-lb-next {
    position: fixed;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 2.4rem;
    line-height: 1;
    padding: 12px;
    opacity: .8;
    transition: opacity .2s;
}
.mmr-lb-close:hover,
.mmr-lb-prev:hover,
.mmr-lb-next:hover { opacity: 1; }
.mmr-lb-close { top: 16px; right: 20px; font-size: 2.8rem; }
.mmr-lb-prev  { left: 16px;  top: 50%; transform: translateY(-50%); font-size: 3.5rem; }
.mmr-lb-next  { right: 16px; top: 50%; transform: translateY(-50%); font-size: 3.5rem; }

@media (max-width: 768px) {
    .fair-card { flex-direction: column; }
    .fair-card-date { flex-direction: row; gap: 10px; padding: 16px 20px; justify-content: flex-start; }
    .fair-card-body { padding: 20px; }
    .fair-thumb { width: 72px; height: 56px; }
}

/* ═══════════════════════════════════════════
   SERVICE DETAIL PAGES (svc-*)
═══════════════════════════════════════════ */
main.page-content {
    padding: 3.5rem 0 5.5rem;
}

.svc-visual-band {
    background: linear-gradient(130deg, var(--primary) 0%, #1b4d9e 100%);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.svc-visual-band::before {
    content: '';
    position: absolute;
    right: -40px; top: -50px;
    width: 300px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
    transform: rotate(-10deg);
}
.svc-visual-band::after {
    content: '';
    position: absolute;
    right: -70px; top: -80px;
    width: 280px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
    transform: rotate(5deg);
}
.svc-band-icon {
    font-size: 3rem;
    color: #fff;
    position: relative;
    z-index: 1;
}
.svc-band-content {
    position: relative;
    z-index: 1;
}
.svc-band-content strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #fff;
}
.svc-band-content p {
    margin: 0;
    font-size: .92rem;
    color: #fff;
    line-height: 1.65;
    max-width: 620px;
}

.svc-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 820px;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
}
.svc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.svc-process h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.svc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--border);
    margin-left: 1rem;
}
.svc-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    position: relative;
    transition: background .2s;
}
.svc-step:hover { background: var(--bg-light); }
.svc-step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -22px;
    position: relative;
    z-index: 1;
}
.svc-step strong { display: block; font-size: .95rem; margin-bottom: .3rem; color: var(--text); }
.svc-step p { margin: 0; font-size: .875rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 640px) {
    main.page-content { padding: 2rem 0 3.5rem; }
    .svc-visual-band { padding: 1.75rem 1.25rem; gap: .75rem; }
    .svc-band-icon { font-size: 2.25rem; }
    .svc-band-content strong { font-size: 1.1rem; }
    .svc-feature-grid { grid-template-columns: 1fr; }
    .svc-steps { margin-left: 0; border-left: none; }
    .svc-step { padding: 1rem 0; border-bottom: 1px solid var(--border); }
    .svc-step-num { margin-left: 0; }
}

/* ═══════════════════════════════════════════
   SOLUTION CENTER (ÇÖZÜM MERKEZİ)
═══════════════════════════════════════════ */

.cozum-sectors {
    padding: 64px 0 48px;
}
.section-head {
    margin-bottom: 36px;
}
.section-head h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
}
.cozum-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cozum-sec-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8edf2;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
}
.cozum-sec-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-3px);
}
.cozum-sec-img {
    height: 180px;
    overflow: hidden;
}
.cozum-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.cozum-sec-card:hover .cozum-sec-img img { transform: scale(1.05); }
.cozum-sec-img--empty {
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b8c4;
}
.cozum-sec-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cozum-sec-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
}
.cozum-sec-body p {
    font-size: .88rem;
    line-height: 1.6;
    color: var(--text-light);
    flex: 1;
    margin: 0 0 14px;
}
.cozum-sec-cta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: auto;
}

/* Product category list */
.cozum-products {
    background: #f4f7fa;
    padding: 56px 0;
    border-top: 1px solid #e8edf2;
}
.cozum-cat-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8edf2;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.cozum-cat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f3f6;
    text-decoration: none;
    transition: background .15s;
}
.cozum-cat-item:last-child { border-bottom: none; }
.cozum-cat-item:hover { background: #f8fafc; }
.cozum-cat-thumb {
    width: 60px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.cozum-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cozum-cat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cozum-cat-name {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary);
}
.cozum-cat-count {
    font-size: .82rem;
    color: var(--text-light);
}
.cozum-cat-arrow { color: var(--accent); flex-shrink: 0; }

/* CTA block */
.cozum-cta {
    padding: 64px 0;
    background: var(--primary);
}
.cozum-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.cozum-cta h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.cozum-cta p {
    color: rgba(255,255,255,.75);
    margin: 0;
    font-size: .95rem;
}

@media (max-width: 900px) {
    .cozum-sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cozum-sector-grid { grid-template-columns: 1fr; }
    .cozum-cta-inner { flex-direction: column; text-align: center; }
}

/* ── Hero / section stripes ───────────────────────────────── */
.hero-stripes {
    display: flex;
    height: 6px;
    margin: 0;
}
.hero-stripe--accent   { background: var(--accent);  flex: 2; }
.hero-stripe--primary  { background: var(--primary); flex: 5; }

/* ═══════════════════════════════════════════════════════════
   KURUMSAL PAGE
══════════════════════════════════════════════════════════ */
.kurumsal-page { padding: 0 0 80px; }

/* About section — two-column */
.kurumsal-about {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: center;
    padding: 70px 0 60px;
}
.section-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.kurumsal-about-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 24px;
    line-height: 1.2;
}
.kurumsal-about-body {
    color: #444;
    line-height: 1.85;
    font-size: 1rem;
}
.kurumsal-about-body p,
.kurumsal-about-body li { margin-bottom: .6em; }
.kurumsal-aside-logo {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid rgba(0,10,40,.12);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kurumsal-aside-logo img {
    max-height: 90px;
    width: 100%;
    object-fit: contain;
}

/* Aside stat cards */
.kurumsal-about-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.kurumsal-stat-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.kurumsal-stat-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 12px;
    font-size: .85rem;
    font-weight: 600;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), #1a4a8a);
}
.kurumsal-stat-card--wide i { font-size: 1.1rem; opacity: .8; flex-shrink: 0; }
.kurumsal-stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.kurumsal-stat-number sup { font-size: .6em; font-weight: 600; vertical-align: super; }
.kurumsal-stat-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .75;
}

/* Facility photos section */
.kurumsal-facilities {
    padding: 30px 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(0,10,40,.08);
}
.kurumsal-facilities-header {
    text-align: center;
    margin-bottom: 36px;
}
.kurumsal-facilities-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin: 8px 0 0;
}
.kurumsal-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.kurumsal-photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.kurumsal-photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.kurumsal-photo-item:hover img { transform: scale(1.05); }
.kurumsal-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,20,60,.8));
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 40px 18px 16px;
}
@media (max-width: 640px) {
    .kurumsal-photos { grid-template-columns: 1fr; }
    .kurumsal-photo-item img { height: 220px; }
}

/* Mission & Vision grid */
.kurumsal-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}
.kurumsal-mv-card {
    background: #f7f9fc;
    border: 1px solid rgba(0,10,40,.07);
    border-top: 4px solid var(--primary);
    border-radius: 12px;
    padding: 40px 36px;
}
.kurumsal-mv-card--vision {
    border-top-color: var(--accent);
}
.kurumsal-mv-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.kurumsal-mv-card--vision .kurumsal-mv-icon {
    background: var(--accent);
}
.kurumsal-mv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.kurumsal-mv-body {
    color: #555;
    line-height: 1.85;
    font-size: .97rem;
}

/* Responsive */
@media (max-width: 900px) {
    .kurumsal-about { grid-template-columns: 1fr; gap: 40px; }
    .kurumsal-about-aside { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .kurumsal-mv-grid { grid-template-columns: 1fr; }
    .kurumsal-mv-card { padding: 30px 22px; }
}

/* ===== ANASAYFA — SERTİFİKALAR BÖLÜMÜ ===== */
.home-certs-section {
    background: #f8fafc;
    border-top: 1px solid #e8ecf0;
    border-bottom: 1px solid #e8ecf0;
    padding: 60px 0;
}
.home-certs-head {
    text-align: center;
    margin-bottom: 40px;
}
.home-certs-head h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 8px 0 12px;
}
.home-certs-head p {
    color: #64748b;
    font-size: .92rem;
    max-width: 480px;
    margin: 0 auto;
}
.home-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.home-cert-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.home-cert-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}
.home-cert-card-img {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    height: 200px;
}
.home-cert-card-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform .3s;
}
.home-cert-card:hover .home-cert-card-img img { transform: scale(1.04); }
.home-cert-card-body {
    padding: 16px 20px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.home-cert-card-body strong {
    font-size: .95rem;
    color: #1a2a4a;
    font-weight: 700;
}
.home-cert-card-body span {
    font-size: .8rem;
    color: #64748b;
}
@media (max-width: 768px) {
    .home-certs-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .home-certs-grid { grid-template-columns: repeat(2, 1fr); }
    .home-cert-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}


/* ===== KURUMSAL — SERTİFİKALAR ===== */
.kurumsal-certs {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e8ecf0;
}
.kurumsal-certs-header {
    text-align: center;
    margin-bottom: 36px;
}
.kurumsal-certs-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 8px 0 0;
}
.kurumsal-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.kurumsal-cert-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}
.kurumsal-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.kurumsal-cert-img {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 200px;
    overflow: hidden;
}
.kurumsal-cert-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform .3s;
}
.kurumsal-cert-card:hover .kurumsal-cert-img img { transform: scale(1.04); }
.kurumsal-cert-info {
    padding: 16px 20px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.kurumsal-cert-info strong {
    font-size: .95rem;
    color: #1a2a4a;
    font-weight: 700;
}
.kurumsal-cert-info span {
    font-size: .8rem;
    color: #64748b;
}
@media (max-width: 768px) {
    .kurumsal-certs-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .kurumsal-certs-grid { grid-template-columns: repeat(2, 1fr); }
    .kurumsal-cert-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: #0d1b2e;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
}
.loader-logo {
    width: 115px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: loader-pulse 2s ease-in-out infinite;
}
.loader-logo-text {
    position: relative;
    z-index: 2;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .1em;
    animation: loader-pulse 2s ease-in-out infinite;
}
@keyframes loader-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(232,121,58,.65)) drop-shadow(0 0 28px rgba(232,121,58,.25));
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(232,121,58,1)) drop-shadow(0 0 55px rgba(232,121,58,.5)) drop-shadow(0 0 90px rgba(232,121,58,.18));
    }
}
.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}
.loader-ring--1 {
    border-top-color: rgba(232,121,58,.95);
    border-right-color: rgba(232,121,58,.25);
    animation: loader-spin 1.5s linear infinite;
}
.loader-ring--2 {
    inset: 16px;
    border-bottom-color: rgba(232,121,58,.6);
    border-left-color: rgba(232,121,58,.12);
    animation: loader-spin 2.4s linear infinite reverse;
}
@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

/* ================================================
   ÜRETİM SAYFASI
================================================ */
.production-page { padding: 60px 0; }
.production-empty { text-align:center; color:var(--text-light); padding:60px 0; font-size:1.1rem; }

.production-section { margin-bottom: 60px; }
.production-section-title {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}
.production-section-title i { color: var(--accent); font-size: 1.2rem; }

/* Video grid */
.production-grid--video {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.production-video-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    background: #0d1b2e;
}
.production-video-card .pdetail-video-wrap {
    position: absolute;
    inset: 0;
    height: 100%;
}

.production-video-embed {
    position: relative;
    padding-top: 56.25%;
    background: #0d1b2e;
}
.production-video-embed iframe,
.production-video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.production-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0d1b2e;
}
.production-video-thumb img { width:100%; height:100%; object-fit:cover; }
.production-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
}
.production-play-icon i { font-size: 3rem; color: rgba(255,255,255,.9); }

.production-video-info { padding: 18px 20px; }
.production-video-info h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.production-video-info p { font-size: .88rem; color: var(--text-light); line-height: 1.55; margin: 0; }

/* Photo grid */
.production-grid--photo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.production-photo-card {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    background: #0d1b2e;
}
.production-photo-card img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.production-photo-card:hover img { transform: scale(1.06); }
.production-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,46,.75) 0%, rgba(13,27,46,.1) 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity .28s;
    color: #fff;
}
.production-photo-card:hover .production-photo-overlay { opacity: 1; }
.production-photo-overlay svg { flex-shrink: 0; }
.production-photo-overlay span {
    font-size: .82rem;
    font-weight: 600;
    text-align: center;
    padding: 0 14px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .production-grid--video { grid-template-columns: 1fr; }
    .production-grid--photo { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .production-section-title { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .production-grid--photo { grid-template-columns: 1fr; }
}
