/* =========================================================
   Adıgüzeller İnşaat — Production CSS (Refresh Sistemi)
   ========================================================= */

:root {
    --color-primary:        #0E2A47;
    --color-primary-dark:   #0A1F36;
    --color-primary-light:  #1A3D63;
    --color-accent:         #C9A24A;
    --color-accent-dark:    #A8862E;
    --color-bg:             #FFFFFF;
    --color-bg-alt:         #F5F6F8;
    --color-text:           #1A1A1A;
    --color-text-muted:     #5B6573;
    --color-border:         #E4E7EB;
    --color-success:        #2F7D5B;
    --color-warning:        #C9882E;

    --max-w: 1280px;
    --gutter: 24px;
    --radius-card: 12px;
    --radius-btn: 8px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(14, 42, 71, .04);
    --shadow-md: 0 4px 12px rgba(14, 42, 71, .06);
    --shadow-lg: 0 8px 24px rgba(14, 42, 71, .08);
    --shadow-xl: 0 24px 48px -12px rgba(14, 42, 71, .18);

    --section-y: 96px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --header-h: 76px;
}

@media (max-width: 768px) { :root { --section-y: 64px; --gutter: 16px; --header-h: 64px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition: none !important; }
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:where(a, button, input, select, textarea, [role="button"]):focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: var(--radius-btn);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Typography */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--color-primary); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.5rem; }
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .2s var(--ease);
    line-height: 1;
    font-family: inherit;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--color-accent); color: var(--color-primary); }
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* =========================================================
   TOP BAR + HEADER
   ========================================================= */
.top-bar {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,.85);
    font-size: 0.8125rem;
    padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: inherit; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.top-bar a:hover { color: var(--color-accent); }
.top-bar .meta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
@media (max-width: 768px) { .top-bar .top-bar-address { display: none; } }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); position: relative; }
.nav-logo img { height: 44px; width: auto; }
.nav-list { display: flex; gap: 28px; align-items: center;margin-bottom: 0px; }
.nav-item { position: relative; }
.nav-link {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 8px 0;
    position: relative;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 0; height: 2px;
    background: var(--color-accent);
    transition: width .25s var(--ease);
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.dropdown-arrow { font-size: 0.7rem; opacity: 0.6; transition: transform .2s; }
.nav-item.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-primary); margin: 5px 0; transition: all .25s var(--ease); border-radius: 2px; }

/* Dropdown (yeni header) — eski style.css kurallarını override eder */
.header .nav-list .dropdown-menu {
    position: absolute;
    /* top: 100% ile parent'a yapışsın — boşluğa kayıp hover kaybolmasın */
    top: 100%;
    left: 0;
    right: auto;
    bottom: auto;
    /* görsel boşluk margin değil padding ile yapılır → hover bridge */
    margin-top: 8px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .25s var(--ease);
    z-index: 50;
    list-style: none;
    overflow: visible;
    width: auto;
    max-height: none;
}
/* Hover bridge: parent ile menü arasındaki 8px gap'i tıklanabilir görünmez bant doldursun */
.header .nav-list .nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    z-index: 49;
    pointer-events: none;
}
.header .nav-list .nav-item.dropdown:hover::after {
    pointer-events: auto;
}
.header .nav-list .dropdown-menu li {
    list-style: none;
    border: none;
}
.header .nav-list .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-btn);
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border: none;
    transition: background .15s ease, color .15s ease;
    width: auto;
}
.header .nav-list .dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding-left: 14px;
}

/* Desktop hover — 769px+ breakpoint, eski style.css ile uyumlu */
@media (min-width: 769px) {
    .header .nav-list .nav-item.dropdown:hover > .dropdown-menu,
    .header .nav-list .nav-item.dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .nav-list, .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .nav-list.is-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px var(--gutter);
        gap: 4px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav-list.is-open .nav-item { width: 100%; }
    .nav-list.is-open .nav-link { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--color-border); }
    .header .nav-list.is-open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        background: transparent;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s var(--ease), padding .3s var(--ease);
    }
    .header .nav-list.is-open .nav-item.is-mobile-open > .dropdown-menu {
        max-height: 600px;
        padding: 4px 0 8px 16px;
    }
    .header .nav-list.is-open .dropdown-menu a {
        padding: 8px 0;
    }
}

