/* ============================================
   Vistra Global — Landing Page Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --brand:       #FFB600;
    --brand-dark:  #E6A400;
    --brand-light: #FFF8E1;
    --navy:        #0F172A;
    --navy-2:      #1E293B;
    --navy-3:      #334155;
    --text:        #0F172A;
    --text-2:      #475569;
    --text-3:      #94A3B8;
    --bg:          #F8FAFC;
    --bg-2:        #F1F5F9;
    --white:       #FFFFFF;
    --border:      #E2E8F0;
    --green:       #16A34A;
    --blue:        #2563EB;
    --purple:      #7C3AED;
    --orange:      #EA580C;
    --r:           12px;
    --r-lg:        20px;
    --sh:          0 1px 3px rgba(15,23,42,.07), 0 4px 16px rgba(15,23,42,.05);
    --sh-md:       0 4px 16px rgba(15,23,42,.08), 0 16px 48px rgba(15,23,42,.06);
    --sh-brand:    0 4px 20px rgba(255,182,0,.35);
    --t:           220ms ease;
    /* Genel metin renkleri (açık arka plan uyumlu) */
    --text-primary:   #0F172A;
    --text-secondary: #475569;
    --text-muted:     #94A3B8;
    --surface:        #F8FAFC;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    }
/* ── Custom Cursor ── */
#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
}
#cursor-dot {
    width: 8px; height: 8px;
    background: var(--brand);
    box-shadow: 0 0 10px var(--brand), 0 0 20px rgba(255,154,0,.5);
    transition: transform .1s, opacity .3s;
}
#cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid rgba(255,154,0,.55);
    background: transparent;
    transition: width .25s, height .25s, border-color .25s, opacity .3s;
}
body.cursor-hover #cursor-dot {
    transform: translate(-50%, -50%) scale(2.2);
    background: var(--brand);
}
body.cursor-hover #cursor-ring {
    width: 56px; height: 56px;
    border-color: var(--brand);
    box-shadow: 0 0 18px rgba(255,154,0,.35);
}
body.cursor-click #cursor-dot {
    transform: translate(-50%, -50%) scale(.6);
}
@media (hover: none) and (pointer: coarse) {
    #cursor-dot, #cursor-ring { display: none; }
    body { cursor: auto; }
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--r);
    font-size: .93rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--t);
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: var(--navy);
    box-shadow: var(--sh-brand);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,182,0,.45); }
.btn-ghost {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    border: 1.5px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 9px 18px; font-size: .84rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ============================================
   SECTION SHARED
   ============================================ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-light);
    color: #92610A;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-tag--light {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -.4px;
    margin-bottom: 16px;
}
.section-title span { color: var(--brand-dark); }
.section-desc { font-size: 1.05rem; color: var(--text-2); max-width: 540px; margin: 0 auto; }

/* Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease, transform 500ms ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.navbar.scrolled {
    background: rgba(15,23,42,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: visible;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}
.nav-links a {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    transition: color var(--t);
    position: relative;
    white-space: nowrap;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--t);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.65);
    font-size: .84rem;
    font-weight: 500;
    transition: color var(--t);
    white-space: nowrap;
}
.nav-phone:hover { color: var(--brand); }
.btn-nav {
    background: var(--brand);
    color: var(--navy);
    padding: 9px 22px;
    border-radius: 9px;
    font-size: .87rem;
    font-weight: 700;
    transition: all var(--t);
    box-shadow: 0 2px 10px rgba(255,182,0,.3);
    white-space: nowrap;
}
.btn-nav:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,.8);
    border-radius: 2px;
    transition: all var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.hero-blob--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,182,0,.5) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.hero-blob--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,.4) 0%, transparent 70%);
    bottom: 0; left: -100px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
/* Full-screen video background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4,10,22,0.55) 0%,
        rgba(4,10,22,0.45) 60%,
        rgba(4,10,22,0.75) 100%
    );
    z-index: 1;
}
/* Centered hero content over video */
.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 140px 24px 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-center .hero-desc { max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { justify-content: center; }
.hero-center .hero-langs { justify-content: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.45);
    color: #22c55e;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .4px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-highlight {
    background: linear-gradient(135deg, var(--brand) 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,.65);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-langs { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lang-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}
.lang-tag img { width: 18px; height: 12px; border-radius: 2px; object-fit: cover; }
.lang-tag--more { color: var(--brand); border-color: rgba(255,182,0,.2); background: rgba(255,182,0,.07); }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 440px;
}
.hero-card { border-radius: var(--r-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.hero-card--main {
    width: 100%;
    max-width: 340px;
    padding: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.hcard-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}
.hcard-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.hcard-dot--green  { background: #22C55E; }
.hcard-dot--yellow { background: #EAB308; }
.hcard-dot--red    { background: #EF4444; }
.hcard-header span { font-size: .78rem; color: rgba(255,255,255,.5); margin-left: auto; }
.hcard-body { display: flex; gap: 0; }
.hcard-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.hcard-stat > span:first-child { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.hcard-stat > span:nth-child(2) { font-size: 1rem; font-weight: 700; color: var(--brand); }
.hcard-label { font-size: .7rem; color: rgba(255,255,255,.80); }
.hcard-divider { width: 1px; background: rgba(255,255,255,.08); margin: 0 8px; }
.hero-card--float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: .8rem;
    animation: float 4s ease-in-out infinite;
}
.hero-card--float img { width: 28px; height: 18px; border-radius: 3px; object-fit: cover; flex-shrink: 0; }
.hero-card--float strong { display: block; color: var(--white); font-weight: 600; }
.hero-card--float span { color: rgba(255,255,255,.5); font-size: .72rem; }
.hero-card--tr { top: 5%; right: -5%; animation-delay: 0s; }
.hero-card--de { bottom: 12%; right: -8%; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Stats Bar */
.hero-stats {
    background: rgba(255,255,255,.04);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 32px 0;
    position: relative;
    z-index: 1;
}
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-suf { font-size: 1.4rem; font-weight: 700; color: var(--brand); line-height: 1; }
.stat-item > span:first-child, .stat-item > span:nth-child(2) { display: inline; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.80); margin-top: 6px; }
.stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.08); margin: 0 20px; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg); padding: 100px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all var(--t);
    display: flex;
    flex-direction: column;
}
.service-card p { flex: 1; }
.service-card .sc-list { margin-top: auto; }
.service-card:hover {
    border-color: var(--brand);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}
.service-card--featured {
    background: var(--white);
    border-color: var(--border);
    color: inherit;
}
.service-card--featured h3 { color: var(--navy); }
.service-card--featured p  { color: var(--text-2); }
.service-card--featured .sc-list li { color: var(--text-2); }
.service-card--featured .sc-list li::before { color: var(--brand); }
.service-card--cta {
    background: linear-gradient(135deg, var(--brand) 0%, #FF8C00 100%);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-card--cta h3 { color: var(--navy); margin-bottom: 10px; }
.service-card--cta p  { color: rgba(15,23,42,.7); margin-bottom: 20px; flex: 1; }
.service-card--cta .btn-primary { background: var(--navy); color: var(--white); box-shadow: none; align-self: flex-start; }
.service-card--cta .btn-primary:hover { background: var(--navy-2); }
.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.sc-icon svg { width: 22px; height: 22px; }
.sc-icon--blue   { background: rgba(37,99,235,.1);  color: var(--blue); }
.sc-icon--brand  { background: rgba(255,182,0,.12); color: var(--brand-dark); }
.sc-icon--green  { background: rgba(22,163,74,.1);  color: var(--green); }
.sc-icon--purple { background: rgba(124,58,237,.1); color: var(--purple); }
.sc-icon--orange { background: rgba(234,88,12,.1);  color: var(--orange); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .88rem; color: var(--text-2); margin-bottom: 16px; line-height: 1.65; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sc-list li { font-size: .82rem; color: var(--text-2); display: flex; align-items: center; gap: 7px; }
.sc-list li::before { content: '→'; color: var(--brand-dark); font-weight: 700; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); padding: 80px 0 100px; }

/* ── Ortalı başlık alanı ── */
.about .section-head { margin-bottom: 40px; }
.about-lead {
    max-width: 620px;
    margin: 0 auto 24px;
    color: var(--text-2);
    line-height: 1.75;
    text-align: center;
    font-size: .95rem;
}

/* ── Dünya Haritası Paneli ── */
.about-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(7,19,34,0.28);
    position: relative;
    background: #071322;
}
/* Karartma + mavi ton overlay */
.about-map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 28, 0.52);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}
.world-map-svg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* ── Animasyonlu yay (Almanya–Türkiye) ── */
.map-arc-flow {
    stroke-dasharray: 12 8;
    stroke-dashoffset: 200;
    animation: arcFlow 2.4s linear infinite;
}
@keyframes arcFlow {
    to { stroke-dashoffset: 0; }
}

/* ── Pin pulse animasyonları ── */
.map-pulse {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: mapPulse 2.6s ease-out infinite;
}
.map-pulse--de1 { animation-delay: 0s; }
.map-pulse--de2 { animation-delay: 1.3s; }
.map-pulse--tr1 { animation-delay: 0.5s; }
.map-pulse--tr2 { animation-delay: 1.8s; }
@keyframes mapPulse {
    0%   { transform: scale(1);   opacity: 0.85; }
    100% { transform: scale(3);   opacity: 0; }
}

/* ── İstatistik kartlar (haritanın altı) ── */
.map-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #0a1a2e;
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 2;
}
.map-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.map-stat-card:last-child { border-right: none; }

