/* ============================================================
   AG WORLD — Stil Dosyası (Public Site + Admin Panel)
   Palet: --black (#0A0A0A) --black2 (#161616) --gold (#C9A227)
          --gold-light (#E3C15C) --off-white (#F6F5F1) --text (#171717)
   ============================================================ */

:root {
    --black: #0a0a0a;
    --black2: #161616;
    --black3: #202020;
    --gold: #c9a227;
    --gold-light: #e3c15c;
    --gold-dark: #a9821c;
    --off-white: #f6f5f1;
    --white: #ffffff;
    --text: #171717;
    --text-lt: #5a5a5a;
    --mid: #8a8a8a;
    --gray: #e7e5df;
    --radius: 10px;
    --shadow: 0 24px 60px -24px rgba(0,0,0,.35);
    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 110%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em; line-height: 1.15; margin: 0 0 .5em; color: var(--black); }

/* ── Eyebrow / section header ─────────────────────────── */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold-dark); font-weight: 600; margin-bottom: 12px; justify-content: center; width: 100%;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--gold); }
.section-header { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-title { font-size: clamp(24px, 3.4vw, 36px); text-align: center; }
.section-desc { color: var(--text-lt); font-size: 15.5px; text-align: center; margin-top: 10px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 26px; font-family: var(--font-display); font-size: 13px;
    letter-spacing: .06em; text-transform: uppercase; border-radius: 6px;
    border: 1px solid transparent; transition: all .2s;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-dark, .btn-navy { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--black3); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off-white); }
.btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 15px 32px; font-size: 13.5px; }

/* ── Top bar ───────────────────────────────────────────── */
.topbar { background: linear-gradient(180deg, #0d0d0d, var(--black)); color: rgba(255,255,255,.65); font-size: 12.5px; border-bottom: 1px solid rgba(201,162,39,.12); }
@media (max-width: 980px) { .topbar { display: none; } }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.65); }
.topbar-item i { color: var(--gold); }
.topbar-item:hover { color: var(--gold-light); }
.topbar-socials { display: flex; gap: 10px; }
.topbar-social { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; color: rgba(255,255,255,.7); }
.topbar-social:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 760px) { .topbar-hide-sm { display: none; } }

/* ── Site header / nav ─────────────────────────────────────────
   İmza öğesi: kare logo rozeti, ince koyu bar'ın üstüne/altına taşar
   ─────────────────────────────────────────────────────────────── */
.site-header { background: var(--black); position: -webkit-sticky; position: sticky; top: 0; z-index: 200; overflow: visible; border-bottom: 2px solid transparent; border-image: linear-gradient(90deg, transparent, rgba(201,162,39,.35) 20%, rgba(201,162,39,.35) 80%, transparent) 1; -webkit-transform: translateZ(0); }
.navbar { position: relative; display: flex; align-items: center; height: 78px; }

/* Logo rozeti — KARE logo: bar'dan taşan, üstte/altta eşit miktarda çıkıntı yapan kare kutu */
.logo { display: block; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 116px; height: 116px; z-index: 6; }
.logo-img-wrap {
    width: 100%; height: 100%; background: var(--white); border: 3px solid var(--gold); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 36px -10px rgba(0,0,0,.55);
    overflow: hidden;
}
.logo-img { object-fit: contain; display: block; }
.logo-fallback { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; gap: 8px; flex-direction: column; background: var(--black); border: 3px solid var(--gold); border-radius: 14px; }
.logo-mark { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); }
.logo-text { display: flex; flex-direction: column; align-items: center; line-height: 1.15; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 11px; color: #fff; letter-spacing: .04em; }
.logo-tagline { font-size: 8px; color: var(--gold-light); letter-spacing: .04em; }

/* Nav bar'ı, logo rozetinin genişliği kadar sağa kaydır */
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 152px; flex: 1; justify-content: flex-end; height: 100%; }
.nav-item {
    display: flex; align-items: center; gap: 7px; padding: 10px 16px; margin: 0 1px;
    font-family: var(--font-display); font-size: 13.5px; letter-spacing: .03em; text-transform: uppercase;
    color: rgba(255,255,255,.72); background: none; border: none; position: relative; border-radius: 7px;
    transition: color .2s, background-color .2s;
}
.nav-icon { color: var(--gold); font-size: 15px; }
.nav-item:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-item.active { color: #fff; }
.nav-item.active::after { content:''; position:absolute; left:16px; right:16px; bottom:4px; height:2px; background:var(--gold); }
.nav-caret { font-size: 11px; margin-left: -2px; transition: transform .2s; }
.nav-dropdown-wrap:hover .nav-caret { transform: rotate(180deg); }

.nav-dropdown-wrap { position: relative; display: flex; align-items: stretch; z-index: 10; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 260px; z-index: 30;
    background: var(--white); border: 1px solid var(--gray); border-radius: 8px;
    box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .2s; padding: 10px;
}
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mega-wrap .nav-dropdown { min-width: 640px; }
.nav-dropdown-services { left: auto; right: 0; min-width: 760px !important; display: flex; padding: 0 !important; overflow: hidden; }
.nav-dropdown-services .nav-dropdown-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 14px; flex: 1; }
.dd-promo {
    width: 260px; flex-shrink: 0; background: linear-gradient(160deg, var(--black), var(--black3));
    padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; position: relative;
}
.dd-promo::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 30% 20%, rgba(201,162,39,.18), transparent 60%); }
.dd-promo-eyebrow { position: relative; color: var(--gold); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.dd-promo-title { position: relative; font-family: var(--font-display); color: #fff; font-size: 17px; text-transform: none; line-height: 1.35; margin-bottom: 10px; }
.dd-promo-desc { position: relative; color: rgba(255,255,255,.6); font-size: 12.5px; line-height: 1.6; margin-bottom: 18px; }
.btn-sm-inline { position: relative; padding: 10px 18px; font-size: 11.5px; }
.nav-mega-wrap .nav-dropdown-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dd-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; border-radius: 6px; }
.dd-item:hover { background: var(--off-white); }
.dd-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--black); color: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.dd-icon-photo { background-size: cover; background-position: center; }
.dd-title { font-family: var(--font-display); font-size: 13px; letter-spacing: .02em; color: var(--black); text-transform: none; }
.dd-desc { font-size: 12px; color: var(--mid); margin-top: 1px; }