/* =========================================================
   HERO / SLIDER
   ========================================================= */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 880px;
    overflow: hidden;
    background: var(--color-primary);
}
@media (max-width: 768px) { .hero { height: 70vh; min-height: 540px; } }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s var(--ease);
    pointer-events: none;          /* aktif olmayan slaytlar tıklamaları yakalamasın */
}
.slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }
/* Karanlık scrim katmanı tıklamaları geçirsin */
.slide::after { pointer-events: none; }
/* Slide içeriği (başlıklar/butonlar) her zaman tıklanabilir kalsın */
.slide-content { pointer-events: auto; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.slide.is-active .slide-bg { transform: scale(1); }
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,42,71,.10) 0%, rgba(14,42,71,.55) 50%, rgba(14,42,71,.85) 100%);
}
/* Eski style.css'in .slide-content kuralını (max-width:800px, text-align:center)
   tamamen geçersiz kılmak için !important ile zorlanır */
.hero .slide-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 96px !important;
    z-index: 3;
    color: #fff;
    text-align: left !important;
}
@media (max-width: 768px) { .hero .slide-content { padding-bottom: 80px !important; } }

/* Slide içerisindeki container — standart 1280px ortalı blok */
.hero .slide-content .container {
    max-width: var(--max-w) !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 var(--gutter) !important;
    text-align: left !important;
}

/* Container içindeki metin bloğu — sola yaslı, max 720px */
.hero .slide-content .container > .slide-tag,
.hero .slide-content .container > h1,
.hero .slide-content .container > p,
.hero .slide-content .container > .slide-actions {
    max-width: 720px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}
.hero .slide-content h1 { width: 100%; }
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.slide-tag::before { content: ''; width: 32px; height: 1.5px; background: var(--color-accent); }
.slide-content h1 {
    color: #fff;
    margin-bottom: 16px;
    max-width: 800px;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.slide-content p {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: rgba(255,255,255,.92);
    max-width: 640px;
    margin-bottom: 32px;
    line-height: 1.6;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slide .btn-primary { background: var(--color-accent); color: var(--color-primary); border: none; }
.slide .btn-primary:hover { background: #fff; color: var(--color-primary); }

.slider-controls {
    position: absolute;
    right: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
    bottom: 96px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 4;
    color: rgba(255,255,255,.9);
}
@media (max-width: 768px) { .slider-controls { bottom: 24px; right: var(--gutter); } }

.slider-counter { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.1em; min-width: 70px; text-align: right; }
.slider-counter strong { color: var(--color-accent); font-size: 1.125rem; }
.slider-arrow {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    cursor: pointer;
    transition: all .2s var(--ease);
    display: grid; place-items: center;
}
.slider-arrow:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-primary); }
.slider-arrow svg { width: 18px; height: 18px; }

.slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    display: flex;
    gap: 8px;
    z-index: 4;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .25s; border: none; padding: 0; }
.dot.is-active { background: var(--color-accent); width: 32px; border-radius: 999px; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,.92);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-list {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.875rem;
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; }
.trust-item svg { color: var(--color-accent); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,.18); }
@media (max-width: 768px) { .trust-list { gap: 16px; justify-content: flex-start; } .trust-divider { display: none; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: var(--section-y) 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--color-text-muted); margin-bottom: 18px; font-size: 1.0625rem; }
.about-text .btn { margin-top: 16px; }

.about-visual { position: relative; }
.about-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute;
    bottom: -28px; left: -28px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 24px 28px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    max-width: 240px;
}
.about-badge .num { font-size: 2.75rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.about-badge .label { font-size: 0.875rem; font-weight: 600; margin-top: 8px; line-height: 1.3; }
@media (max-width: 576px) { .about-badge { left: 16px; bottom: -20px; padding: 18px 22px; } .about-badge .num { font-size: 2.25rem; } }

/* =========================================================
   STATS
   ========================================================= */
.stats {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
.stat { text-align: center; padding: 0 8px; }
.stat-num {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: baseline;
}
.stat-num .suffix { font-size: 0.6em; font-weight: 600; margin-left: 2px; }
.stat-divider { width: 32px; height: 2px; background: rgba(255,255,255,.25); margin: 16px auto 12px; }
.stat-label { font-size: 0.9375rem; color: rgba(255,255,255,.85); font-weight: 500; }

/* =========================================================
   VISION & MISSION
   ========================================================= */
.vm { padding: var(--section-y) 0; background: var(--color-bg-alt); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 40px;
    transition: all .3s var(--ease);
    position: relative;
}
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); }
.vm-icon {
    width: 56px; height: 56px;
    background: rgba(201, 162, 74, .12);
    color: var(--color-accent);
    border-radius: 14px;
    display: grid; place-items: center;
    margin-bottom: 24px;
}
.vm-card h3 { margin-bottom: 12px; }
.vm-card p { color: var(--color-text-muted); font-size: 1.0625rem; }