/* Gauge SVG rengi (koyu zemin üstünde) */
.gauge-svg { flex-shrink: 0; }
.gauge-arc { transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.gauge-arc.animated { stroke-dashoffset: 4.02; }
.gauge-num  { font-size: 13px; font-weight: 800; fill: #fff; }
.gauge-sub-txt { font-size: 7.5px; font-weight: 600; fill: rgba(255,255,255,0.85); }
.gauge-info { display: flex; flex-direction: column; gap: 3px; }
.gauge-label { font-size: .75rem; font-weight: 700; color: #fff; white-space: nowrap; }
.gauge-sub-label { font-size: .68rem; color: rgba(255,255,255,0.80); white-space: nowrap; }

/* Stat kartlardaki ikonlar */
.map-stat-card .exp-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,154,0,0.15);
    border: 1px solid rgba(255,154,0,0.30);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #FF9A00;
}
.map-stat-card .exp-body { display: flex; flex-direction: column; gap: 2px; }
.map-stat-card .exp-row  { display: flex; align-items: baseline; gap: 3px; }
.map-stat-card .exp-num  { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
.map-stat-card .exp-unit { font-size: .75rem; font-weight: 700; color: #FF9A00; }
.map-stat-card .exp-label { font-size: .68rem; color: rgba(255,255,255,0.80); font-weight: 500; }
.map-stat-card .exp-dots { display: flex; gap: 3px; margin-top: 4px; flex-wrap: wrap; max-width: 96px; }
.exp-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.exp-dot--fill { background: #FF9A00; }
.exp-dot--fill:nth-child(n) { animation: dotPop .4s ease-out both; }
.exp-dot--fill:nth-child(1)  { animation-delay: .1s; }
.exp-dot--fill:nth-child(2)  { animation-delay: .2s; }
.exp-dot--fill:nth-child(3)  { animation-delay: .3s; }
.exp-dot--fill:nth-child(4)  { animation-delay: .4s; }
.exp-dot--fill:nth-child(5)  { animation-delay: .5s; }
.exp-dot--fill:nth-child(6)  { animation-delay: .6s; }
.exp-dot--fill:nth-child(7)  { animation-delay: .7s; }
.exp-dot--fill:nth-child(8)  { animation-delay: .8s; }
.exp-dot--fill:nth-child(9)  { animation-delay: .9s; }
.exp-dot--fill:nth-child(10) { animation-delay: 1.0s; }
.exp-dot--fill:nth-child(11) { animation-delay: 1.1s; }
.exp-dot--fill:nth-child(12) { animation-delay: 1.2s; }
@keyframes dotPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.af-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .86rem;
    font-weight: 500;
    color: var(--navy);
}
.af-icon {
    width: 22px; height: 22px;
    background: var(--brand-light);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--brand-dark);
}
.af-icon svg { width: 12px; height: 12px; }

/* ============================================
   WHY
   ============================================ */
.why { background: var(--bg); padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--t);
}
.why-card:hover { border-color: var(--brand); box-shadow: var(--sh-md); transform: translateY(-4px); }
.why-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-light);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--brand-dark);
    transition: all var(--t);
}
.why-card:hover .why-icon { background: var(--brand); color: var(--navy); }
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: .84rem; color: var(--text-2); line-height: 1.65; }