.nav-cta { background: var(--gold); color: var(--black) !important; border-radius: 7px; padding: 10px 20px !important; align-self: center; box-shadow: 0 6px 18px -6px rgba(201,162,39,.5); transition: transform .2s, box-shadow .2s, background-color .2s; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(201,162,39,.65); }
.nav-cta::after { display: none !important; }

.nav-toggle-btn { display: none; background: none; border: 0; font-size: 24px; color: #fff; margin-left: auto; }

/* ── Topbar: sol içerik logo rozetinin arkasına düşmesin ── */
.topbar-left { margin-left: 150px; transition: margin-left .1s; }

@media (max-width: 980px) {
    .nav-links {
        display: none; margin-left: 0;
    }
    .nav-links.is-open {
        display: flex !important; flex-direction: column !important; align-items: stretch !important; justify-content: flex-start !important;
        position: fixed !important; top: 64px !important; left: 0 !important; right: 0 !important; bottom: auto !important;
        width: 100% !important; height: calc(100vh - 64px) !important; max-height: calc(100vh - 64px) !important;
        background: #fff !important; margin: 0 !important; padding: 16px 22px 30px !important;
        overflow-y: auto !important; -webkit-overflow-scrolling: touch; z-index: 9000 !important; box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }
    .nav-links.is-open .nav-item { color: var(--black); justify-content: flex-start; padding: 15px 6px; font-size: 16px; border-bottom: 1px solid var(--gray); }
    .nav-links.is-open .nav-item:hover { background: var(--off-white); }
    .nav-links.is-open .nav-icon { color: var(--gold-dark); }
    .nav-links.is-open .nav-dropdown-wrap { flex-direction: column; align-items: stretch; }
    .nav-links.is-open .nav-cta { justify-content: center; margin-top: 20px; border-bottom: none; }
    body.nav-open { overflow: hidden; }

    .nav-dropdown {
        position: static; opacity: 1; visibility: hidden; max-height: 0; overflow: hidden;
        transform: none; transition: max-height .25s ease; box-shadow: none; border: none;
        padding: 0; width: 100%; min-width: 0 !important; background: var(--off-white); border-radius: 8px;
    }
    .nav-dropdown-wrap.is-open .nav-dropdown { visibility: visible; max-height: 1200px; padding: 10px; margin-bottom: 6px; }
    .nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; } /* hover artık mobilde tetiklenmiyor, JS .is-open kullanıyor */
    .nav-dropdown-services { flex-direction: column; }
    .nav-dropdown-services .nav-dropdown-inner { grid-template-columns: 1fr; padding: 0; }
    .dd-promo { width: 100%; }

    .nav-toggle-btn { display: block; }
    .navbar { height: 64px; }
    .logo { width: 84px; height: 84px; }
    .logo-name { font-size: 9px; }
    .topbar-left { margin-left: 100px; }

    /* İstek: mobilde üst bilgi çubuğu (telefon/sosyal/1997'den beri) gizlensin */
    .topbar { display: none; }
}