/* =========================================================
   PROJECTS
   ========================================================= */
.projects { padding: var(--section-y) 0; }
.projects-head, .news-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 32px; margin-bottom: 40px; flex-wrap: wrap;
}
.projects-head .head-text, .news-head .head-text { max-width: 600px; }
.projects-head h2, .news-head h2 { margin-bottom: 12px; }
.projects-head p, .news-head p { color: var(--color-text-muted); }

.filters {
    display: flex; gap: 8px; flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 32px;
    scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.chip {
    padding: 10px 20px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
}
.chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
.chip.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 992px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all .3s var(--ease);
    color: inherit;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: inherit; }
.project-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.project-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--ease);
}
.project-card:hover .project-img-wrap img { transform: scale(1.05); }
.badge {
    position: absolute;
    top: 14px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.badge-cat { left: 14px; background: rgba(14,42,71,.92); color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.badge-status { right: 14px; background: rgba(255,255,255,.95); color: var(--color-primary); }
.badge-status.is-active { background: var(--color-success); color: #fff; }

.project-body { padding: 22px 22px 24px; }
.project-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}
.project-meta {
    display: flex; align-items: center; gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 14px;
}
.project-meta svg { color: var(--color-accent); flex-shrink: 0; }
.project-metrics {
    display: flex; gap: 16px; flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}
.project-metrics strong { color: var(--color-primary); font-weight: 700; }

.projects-foot, .news-foot { text-align: center; margin-top: 40px; }

/* =========================================================
   NEWS
   ========================================================= */
.news { padding: var(--section-y) 0; background: var(--color-bg-alt); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 992px) { .news-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }
.news-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
    color: inherit;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.news-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--color-bg-alt); }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .news-img-wrap img { transform: scale(1.05); }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.news-title {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-excerpt {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.news-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.news-link svg { transition: transform .25s var(--ease); }
.news-card:hover .news-link { color: var(--color-accent-dark); }
.news-card:hover .news-link svg { transform: translateX(4px); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
    position: relative;
    background-image: linear-gradient(120deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}
.cta-band-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: lighten;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-grid h2 { color: #fff; margin-bottom: 12px; max-width: 640px; }
.cta-grid p { color: rgba(255,255,255,.8); font-size: 1.0625rem; max-width: 560px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 768px) { .cta-actions { justify-content: flex-start; } }

/* =========================================================
   FOOTER — açık gradient arka plan
   ========================================================= */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-alt) 100%);
    color: var(--color-text-muted);
    padding: 72px 0 0;
    border-top: 1px solid var(--color-border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 48px; margin-bottom: 18px; filter: none; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.6; max-width: 320px; margin-bottom: 24px; color: var(--color-text-muted); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--color-border);
    display: grid; place-items: center;
    color: var(--color-primary);
    transition: all .2s var(--ease);
}
.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-accent);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer h4 {
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--color-text-muted); font-size: 0.9375rem; transition: color .2s; }
.footer-links a:hover { color: var(--color-primary); }

.footer-contact { font-size: 0.9375rem; line-height: 1.55; color: var(--color-text); }
.footer-contact .contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
}
.footer-contact .contact-row > * { width: auto; max-width: 100%; padding: 0; margin-top: 0; }
.footer-contact .contact-row svg { color: var(--color-accent); flex-shrink: 0; margin-top: 4px; width: 16px; height: 16px; }
.footer-contact .contact-row span,
.footer-contact .contact-row a { flex: 1; min-width: 0; word-break: break-word; color: var(--color-text); }
.footer-contact a { color: var(--color-text); }
.footer-contact a:hover { color: var(--color-primary); }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a { color: var(--color-text-muted); }
.footer-bottom a:hover { color: var(--color-primary); }

/* =========================================================
   PAGE HEADER (iç sayfalar) — ortalanmış başlık düzeni
   ========================================================= */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.45;
}
/* İçeriğin okunabilirliği için yumuşak alt scrim — görsel açık kalır,
   metin altında karanlıklaşır */
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,42,71,.35) 0%, rgba(14,42,71,.65) 100%);
    z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin: 0 auto 12px; max-width: 900px; }
.page-header .lead { color: rgba(255,255,255,.85); font-size: 1.125rem; max-width: 720px; margin: 0 auto; }

.breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.65); font-size: 0.875rem; margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,.85); transition: color .2s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { opacity: 0.5; }
.page-header > .container > div[style*="display: inline-flex"] { justify-content: center; }
.page-header .container > * { margin-left: auto; margin-right: auto; }

/* =========================================================
   FORMS (iletisim, kariyer)
   ========================================================= */
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-btn);
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: var(--color-text);
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14,42,71,.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-label {
    display: block; margin-bottom: 8px;
    font-size: 0.875rem; font-weight: 600; color: var(--color-primary);
}
.form-group { margin-bottom: 20px; }

/* =========================================================
   PAGINATION (Bootstrap override - keep compatible)
   ========================================================= */
.pagination { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; padding: 0; margin: 40px 0 0; list-style: none; }
.page-item .page-link {
    min-width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 12px;
    border-radius: var(--radius-btn);
    border: 1.5px solid var(--color-border);
    color: var(--color-primary);
    background: #fff;
    font-weight: 500;
    transition: all .2s var(--ease);
    font-size: 0.875rem;
}
.page-item .page-link:hover { background: var(--color-bg-alt); border-color: var(--color-primary); }
.page-item.active .page-link { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.page-item.disabled .page-link { color: var(--color-text-muted); pointer-events: none; opacity: 0.5; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   LIGHTBOX (galeri görsel modalı) — eski style.css'in
   .lightbox-* kurallarını override etmek için tüm selector'lar
   .lightbox parent ile prefix'lendi (daha yüksek specificity)
   ========================================================= */
.lightbox {
    position: fixed !important;
    inset: 0;
    background: rgba(10, 17, 26, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    padding: 80px 24px 64px;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox .lightbox-stage {
    position: relative;
    width: auto;
    max-width: min(1200px, 100%);
    max-height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lightbox .lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    background: transparent;
    transition: opacity .2s var(--ease);
}
.lightbox .lightbox-image.is-loading { opacity: 0; }

/* Counter — viewport'un üst-ortasında pill */
.lightbox .lightbox-counter {
    position: fixed;
    top: 24px;
    left: 50%;
    height: 35px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border-radius: 999px;
    text-align: center;
    z-index: 3;
    pointer-events: none;
    min-width: 70px;
}
.lightbox .lightbox-counter:empty { display: none; }

/* Caption — viewport'un alt-ortasında */
.lightbox .lightbox-caption {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.4;
    padding: 0 16px;
    text-align: center;
    max-width: 720px;
    z-index: 3;
}
.lightbox .lightbox-caption:empty { display: none; }

/* Butonlar — viewport-fixed */
.lightbox .lightbox-close,
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s var(--ease);
    z-index: 4;
    padding: 0;
}
.lightbox .lightbox-close:hover,
.lightbox .lightbox-prev:hover,
.lightbox .lightbox-next:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: scale(1.05);
}
.lightbox .lightbox-prev:hover,
.lightbox .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox .lightbox-close {
    top: 24px;
    right: 24px;
    left: auto;
    bottom: auto;
}
.lightbox .lightbox-prev {
    top: 50%;
    left: 24px;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
}
.lightbox .lightbox-next {
    top: 50%;
    right: 24px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox { padding: 64px 16px 100px; }
    .lightbox .lightbox-image { max-height: calc(100vh - 200px); }
    .lightbox .lightbox-prev,
    .lightbox .lightbox-next {
        top: auto;
        bottom: 24px;
        transform: none;
    }
    .lightbox .lightbox-prev:hover,
    .lightbox .lightbox-next:hover { transform: scale(1.05); }
    .lightbox .lightbox-prev { left: 24px; }
    .lightbox .lightbox-next { right: 24px; }
    .lightbox .lightbox-caption { bottom: 80px; }
    .lightbox .lightbox-counter { top: 16px; }
}

/* Galeri tetikleyicileri — varsayılan zoom-in cursor */
.gallery-trigger {
    cursor: zoom-in;
}

/* Body scroll lock (lightbox açıkken) */
body.has-lightbox {
    overflow: hidden;
}

/* =========================================================
   THIN SCROLLBAR
   ========================================================= */
@media (pointer: fine) {
    * { scrollbar-width: thin; scrollbar-color: var(--color-border) transparent; }
    *::-webkit-scrollbar { width: 8px; height: 8px; }
    *::-webkit-scrollbar-track { background: transparent; }
    *::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }
    *::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }
}