/* ============================================
   CAREER
   ============================================ */
.career {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.career::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,182,0,.12) 0%, transparent 70%);
    top: -200px; left: -100px;
    pointer-events: none;
}
.career-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.career-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}
.career-content > p { color: rgba(255,255,255,.6); margin-bottom: 28px; line-height: 1.7; }
.career-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,.75);
}
.perk svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.career-positions { display: flex; flex-direction: column; gap: 12px; }
.position-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--t);
    cursor: pointer;
}
.position-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,182,0,.3);
    transform: translateX(4px);
}
.pos-flag { display: flex; gap: 5px; }
.pos-flag img { width: 28px; height: 18px; border-radius: 3px; object-fit: cover; }
.pos-info { flex: 1; }
.pos-info h4 { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.pos-info span { font-size: .76rem; color: rgba(255,255,255,.80); }
.pos-badge { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.pos-badge--open { background: rgba(22,163,74,.2); color: #4ADE80; }



/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--white); padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
    width: 44px; height: 44px;
    background: var(--brand-light);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--brand-dark);
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-item > div { display: flex; flex-direction: column; gap: 2px; }
.ci-item strong { font-size: .84rem; font-weight: 600; color: var(--navy); }
.ci-item a, .ci-item span { font-size: .9rem; color: var(--text-2); transition: color var(--t); }
.ci-item a:hover { color: var(--brand-dark); }
.contact-form {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.cf-group input, .cf-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: inherit;
    font-size: .88rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--t);
    outline: none;
    resize: vertical;
}
.cf-group input:focus, .cf-group textarea:focus { border-color: var(--brand); }

/* ============================================
   PAGE HERO (Alt sayfalar için başlık bölümü)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(10,20,50,0.95) 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .page-hero { padding: 100px 0 44px; }
    .page-hero .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .page-hero .section-desc { font-size: .93rem; padding: 0 12px; }
}
@media (max-width: 480px) {
    .page-hero { padding: 80px 0 36px; }
    .page-hero .section-tag { font-size: .72rem; }
    .page-hero .section-title { font-size: 1.55rem; letter-spacing: -.3px; }
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(0,98,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero .section-title { color: var(--white); margin-bottom: 16px; }
.page-hero .section-desc { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; }

/* Aktif nav linki */
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 72px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.65; max-width: 240px; margin-bottom: 16px; }
.footer-langs { display: flex; gap: 8px; }
.footer-social { margin-top: 20px; }
.footer-social-label { font-size: .78rem; color: rgba(255,255,255,.70); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .4px; }
.footer-social-icons { display: flex; gap: 10px; }
.footer-social-btn {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.55);
    transition: background var(--t), color var(--t), transform var(--t);
}
.footer-social-btn svg { width: 18px; height: 18px; }
.footer-social-btn:hover { background: var(--brand); color: var(--navy); transform: translateY(-2px); }
.footer-langs img { width: 32px; height: 21px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .4px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.80); transition: color var(--t); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

/* ============================================
   CALL CENTER SCENE
   ============================================ */
.cc-scene {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Office container */
.cc-office {
    border-radius: 20px;
    background: #060d1a;
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
    flex: 1;
    position: relative;
    min-height: 420px;
}

/* Background video */
.cc-office-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay so notification cards stay readable */
.cc-office-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 10, 22, 0.55) 0%,
        rgba(4, 10, 22, 0.30) 50%,
        rgba(4, 10, 22, 0.55) 100%
    );
    z-index: 1;
}

/* Notification cards above overlay */
.cc-notif, .cc-live-stats, .hero-card--float {
    z-index: 2;
}

.cc-office-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Agent head pulse — defined once, overridden below with new duration */
@keyframes agentPulse {
    0%, 100% { fill: rgba(255,182,0,.22); opacity: .85; }
    50%       { fill: rgba(255,182,0,.40); opacity: 1; }
}