/* ── Hero slider — tam ekran sinematik tasarım ─────────────────
   Crossfade geçiş + Ken Burns zoom efekti, kademeli metin animasyonu,
   ilerleme çubuklu nokta göstergeleri, aşağı kaydır ipucu
   ──────────────────────────────────────────────────────────── */
.hero-slider { position: relative; height: 100vh; min-height: 620px; max-height: 980px; overflow: hidden; background: var(--black); }

.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease; z-index: 1; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.slide-media { position: absolute; inset: 0; overflow: hidden; }
.slide-media .media-bg {
    position: absolute; inset: -4%; background-size: cover; background-position: center;
    transform: scale(1); transition: transform 9s linear;
}
.slide.is-active .slide-media .media-bg { transform: scale(1.09); }
.slide-media .media-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.62) 38%, rgba(10,10,10,.28) 65%, rgba(10,10,10,.55) 100%),
        linear-gradient(0deg, rgba(10,10,10,.85) 0%, transparent 30%, transparent 75%, rgba(10,10,10,.4) 100%);
}

.hero-content { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-content-inner { max-width: 620px; padding: 0 24px 60px; margin-left: 3vw; }

.reveal-item { opacity: 0; transform: translateY(26px); }
.slide.is-active .reveal-item { animation: heroReveal .8s cubic-bezier(.2,.7,.3,1) forwards; }
.slide.is-active .reveal-1 { animation-delay: .15s; }
.slide.is-active .reveal-2 { animation-delay: .32s; }
.slide.is-active .reveal-3 { animation-delay: .5s; }
.slide.is-active .reveal-4 { animation-delay: .68s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.slide-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; }
.slide-eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--gold); }
.slide-title { color: #fff; font-size: clamp(32px, 4.6vw, 58px); margin-bottom: 20px; line-height: 1.12; text-shadow: 0 8px 30px rgba(0,0,0,.4); }
.slide-title em { color: var(--gold); font-style: normal; }
.slide-desc { color: rgba(255,255,255,.78); font-size: 16.5px; margin-bottom: 32px; line-height: 1.75; max-width: 500px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-cue {
    position: absolute; z-index: 4; bottom: 118px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.6); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
}
.hero-scroll-cue .chevron { width: 16px; height: 16px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: cueBounce 1.8s ease-in-out infinite; }
@keyframes cueBounce { 0%,100% { transform: rotate(45deg) translate(0,0); opacity:.5; } 50% { transform: rotate(45deg) translate(4px,4px); opacity:1; } }

.hero-progress-dots { position: absolute; z-index: 4; bottom: 96px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-progress-dots button { position: relative; width: 46px; height: 3px; background: rgba(255,255,255,.25); border: 0; overflow: hidden; }
.hero-progress-dots button .fill { position: absolute; inset: 0; width: 0%; background: var(--gold); }
.hero-progress-dots button.is-active .fill { transition: width linear; }

.hero-arrows { position: absolute; z-index: 4; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 26px; pointer-events: none; }
.hero-arrow-btn { pointer-events: all; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 19px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: all .2s; }
.hero-arrow-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

@media (max-width: 900px) {
    .hero-slider { height: auto; min-height: 0; max-height: none; padding: 0; overflow: visible; }
    .slide { position: relative; inset: auto; display: none; opacity: 1 !important; visibility: visible !important; }
    .slide.is-active { display: block; }
    .slide-media { position: relative; height: 260px; }
    .slide-media .media-overlay { background: linear-gradient(180deg, rgba(10,10,10,.25) 40%, rgba(10,10,10,.9) 100%); }
    .hero-content { position: relative; height: auto; background: var(--black); padding: 30px 0 26px; display: block; }
    .hero-content-inner { margin-left: 0; padding: 0 22px; max-width: none; }
    .hero-scroll-cue, .hero-arrows { display: none; }
    .hero-progress-dots { position: relative; left: auto; bottom: auto; transform: none; justify-content: center; margin-top: 6px; padding-bottom: 22px; background: var(--black); }
}

/* ── Stat strip: hero'nun altına sabitlenmiş bant ─────────── */
.stat-strip { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(4,1fr); background: rgba(6,6,6,.72); backdrop-filter: blur(6px); border-top: 1px solid rgba(255,255,255,.1); }
.stat-cell { text-align: center; padding: 22px 16px; border-left: 1px solid rgba(255,255,255,.12); }
.stat-cell:first-child { border-left: none; }
.stat-number { font-family: var(--font-display); font-size: 30px; color: var(--gold); }
.stat-label { font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 4px; }
@media (max-width: 900px) {
    .stat-strip { position: relative; grid-template-columns: repeat(2,1fr); z-index: auto; }
}

/* ── Service cards ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 26px; }
.service-card { background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .card-media { height: 180px; background: var(--black); background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; }
.service-card .card-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,.9) 100%); }
.service-card .card-icon { position: relative; z-index: 1; font-size: 30px; padding: 18px 20px; color: var(--gold); }
.service-card .card-body { padding: 22px 22px 24px; }
.service-card .card-title { font-size: 17px; margin-bottom: 8px; }
.service-card .card-desc { font-size: 14px; color: var(--text-lt); margin-bottom: 14px; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--black); }
.service-card:hover .card-link { color: var(--gold-dark); }

/* ── Marka Ailemiz (4 alt şirket) ──────────────────────── */
.brand-family-section { background: linear-gradient(160deg, var(--black), var(--black3)); padding: 84px 0; }
.brand-family-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.brand-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
    padding: 28px 22px; text-align: center; transition: transform .25s, border-color .25s, background .25s;
}
.brand-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,.4); background: rgba(255,255,255,.05); }
.brand-card-logo {
    width: 120px; height: 120px; margin: 0 auto 18px; border-radius: 18px; overflow: hidden;
    border: 2px solid rgba(201,162,39,.35); background: #000; box-shadow: 0 14px 30px rgba(0,0,0,.4);
    display: flex; align-items: center; justify-content: center; padding: 6px;
}
.brand-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-card-name { color: #fff; font-size: 17px; margin-bottom: 8px; }
.brand-card-tagline { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; min-height: 42px; }
.brand-card-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); }
.brand-card:hover .brand-card-link { color: var(--gold-light); }