/* Screen glow breathe */
.cc-glow--1 { animation: glowBreath 3s ease-in-out infinite; }
.cc-glow--2 { animation: glowBreath 3s ease-in-out infinite 1s; }
.cc-glow--3 { animation: glowBreath 3s ease-in-out infinite 2s; }
@keyframes glowBreath {
    0%, 100% { opacity: .6; }
    50%       { opacity: 1; }
}

/* Status dots blink */
.cc-status--active  { animation: statusBlink 1.8s ease-in-out infinite; }
.cc-status--calling { animation: statusBlink 0.9s ease-in-out infinite; }
.cc-status--busy    { animation: statusBlink 2.5s ease-in-out infinite 0.5s; }
@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

/* Screen content shimmer */
.cc-screen-content--1 { animation: contentFade 4s ease-in-out infinite; }
.cc-screen-content--2 { animation: contentFade 4s ease-in-out infinite 1.3s; }
.cc-screen-content--3 { animation: contentFade 4s ease-in-out infinite 2.6s; }

/* Wall dashboard live dot */
.cc-wall-dot { animation: statusBlink 1.2s ease-in-out infinite; }

/* Ceiling light pulse */
.cc-ceil-light { animation: ceilPulse 4s ease-in-out infinite; }
@keyframes ceilPulse {
    0%, 100% { opacity: .7; }
    50%       { opacity: 1; }
}

/* Chart bar animate */
.cc-bar--1 { animation: barGrow 3s ease-in-out infinite 0s; }
.cc-bar--2 { animation: barGrow 3s ease-in-out infinite .3s; }
.cc-bar--3 { animation: barGrow 3s ease-in-out infinite .6s; }
.cc-bar--4 { animation: barGrow 3s ease-in-out infinite .9s; }
.cc-bar--5 { animation: barGrow 3s ease-in-out infinite 1.2s; }
.cc-bar--6 { animation: barGrow 3s ease-in-out infinite 1.5s; }
.cc-bar--7 { animation: barGrow 3s ease-in-out infinite 1.8s; }
@keyframes barGrow {
    0%, 100% { opacity: .55; }
    50%       { opacity: 1; }
}

/* Line chart shimmer */
.cc-chart-line { animation: lineShimmer 4s ease-in-out infinite; }
@keyframes lineShimmer {
    0%, 100% { stroke-opacity: .55; }
    50%       { stroke-opacity: 1; }
}

/* Call pulse rings (expand & fade) */
.cc-pulse-ring--1 {
    animation: pulseRing 2.8s ease-out infinite;
}
.cc-pulse-ring--2 {
    animation: pulseRing 2.8s ease-out infinite 1.4s;
}
@keyframes pulseRing {
    0%   { r: 30; opacity: .5; }
    100% { r: 56; opacity: 0; }
}

/* Agent head active pulse (updated for larger size) */
.cc-agent-head--active {
    animation: agentPulse 2s ease-in-out infinite;
}
@keyframes contentFade {
    0%, 100% { opacity: .8; }
    50%       { opacity: 1; }
}

/* Notification cards */
.cc-notif {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,23,42,.92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    font-size: .78rem;
    z-index: 10;
    animation: notifFloat 5s ease-in-out infinite;
}
.cc-notif--1 { top: 12px;    right: 12px; animation-delay: 0s; }
.cc-notif--2 { top: 44%;    left: 12px;  animation-delay: 1.7s; }
.cc-notif--3 { bottom: 56px; right: 12px; animation-delay: 3.2s; padding: 10px 12px; }
@keyframes notifFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.cc-notif-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.cc-notif-dot--green { background: #22C55E; box-shadow: 0 0 6px #22C55E; animation: statusBlink 1s infinite; }
.cc-notif-dot--brand { background: var(--brand); box-shadow: 0 0 6px var(--brand); animation: statusBlink 1.5s infinite; }

.cc-notif-title { display: block; font-weight: 600; color: var(--white); font-size: .78rem; }
.cc-notif-sub   { display: block; color: rgba(255,255,255,.80); font-size: .7rem; }

.cc-notif-icon { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

/* Sound wave bars */
.cc-notif-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}
.cc-notif-wave span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: #22C55E;
}
.cc-notif-wave span:nth-child(1) { height: 6px;  animation: wave 1s ease-in-out infinite 0s; }
.cc-notif-wave span:nth-child(2) { height: 14px; animation: wave 1s ease-in-out infinite .1s; }
.cc-notif-wave span:nth-child(3) { height: 10px; animation: wave 1s ease-in-out infinite .2s; }
.cc-notif-wave span:nth-child(4) { height: 18px; animation: wave 1s ease-in-out infinite .3s; }
.cc-notif-wave span:nth-child(5) { height: 8px;  animation: wave 1s ease-in-out infinite .4s; }
@keyframes wave {
    0%, 100% { transform: scaleY(.5); opacity: .6; }
    50%       { transform: scaleY(1);  opacity: 1; }
}