/* ── Why-us ────────────────────────────────────────────── */
.whyus-section { background: var(--black); color: #fff; padding: 80px 0; }
.whyus-section .section-title, .whyus-section .section-eyebrow { color: #fff; }
.whyus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1px; background: rgba(255,255,255,.1); margin-top: 20px; }
.whyus-item { background: var(--black2); padding: 24px; display: flex; gap: 12px; align-items: flex-start; }
.whyus-item .mark { color: var(--gold); font-size: 18px; }
.whyus-item .txt { font-size: 14.5px; color: rgba(255,255,255,.85); }

/* ── Founder / kurucu mesajı ───────────────────────────── */
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 6px solid var(--white); box-shadow: var(--shadow); }
.founder-photo::before, .founder-photo::after {
    content: ''; position: absolute; width: 30px; height: 30px; border-color: var(--gold); border-style: solid; z-index: 2;
}
.founder-photo::before { top: 10px; left: 10px; border-width: 3px 0 0 3px; }
.founder-photo::after { bottom: 10px; right: 10px; border-width: 0 3px 3px 0; }
.founder-quote { font-family: var(--font-display); font-size: 21px; text-transform: none; line-height: 1.45; color: var(--black); margin-bottom: 18px; }
.founder-quote::before { content: '“'; color: var(--gold); font-size: 42px; line-height: 0; position: relative; top: 10px; margin-right: 4px; }
.founder-name { font-family: var(--font-display); font-size: 15px; letter-spacing: .03em; color: var(--black); }
.founder-title { font-size: 13px; color: var(--text-lt); }

/* ── Organizasyon şeması ───────────────────────────────── */
.org-chart { display: flex; flex-direction: column; align-items: center; width: 100%; }
.org-row { display: flex; flex-wrap: nowrap; justify-content: center; gap: 20px; margin-bottom: 8px; position: relative; max-width: 100%; overflow-x: auto; padding-bottom: 4px; }
.org-row::-webkit-scrollbar { height: 5px; }
.org-row::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 4px; }
.org-box { flex-shrink: 0; }
.org-box {
    background: var(--white); border: 1px solid var(--gray); border-top: 3px solid var(--gold);
    padding: 18px 24px; text-align: center; min-width: 172px; border-radius: 8px;
    box-shadow: 0 10px 24px -14px rgba(0,0,0,.18); transition: transform .2s, box-shadow .2s; position: relative;
}
.org-box:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(0,0,0,.25); }
.org-box.top { background: var(--black); color: #fff; border-top-color: var(--gold); min-width: 220px; }
.org-box .org-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--off-white); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 17px; margin: 0 auto 10px; }
.org-box.top .org-icon { background: rgba(201,162,39,.15); color: var(--gold); }
.org-box .role { font-family: var(--font-display); font-size: 13.5px; letter-spacing: .02em; }
.org-box .who { font-size: 12px; color: var(--text-lt); margin-top: 3px; }
.org-box.top .who { color: rgba(255,255,255,.6); }
.org-link { width: 1px; height: 24px; background: var(--gray); }