/* Chat bubbles */
.cc-chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 190px;
}
.cc-bubble {
    padding: 6px 10px;
    border-radius: 10px;
    font-size: .72rem;
    line-height: 1.4;
    max-width: 90%;
    animation: bubbleIn .4s ease-out both;
}
.cc-bubble--in {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    align-self: flex-start;
    border-radius: 10px 10px 10px 2px;
}
.cc-bubble--out {
    background: rgba(255,182,0,.2);
    color: var(--brand);
    align-self: flex-end;
    border-radius: 10px 10px 2px 10px;
    animation-delay: .8s;
}
@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(6px) scale(.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typing indicator */
.cc-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(255,255,255,.07);
    border-radius: 10px;
    width: fit-content;
    animation: bubbleIn .4s ease-out 1.6s both;
}
.cc-typing span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}
.cc-typing span:nth-child(1) { animation: typingDot 1.2s ease-in-out infinite 0s; }
.cc-typing span:nth-child(2) { animation: typingDot 1.2s ease-in-out infinite .2s; }
.cc-typing span:nth-child(3) { animation: typingDot 1.2s ease-in-out infinite .4s; }
@keyframes typingDot {
    0%, 100% { transform: translateY(0); opacity: .4; }
    50%       { transform: translateY(-4px); opacity: 1; }
}

/* Live stats pill */
.cc-live-stats {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(15,23,42,.95);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: .76rem;
    color: rgba(255,255,255,.6);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    z-index: 10;
}
.cc-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22C55E;
    animation: statusBlink 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px #22C55E;
}
.cc-live-count { font-weight: 800; color: var(--brand); font-size: .88rem; }

/* Floating language cards — inside scene */
.cc-scene .hero-card--float { position: absolute; z-index: 10; }
.cc-scene .hero-card--tr { top: 14%;  left: 12px; animation-delay: 0.5s; }
.cc-scene .hero-card--de { bottom: 14px; left: 12px; animation-delay: 2.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero > .container { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .map-stats { grid-template-columns: repeat(2, 1fr); }
    .career-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(15,23,42,.98); flex-direction: column; padding: 24px 28px; gap: 20px; backdrop-filter: blur(12px); }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }
    .nav-right .nav-phone { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 0; min-height: auto; }
    .hero > .container { padding-bottom: 40px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .stats-row { gap: 20px; }
    .stat-sep { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section-head { margin-bottom: 36px; }
    .services, .about, .why, .career, .contact { padding: 70px 0; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }
}

/* ── Kariyer Sayfası Responsive ── */
@media (max-width: 768px) {
    .career-profile-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
    .career-nitelik-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .career-nitelik-grid { gap: 10px !important; }
}

/* ========== DIL SEÇİCİ (NAVBAR) ========== */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 2px;
    margin-right: 6px;
}
.nav-lang-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    border: 2px solid transparent;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: all 200ms ease;
    outline: none;
}
.nav-lang-btn:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }
.nav-lang-btn.active {
    background: rgba(255,182,0,.15);
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(255,182,0,.2);
    transform: translateY(-1px);
}
.nav-lang-flag {
    display: block;
    width: 22px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    transition: transform 200ms ease;
}
.nav-lang-btn:hover .nav-lang-flag  { transform: scale(1.1); }
.nav-lang-btn.active .nav-lang-flag { transform: scale(1.05); }
.nav-lang-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #0f172a;
    color: rgba(255,255,255,.9);
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms, transform 160ms;
    z-index: 500;
}
.nav-lang-btn:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 768px) {
    .nav-lang-switcher { margin-right: 4px; }
    .nav-lang-btn { width: 36px; height: 30px; }
    .nav-lang-btn::after { display: none; }
}