@media (min-width: 860px) {
    .org-row-departments { padding-top: 30px; margin-top: 6px; }
    .org-row-departments::before { content: ''; position: absolute; top: 0; left: 6%; right: 6%; height: 1px; background: var(--gray); }
    .org-row-departments .org-box::before { content: ''; position: absolute; top: -30px; left: 50%; width: 1px; height: 30px; background: var(--gray); }
}

/* ── Referanslar / sadakat ─────────────────────────────── */
.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; margin-top: 10px; }
.ref-badge { background: var(--white); border: 1px solid var(--gray); border-radius: 8px; height: 92px; display: flex; align-items: center; justify-content: center; padding: 14px; text-align: center; transition: border-color .2s, transform .2s; }
.ref-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.ref-badge img { max-height: 46px; max-width: 84%; object-fit: contain; filter: grayscale(1); opacity: .75; transition: all .2s; }
.ref-badge:hover img { filter: grayscale(0); opacity: 1; }
.ref-badge-fallback { display: none; align-items: center; justify-content: center; width: 100%; height: 100%; font-family: var(--font-display); font-size: 12.5px; letter-spacing: .06em; color: var(--mid); border: 1px dashed var(--gray); border-radius: 6px; }
.loyalty-row { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; margin-top: 40px; }
.loyalty-item { text-align: center; }
.loyalty-num { font-family: var(--font-display); font-size: 38px; color: var(--gold-dark); }
.loyalty-lbl { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-lt); }

/* ── Process ───────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 30px; }
.process-step { text-align: center; }
.process-num { font-family: var(--font-display); font-size: 40px; color: var(--gray); margin-bottom: 8px; }
.process-title { font-size: 16px; margin-bottom: 8px; }
.process-desc { font-size: 14px; color: var(--text-lt); }

/* ── CTA band ──────────────────────────────────────────── */
.cta-section { background: linear-gradient(120deg, var(--black), var(--black3)); padding: 60px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: 6px; font-size: 24px; }
.cta-inner p { color: rgba(255,255,255,.65); margin: 0; }

/* ── Sayfa üst banner (iç sayfalar) ────────────────────── */
.page-hero {
    position: relative; padding: 74px 0 50px; overflow: hidden;
    background: var(--black) url('/uploads/content/page-header-bg.jpg') center/cover no-repeat;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.8) 55%, rgba(10,10,10,.55) 100%);
}
.page-hero-title, .page-hero-breadcrumb { position: relative; z-index: 1; }
.page-hero-title { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: 8px; }
.page-hero-breadcrumb { color: rgba(255,255,255,.5); font-size: 13px; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { margin: 0 6px; }

/* ── Hizmet detay ──────────────────────────────────────── */
.mini-gallery { position: relative; height: 320px; border-radius: var(--radius); overflow: hidden; background: var(--black2); margin-bottom: 26px; }
.mini-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease; }
.mini-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.mini-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.mini-slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.7) 100%); }
.mini-slide-caption { position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff; font-size: 13.5px; font-family: var(--font-display); letter-spacing: .02em; }
.mini-gallery-arrows { position: absolute; z-index: 3; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 14px; }
.mini-arrow { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.mini-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.mini-gallery-dots { position: absolute; z-index: 3; bottom: 16px; right: 20px; display: flex; gap: 7px; }
.mini-gallery-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: 0; }
.mini-gallery-dots button.is-active { background: var(--gold); }
@media (max-width: 640px) { .mini-gallery { height: 220px; } }
.service-detail-hero { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: center; margin-bottom: 26px; }
.service-detail-icon { width: 90px; height: 90px; background: var(--black); color: var(--gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; flex-shrink: 0; }
.service-detail-icon img { width: 100%; height: 100%;   }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.service-tags span { font-size: 12.5px; padding: 6px 13px; border: 1px solid var(--gray); border-radius: 20px; color: var(--text-lt); }
.service-tagline {
    font-family: var(--font-display); font-size: 19px; color: var(--black); text-transform: none;
    background: var(--off-white); border-left: 4px solid var(--gold); padding: 18px 24px; margin: 24px 0; line-height: 1.4;
}
.feature-icons-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 18px; margin: 30px 0; text-align: center; }
.feature-icon-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.feature-icon-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; overflow: hidden; }
.feature-icon-badge img { width: 100%; height: 100%; object-fit: cover; }
.feature-icon-item span { font-size: 12.5px; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.service-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 22px 0; }
.service-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-lt); }
.service-bullets li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.service-long-desc { font-size: 15.5px; line-height: 1.85; color: var(--text-lt); }
.service-long-desc h2, .service-long-desc h3 { text-transform: none; margin-top: 1.2em; }
.service-long-desc a { color: var(--gold-dark); text-decoration: underline; }
.service-long-desc img { max-width: 100%; height: auto; border-radius: 10px; margin: 1.2em 0; display: block; }
.service-long-desc img.qimg-left { float: left; margin: .3em 24px 16px 0; }
.service-long-desc img.qimg-right { float: right; margin: .3em 0 16px 24px; }
.service-long-desc img.qimg-center { display: block; float: none; margin: 1.2em auto; }
.service-long-desc::after { content: ''; display: table; clear: both; }
@media (max-width: 640px) {
  .service-long-desc img.qimg-left, .service-long-desc img.qimg-right { float: none; width: 100% !important; margin: 1em 0; }
}

.rich-content p { margin: 0 0 1em; }
.rich-content p:last-child { margin-bottom: 0; }
.rich-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 14px 0; display: block; }
.rich-content h2, .rich-content h3 { text-transform: none; color: inherit; margin: 1em 0 .4em; }
.rich-content blockquote { border-left: 3px solid var(--gold); padding-left: 16px; margin: 1em 0; opacity: .9; }
.rich-content a { color: var(--gold-dark); text-decoration: underline; }
.rich-content ul, .rich-content ol { padding-left: 22px; margin: 0 0 1em; }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info-title { font-size: 24px; margin-bottom: 10px; }
.contact-info-desc { color: var(--text-lt); font-size: 15px; margin-bottom: 26px; }
.contact-map-embed { margin-top: 24px; border-radius: 14px; overflow: hidden; border: 1px solid var(--gray); }
.contact-map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.contact-detail {
    display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
    background: var(--white); border: 1px solid var(--gray); border-radius: 12px;
    padding: 16px 18px; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-detail:hover { border-color: rgba(201,162,39,.4); transform: translateY(-2px); box-shadow: 0 12px 28px -16px rgba(0,0,0,.25); }
.contact-detail-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    background: var(--black); color: var(--gold); font-size: 19px;
    display: flex; align-items: center; justify-content: center;
}
.contact-detail strong { display: block; font-family: var(--font-display); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 3px; }
.contact-detail > div:last-child { font-size: 14.5px; color: var(--text); line-height: 1.5; }
.contact-detail a { font-size: 14.5px; color: var(--text); }
.contact-detail a:hover { color: var(--gold-dark); }
.contact-form { background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-lt); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 11px 14px; border: 1px solid var(--gray); border-radius: 6px; font-family: inherit; font-size: 14.5px; background: #fff; color: var(--text);
}
.form-group textarea { resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.alert-success, .alert-error { padding: 13px 16px; border-radius: 6px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #e9f7ec; color: #1e6b32; border: 1px solid #bfe3c8; }
.alert-error { background: #fbe9e9; color: #7a2323; border: 1px solid #f3c2c2; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo-img { height: 100px; }
.footer-title { color: var(--gold-light); font-family: var(--font-display); font-size: 13px; letter-spacing: .06em; margin-bottom: 16px; text-transform: uppercase; }
.footer-links li { margin-bottom: 10px; font-size: 13.5px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--gold); }
.footer-links a:hover { color: var(--gold); }
.footer-info-item { display: inline-flex; align-items: center; gap: 8px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12.5px; }

.footer-brands-row { display: flex; align-items: center; justify-content: flex-start; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.footer-brand-logo { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(201,162,39,.3); background: #000; opacity: .85; transition: opacity .2s, transform .2s; }
.footer-brand-logo:hover { opacity: 1; transform: translateY(-3px); }
.footer-brand-logo img { width: 100%; height: 100%;   }

/* ── WhatsApp FAB & mobil arama çubuğu ────────────────── */
.fab-whatsapp {
    position: fixed; right: 22px; bottom: 22px; z-index: 500;
    background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.fab-whatsapp-label { display: none; }
.mobile-call-bar { display: none; }
@media (max-width: 760px) {
    .mobile-call-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; }
    .mcb-btn { flex: 1; display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: #fff; }
    .mcb-call { background: var(--black); }
    .mcb-wp { background: #25D366; }
    .mcb-label { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; opacity: .8; }
    .mcb-num { font-size: 13px; font-weight: 600; }
    .fab-whatsapp { display: none; }
}

@media (max-width: 900px) {
    .founder-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .service-bullets { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: repeat(2,1fr); }
    .mv-grid { grid-template-columns: 1fr !important; }
    .degerler-grid { grid-template-columns: 1fr !important; }
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.degerler-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 640px) {
    .degerler-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: #f1f1ee; font-family: var(--font-body); }
.admin-sidebar {
    position: fixed; left: 0; top: 0; bottom: 0; width: 250px;
    background: var(--black); color: rgba(255,255,255,.75); overflow-y: auto; z-index: 50;
}
.sb-logo { display: flex; align-items: center; gap: 12px; padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sb-logo-mark { width: 40px; height: 40px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--black); font-family: var(--font-display); }
.sb-logo-text { font-size: 14px; font-weight: 700; color: #fff; font-family: var(--font-display); letter-spacing: .02em; }
.sb-logo-sub { font-size: 11px; color: rgba(255,255,255,.4); }
.admin-sidebar nav { padding: 14px 0; }
.sb-section { padding: 16px 20px 6px; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.admin-sidebar nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 13.5px; border-left: 3px solid transparent; }
.admin-sidebar nav a:hover { background: rgba(255,255,255,.05); }
.admin-sidebar nav a.active { background: rgba(201,162,39,.14); border-left-color: var(--gold); color: #fff; }
.sb-icon { width: 18px; text-align: center; }

.admin-main { margin-left: 250px; min-height: 100vh; }
.admin-topbar { background: #fff; border-bottom: 1px solid var(--gray); padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; }
.admin-topbar h1 { font-size: 18px; margin: 0; text-transform: none; }
.admin-user { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-lt); }
.logout-btn { background: #f1f1ee; padding: 8px 16px; border-radius: 6px; font-size: 12.5px; color: var(--text); }
.logout-btn:hover { background: var(--black); color: #fff; }
.admin-content { padding: 26px 30px 60px; }

.admin-card { background: #fff; border: 1px solid var(--gray); border-radius: 10px; padding: 24px; margin-bottom: 22px; overflow-x: auto; }
.admin-card h2 { font-size: 15px; margin-bottom: 16px; text-transform: none; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--gray); font-size: 13.5px; vertical-align: middle; }
.admin-table th { color: var(--mid); text-transform: uppercase; font-size: 11px; letter-spacing: .04em; font-weight: 600; }
.admin-table tr:hover td { background: #fafaf8; }

.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .form-group label { font-weight: 700; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-green { background: #e9f7ec; color: #1e6b32; }
.badge-red { background: #f1f1f1; color: var(--mid); }
.badge-gray { background: #f1f1f1; color: var(--mid); }
.badge-blue { background: #e8f1fd; color: #1d5fa8; }

.alert { padding: 12px 16px; border-radius: 6px; font-size: 13.5px; margin-bottom: 18px; }
.alert-ok { background: #e9f7ec; color: #1e6b32; border: 1px solid #bfe3c8; }
.alert-err { background: #fbe9e9; color: #7a2323; border: 1px solid #f3c2c2; }

.dash-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 24px; }
.dash-card { background: #fff; border: 1px solid var(--gray); border-radius: 10px; padding: 20px; display: flex; align-items: center; gap: 14px; }
.dash-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: #f1f1ee; }
.dash-icon.gold { background: rgba(201,162,39,.15); }
.dash-icon.navy { background: #eef1f5; }
.dash-icon.blue { background: #e8f1fd; }
.dash-icon.green { background: #e9f7ec; }
.dash-num { font-family: var(--font-display); font-size: 24px; color: var(--black); }
.dash-lbl { font-size: 12px; color: var(--mid); }

.btn-danger { background: #fff; border: 1px solid #d33; color: #d33; padding: 6px 12px; border-radius: 6px; font-size: 12.5px; }
.btn-danger:hover { background: #d33; color: #fff; }

@media (max-width: 900px) {
    .admin-sidebar { display: none; }
    .admin-sidebar.is-open { display: block; position: fixed; z-index: 300; width: 250px; box-shadow: 0 0 40px rgba(0,0,0,.4); }
    .admin-main { margin-left: 0; }
    .admin-form .form-row, .dash-grid { grid-template-columns: 1fr 1fr; }
    .admin-mobile-toggle { display: flex; }
}
.admin-mobile-toggle {
    display: none; position: fixed; top: 14px; left: 14px; z-index: 310;
    width: 42px; height: 42px; border-radius: 8px; background: var(--black); color: var(--gold);
    align-items: center; justify-content: center; font-size: 20px; border: none;
}

/* ============================================================
   ANA SAYFA GİRİŞ (INTRO) EKRANI — sadece index.php'de kullanılır
   Oturum başına bir kez gösterilir (sessionStorage)
   ============================================================ */
.intro-splash {
    position: fixed; inset: 0; z-index: 99999; background: var(--black);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    transition: opacity .7s cubic-bezier(.4,0,.2,1), visibility .7s;
}
.intro-splash.is-hiding { opacity: 0; pointer-events: none; }
.intro-splash.is-hidden { display: none; }

.intro-corner { position: absolute; width: 50px; height: 50px; pointer-events: none; z-index: 2; opacity: 0; animation: introCornerIn .8s ease forwards; }
.intro-corner.ic-tl { top: 30px; left: 30px; border-top: 1.5px solid rgba(201,162,39,.55); border-left: 1.5px solid rgba(201,162,39,.55); animation-delay: .1s; }
.intro-corner.ic-tr { top: 30px; right: 30px; border-top: 1.5px solid rgba(201,162,39,.55); border-right: 1.5px solid rgba(201,162,39,.55); animation-delay: .2s; }
.intro-corner.ic-bl { bottom: 30px; left: 30px; border-bottom: 1.5px solid rgba(201,162,39,.55); border-left: 1.5px solid rgba(201,162,39,.55); animation-delay: .3s; }
.intro-corner.ic-br { bottom: 30px; right: 30px; border-bottom: 1.5px solid rgba(201,162,39,.55); border-right: 1.5px solid rgba(201,162,39,.55); animation-delay: .4s; }
@keyframes introCornerIn { to { opacity: 1; } }

.intro-stage { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px; }

.intro-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; opacity: 0; transform: translateY(10px); animation: introUp .7s ease forwards; animation-delay: .3s; }
.intro-eyebrow .ie-line { width: 34px; height: 1px; background: rgba(201,162,39,.5); }
.intro-eyebrow .ie-text { font-size: 12px; letter-spacing: .22em; color: rgba(255,255,255,.55); text-transform: uppercase; }

.intro-logo-wrap { width: 140px; height: 140px; opacity: 0; transform: scale(.82); animation: introLogoIn .9s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: .5s; margin-bottom: 26px; }
.intro-logo-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 50px rgba(201,162,39,.25)); }
@keyframes introLogoIn { to { opacity: 1; transform: scale(1); } }

.intro-tagline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 42px; max-width: 520px; }
.intro-tagline .it-word { font-family: var(--font-display); font-size: 17px; letter-spacing: .04em; color: rgba(255,255,255,.85); text-transform: uppercase; opacity: 0; transform: translateY(10px); animation: introUp .6s ease forwards; animation-delay: calc(.9s + var(--d) * .12s); }
.intro-tagline .it-word.it-gold { color: var(--gold); }
.intro-tagline .it-sep { color: rgba(201,162,39,.4); opacity: 0; animation: introUp .6s ease forwards; animation-delay: calc(.9s + var(--d) * .12s); }

.intro-brands-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 34px; }
.intro-brands-row img {
    width: 48px; height: 48px; border-radius: 10px; object-fit: cover;
    border: 1px solid rgba(201,162,39,.35); background: #000;
    opacity: 0; transform: translateY(10px); animation: introUp .6s ease forwards; animation-delay: calc(.9s + var(--d) * .12s);
}
@keyframes introUp { to { opacity: 1; transform: translateY(0); } }

.intro-progress { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: introUp .6s ease forwards; animation-delay: 1.5s; }
.intro-progress .ip-track { width: 220px; height: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.intro-progress .ip-bar { height: 100%; width: 0%; background: var(--gold); animation: introBar 2.1s ease forwards; animation-delay: 1.5s; }
@keyframes introBar { to { width: 100%; } }
.intro-progress .ip-label { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }

.intro-skip {
    position: absolute; z-index: 4; bottom: 34px; right: 34px;
    background: none; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7);
    padding: 9px 18px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; border-radius: 30px;
    opacity: 0; animation: introUp .6s ease forwards; animation-delay: 1.7s; transition: all .2s;
}
.intro-skip:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 560px) {
    .intro-logo-wrap { width: 100px; height: 100px; }
    .intro-tagline .it-word { font-size: 13px; }
    .intro-corner { width: 30px; height: 30px; }
    .intro-brands-row { gap: 10px; margin-bottom: 24px; }
    .intro-brands-row img { width: 38px; height: 38px; }
}

/* ============================================================
   GENEL KAYDIRMA (SCROLL) ANİMASYONLARI — site genelinde
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .fade-up-init {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
    }
    .fade-up-init.is-visible { opacity: 1; transform: none; }
    .fade-up-init.fade-delay-1 { transition-delay: .08s; }
    .fade-up-init.fade-delay-2 { transition-delay: .16s; }
    .fade-up-init.fade-delay-3 { transition-delay: .24s; }
}
