/* ATAK ASISTANS - REDESIGN 2026 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --orange: #E8920A;
    --orange-dark: #c47a08;
    --orange-light: #fef3e2;
    --navy: #0F2744;
    --navy-mid: #1a3a5c;
    --navy-light: #eef2f7;
    --bg: #ffffff;
    --bg-soft: #f7f8fa;
    --text: #0F2744;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 20px rgba(15,39,68,0.08);
    --shadow-lg: 0 12px 40px rgba(15,39,68,0.13);
    --shadow-xl: 0 24px 60px rgba(15,39,68,0.17);
    --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; }

/* ===== NAVBAR ===== */
#mainNav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--orange);
    padding: 0.7rem 0;
    transition: var(--transition);
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(30,58,95,0.12); padding: 0.5rem 0; }
.navbar-logo { height: 48px; width: auto; object-fit: contain; }
.nav-link {
    color: var(--navy) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 0.8rem !important;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--orange) !important; background: var(--orange-light); }
.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    padding: 0.55rem 1.2rem !important;
    border: 2px solid var(--orange);
}
.nav-cta:hover { background: var(--orange-dark) !important; border-color: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.35); }
.nav-bayi {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--navy);
    color: #fff !important;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem;
    padding: 0.55rem 1.1rem; border-radius: 10px;
    text-decoration: none; transition: var(--transition);
    border: 2px solid var(--navy);
}
.nav-bayi:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.35); }
.dropdown-menu-dark-custom {
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; box-shadow: var(--shadow-xl);
    padding: 0.5rem; min-width: 220px; margin-top: 8px !important;
}
.dropdown-menu-dark-custom .dropdown-item {
    color: var(--navy); font-family: 'Outfit', sans-serif;
    font-size: 0.88rem; font-weight: 500;
    padding: 0.6rem 1rem; border-radius: 8px; transition: var(--transition);
}
.dropdown-menu-dark-custom .dropdown-item i { color: var(--orange); }
.dropdown-menu-dark-custom .dropdown-item:hover { background: var(--orange-light); color: var(--orange-dark); }
@media (max-width: 991px) {
    #mainNav .navbar-collapse { background: #fff; border-top: 1px solid var(--border); padding: 1rem 0.5rem; margin-top: 0.5rem; border-radius: 0 0 14px 14px; box-shadow: var(--shadow-lg); }
    .nav-cta, .nav-bayi { margin: 0.4rem 1rem; display: block; text-align: center; }
    .dropdown-menu-dark-custom { position: static !important; box-shadow: none; border: none; background: var(--bg-soft); margin: 0 0.5rem; }
}

/* ===== HERO - FULL SCREEN SPLIT ===== */
.hero-section {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; animation: kenBurns 8s ease-in-out forwards; }
@keyframes kenBurns {
    from { transform: scale(1.06); }
    to   { transform: scale(1.0); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg, rgba(15,25,35,0.88) 0%, rgba(30,58,95,0.7) 50%, rgba(15,25,35,0.4) 100%);
}
.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--orange);
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; font-family: 'Outfit', sans-serif;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900; color: #fff; line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--orange); }
.hero-title .underline-accent {
    position: relative; display: inline-block;
}
.hero-title .underline-accent::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 4px; background: var(--orange); border-radius: 2px;
}
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange); color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
    padding: 1rem 2.2rem; border-radius: 12px;
    text-decoration: none; border: none; transition: var(--transition);
    box-shadow: 0 6px 24px rgba(245,166,35,0.45);
}
.btn-hero-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(245,166,35,0.55); }
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
    padding: 1rem 2.2rem; border-radius: 12px;
    text-decoration: none; border: 2px solid rgba(255,255,255,0.45);
    transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; transform: translateY(-3px); }
.hero-stats {
    display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }

/* Hero sağ kart */
.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px; padding: 2rem;
}
.hero-card-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }
.hero-card-title span { color: var(--orange); }
.hero-form-input {
    background: rgba(255,255,255,0.08) !important;
    border: 1.5px solid rgba(255,255,255,0.15) !important;
    color: #fff !important; border-radius: 10px !important;
    padding: 0.75rem 1rem !important; font-size: 0.9rem !important;
}
.hero-form-input:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(245,166,35,0.2) !important; background: rgba(255,255,255,0.12) !important; outline: none !important; }
.hero-form-input::placeholder { color: rgba(255,255,255,0.4) !important; }
.hero-form-input option { background: var(--navy); color: #fff; }
.hero-form-label { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; font-family: 'Outfit', sans-serif; margin-bottom: 0.35rem; }
.btn-hero-submit {
    width: 100%; background: var(--orange); color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
    padding: 0.9rem; border-radius: 10px; border: none;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-hero-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }

/* Hero slider dots */
.hero-dots {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35); cursor: pointer;
    transition: all 0.3s; border: none;
}
.hero-dot.active { background: var(--orange); width: 28px; border-radius: 4px; }

/* Hero bottom bar */
.hero-bottom-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(15,39,68,0.92);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--orange);
    padding: 0.85rem 0; z-index: 3;
}
.hbb-item {
    display: flex; align-items: center; gap: 8px;
    color: #fff; font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 0.85rem;
    padding: 0.3rem 0; white-space: nowrap;
}
.hbb-item i { font-size: 1rem; color: var(--orange); }
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section .row.align-items-center { padding-bottom: 100px; }
    .hero-bottom-bar { padding: 0.6rem 0; }
    .hbb-item { font-size: 0.72rem; gap: 5px; }
}

/* ===== SECTIONS ===== */
.py-section { padding: 5.5rem 0; }
.section-light { background: var(--bg); }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); }
.section-eyebrow {
    display: inline-block; background: var(--orange-light);
    color: var(--orange-dark); padding: 5px 16px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; font-family: 'Outfit', sans-serif;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-title .accent { color: var(--orange); }
.section-title-white { color: #fff; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== HIZMET KARTLARI - YENİ TASARIM ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .service-grid { grid-template-columns: 1fr; } }

.service-card-v2 {
    background: #fff; border-radius: var(--radius-lg);
    padding: 2rem 1.75rem; text-decoration: none;
    display: flex; flex-direction: column;
    border: 1px solid var(--border);
    transition: var(--transition); position: relative; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card-v2::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card-v2:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card-v2:hover::before { transform: scaleX(1); }
.service-card-v2:hover .svc-icon { background: var(--orange); color: #fff; }
.svc-icon {
    width: 60px; height: 60px; background: var(--orange-light);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--orange); margin-bottom: 1.25rem;
    transition: var(--transition);
}
.svc-title { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.svc-desc { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 0.85rem; font-weight: 700; font-family: 'Outfit', sans-serif; }
.svc-link i { transition: transform 0.2s; }
.service-card-v2:hover .svc-link i { transform: translateX(4px); }

/* ===== NASIL ÇALIŞIR - STEPS ===== */
.steps-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps-wrap::before {
    content: ''; position: absolute; top: 40px; left: 16.6%; right: 16.6%;
    height: 2px; background: linear-gradient(90deg, var(--orange), var(--navy));
    z-index: 0;
}
@media (max-width: 768px) { .steps-wrap { grid-template-columns: 1fr; } .steps-wrap::before { display: none; } }
.step-v2 { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--navy); color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; border: 4px solid var(--orange);
    box-shadow: 0 8px 24px rgba(30,58,95,0.25);
    transition: var(--transition);
}
.step-v2:hover .step-num { background: var(--orange); border-color: var(--navy); transform: scale(1.1); }
.step-v2 h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.step-v2 p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== NEDEN BİZ - FEATURE STRIP ===== */
.feature-strip { background: var(--navy); border-radius: var(--radius-lg); padding: 3rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon {
    width: 56px; height: 56px; min-width: 56px;
    background: rgba(245,166,35,0.15); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange); font-size: 1.3rem;
    border: 1px solid rgba(245,166,35,0.3);
    transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--orange); color: #fff; border-color: var(--orange); }
.feature-item h5 { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; margin-bottom: 0.3rem; font-size: 0.95rem; }
.feature-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* ===== STATS COUNTER ===== */
.stats-strip { background: var(--navy); padding: 3rem 0; border-top: 4px solid var(--orange); }
.stat-item { text-align: center; }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 500; font-family: 'Outfit', sans-serif; margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(30,58,95,0.2); height: 60px; margin: auto; }

/* ===== FORM SECTION ===== */
.form-section-wrap { background: linear-gradient(135deg, var(--navy) 0%, #2d5a8e 100%); border-radius: var(--radius-lg); padding: 3rem; }
.form-tabs-v2 { display: flex; gap: 0.5rem; background: rgba(255,255,255,0.08); border-radius: 12px; padding: 5px; margin-bottom: 2rem; }
.form-tab-v2 { flex: 1; background: transparent; border: none; color: rgba(255,255,255,0.6); padding: 0.7rem 1rem; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--transition); }
.form-tab-v2.active { background: var(--orange); color: #fff; box-shadow: 0 4px 12px rgba(245,166,35,0.4); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-input-dark {
    background: rgba(255,255,255,0.08) !important;
    border: 1.5px solid rgba(255,255,255,0.15) !important;
    color: #fff !important; border-radius: 10px !important;
    padding: 0.75rem 1rem !important; font-size: 0.9rem !important;
}
.form-input-dark:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(245,166,35,0.2) !important; outline: none !important; }
.form-input-dark::placeholder { color: rgba(255,255,255,0.35) !important; }
.form-input-dark option { background: var(--navy); }
.form-label-dark { color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 600; font-family: 'Outfit', sans-serif; margin-bottom: 0.35rem; }
.btn-form-submit { background: var(--orange); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; padding: 0.9rem 2rem; border-radius: 10px; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.form-message { padding: 1rem 1.25rem; border-radius: 10px; font-weight: 600; font-size: 0.88rem; margin-top: 1rem; }
.form-message.success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.form-message.error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2d5a8e 100%);
    position: relative; overflow: hidden; padding: 5rem 0;
}
.cta-section::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-title { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 900; color: #fff; }
.cta-title .accent { color: var(--orange); }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.btn-cta-primary { background: var(--orange); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; padding: 1rem 2.5rem; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); box-shadow: 0 6px 24px rgba(245,166,35,0.4); }
.btn-cta-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(245,166,35,0.5); }
.btn-cta-outline { background: transparent; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; padding: 1rem 2rem; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; border: 2px solid rgba(255,255,255,0.4); transition: var(--transition); }
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

/* ===== PAGE HERO (İÇ SAYFALAR) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2d5a8e 100%);
    padding: 8rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero::after {
    content: ''; position: absolute; top: -40px; left: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.35); color: var(--orange); padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.page-hero-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.page-hero-title .accent { color: var(--orange); }
.page-hero-desc { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; line-height: 1.7; margin-bottom: 1.5rem; }
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--orange); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ===== İÇ SAYFA CONTENT ===== */
.content-wrap { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.content-article h2 { font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.content-article h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; padding-left: 1rem; border-left: 3px solid var(--orange); }
.content-article p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.content-article ul { color: var(--text-muted); line-height: 1.9; padding-left: 1.5rem; margin-bottom: 1rem; }
.content-article ul li { margin-bottom: 0.4rem; }
.content-article a { color: var(--orange); }

/* Sidebar */
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.sidebar-card-header { background: var(--navy); color: #fff; padding: 1rem 1.5rem; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; }
.sidebar-links { list-style: none; padding: 0.5rem; margin: 0; }
.sidebar-links li a { display: flex; align-items: center; gap: 8px; padding: 0.65rem 1rem; color: var(--text-muted); text-decoration: none; font-size: 0.88rem; border-radius: 8px; transition: var(--transition); }
.sidebar-links li a i { color: var(--orange); font-size: 0.7rem; }
.sidebar-links li a:hover, .sidebar-links li.active a { background: var(--orange-light); color: var(--orange-dark); padding-left: 1.25rem; }
.sidebar-cta-card { background: linear-gradient(135deg, var(--navy), #2d5a8e); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; }
.sidebar-cta-card h5 { font-family: 'Outfit', sans-serif; color: #fff; font-weight: 700; margin-bottom: 0.5rem; }
.sidebar-cta-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1.25rem; }
.btn-sidebar-cta { display: block; background: var(--orange); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; padding: 0.75rem; border-radius: 10px; text-decoration: none; text-align: center; transition: var(--transition); }
.btn-sidebar-cta:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-lg); border-color: var(--orange); transform: translateY(-3px); }
.contact-card-icon { width: 50px; height: 50px; min-width: 50px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; }
.contact-card h6 { font-family: 'Outfit', sans-serif; color: var(--navy); font-weight: 700; margin-bottom: 0.2rem; font-size: 0.88rem; }
.contact-card a, .contact-card p { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin: 0; }
.contact-card a:hover { color: var(--orange); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* ===== ABOUT ===== */
.about-stat-box { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.about-stat-num { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; margin-bottom: 0.5rem; }
.about-stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.about-feature:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.about-feature-icon { width: 48px; height: 48px; min-width: 48px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; }
.about-feature h5 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; font-size: 0.92rem; }
.about-feature p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.city-badge { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.city-badge i { color: var(--orange); font-size: 0.75rem; }
.faq-item { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 0.75rem; transition: var(--transition); }
.faq-item:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.faq-item h5 { font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.faq-item p { color: var(--text-muted); font-size: 0.87rem; margin: 0; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer-premium { background: #0d1520; color: #fff; }
.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom span { color: #6b7280; font-size: 0.85rem; }
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 1.25rem; display: block; filter: brightness(0) invert(1); }
.footer-desc { color: #9ca3af; font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 300px; }
.footer-phone-btn { display: flex; align-items: center; gap: 14px; background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.25); border-radius: 12px; padding: 14px 18px; text-decoration: none; transition: var(--transition); margin-bottom: 1.5rem; }
.footer-phone-btn:hover { background: rgba(245,166,35,0.18); border-color: var(--orange); }
.footer-phone-btn > i { font-size: 1.4rem; color: var(--orange); }
.footer-phone-btn span { display: block; font-size: 0.72rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; }
.footer-phone-btn strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; }
.footer-socials { display: flex; gap: 0.6rem; }
.fsocial { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #9ca3af; text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.fsocial:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.fsocial.wa:hover { background: #25d366; border-color: #25d366; }
.footer-heading { font-family: 'Outfit', sans-serif; color: #fff; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-nav a i { font-size: 0.65rem; color: var(--orange); transition: var(--transition); }
.footer-nav a:hover { color: #fff; padding-left: 4px; }
.footer-nav a:hover i { transform: translateX(3px); }
.footer-info-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-info-item { display: flex; gap: 12px; align-items: flex-start; }
.finfo-icon { width: 38px; height: 38px; min-width: 38px; background: rgba(245,166,35,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.9rem; }
.footer-info-item span { display: block; font-size: 0.72rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.footer-info-item a { color: #e5e7eb; text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-info-item a:hover { color: var(--orange); }
.footer-info-item p { color: #9ca3af; font-size: 0.85rem; margin: 0; line-height: 1.5; }
.footer-badge-247 { background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); color: var(--orange); padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; font-family: 'Outfit', sans-serif; }

/* ===== STICKY / WHATSAPP ===== */
.sticky-call { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; display: flex; padding: 0.75rem; gap: 0.5rem; background: rgba(255,255,255,0.97); border-top: 2px solid var(--orange); backdrop-filter: blur(10px); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.btn-sticky-call { flex: 1; background: var(--orange); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; border-radius: 10px; padding: 0.85rem; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1rem; }
.btn-sticky-whatsapp { width: 52px; height: 52px; background: #25d366; color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none; }
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 58px; height: 58px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; text-decoration: none; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== APPLY FORM ===== */
.apply-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.apply-type-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.apply-type-item { flex: 1; min-width: 130px; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 1.25rem 1rem; border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: var(--transition); background: #fff; text-align: center; }
.apply-type-item i { font-size: 1.6rem; color: var(--text-muted); transition: var(--transition); }
.apply-type-item span { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.apply-type-item:hover, .apply-type-item.active { border-color: var(--orange); background: var(--orange-light); }
.apply-type-item:hover i, .apply-type-item.active i, .apply-type-item:hover span, .apply-type-item.active span { color: var(--orange-dark); }
.form-control-light { background: var(--bg-soft) !important; border: 1.5px solid var(--border) !important; color: var(--text) !important; border-radius: 10px !important; padding: 0.75rem 1rem !important; font-size: 0.9rem !important; transition: var(--transition) !important; }
.form-control-light:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(245,166,35,0.15) !important; outline: none !important; }
.form-label { color: var(--navy); font-size: 0.85rem; font-weight: 600; font-family: 'Outfit', sans-serif; margin-bottom: 0.4rem; }

/* ===== AOS ===== */
[data-aos] { opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos="fade-up"] { transform: translateY(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .py-section { padding: 3.5rem 0; }
    body { padding-bottom: 80px; }
    .feature-strip { padding: 2rem 1.5rem; }
    .form-section-wrap { padding: 2rem 1.5rem; }
    .apply-type-grid { display: grid; grid-template-columns: repeat(3,1fr); }
    .apply-type-item { min-width: auto; padding: 1rem 0.5rem; }
    .apply-type-item i { font-size: 1.3rem; }
    .apply-type-item span { font-size: 0.72rem; }
    .apply-form-card { padding: 1.5rem; }
    .cta-title { font-size: 1.8rem; }
    .stat-num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .apply-type-grid { grid-template-columns: repeat(2,1fr); }
}

/* Hero bottom bar - tıklanabilir hizmet linkleri */
.hbb-link {
    text-decoration: none;
    transition: var(--transition);
    justify-content: center;
    border-right: 1px solid rgba(30,58,95,0.2);
    padding: 0.6rem 1rem;
}
.hbb-link:last-child { border-right: none; }
.hbb-link:hover { background: rgba(30,58,95,0.15); }
.hbb-link:hover span { text-decoration: underline; }
@media (max-width: 768px) {
    .hbb-link { border-right: none; border-bottom: 1px solid rgba(30,58,95,0.15); padding: 0.5rem; }
    .hbb-link:last-child { border-bottom: none; }
}

/* ===== HABER KARTLARI ===== */
.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.news-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.news-card:hover::after { transform: scaleX(1); }
.news-card-date {
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.75rem;
}
.news-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.news-card-summary {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-top: auto;
}
.news-card:hover .news-card-link i { transform: translateX(4px); }
.news-card-link i { transition: transform 0.2s; }

/* ===== FOOTER LOGO DÜZELTME ===== */
.footer-logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    display: block;
}
/* Logo beyaz değilse filter kaldır */
.footer-logo-color { filter: none !important; }

/* ===== GERİYE DÖNÜK UYUMLULUK ===== */
/* Eski section-dark -> section-soft gibi davransın */
.section-dark { background: var(--navy); }
.section-dark .section-title { color: #fff; }
.section-dark .text-muted { color: rgba(255,255,255,0.65) !important; }

/* Eski form-control-dark -> form-input-dark gibi */
.form-control-dark {
    background: rgba(255,255,255,0.08) !important;
    border: 1.5px solid rgba(255,255,255,0.15) !important;
    color: #fff !important; border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
}
.form-control-dark:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(232,146,10,0.2) !important; outline: none !important; }
.form-control-dark::placeholder { color: rgba(255,255,255,0.4) !important; }

/* Eski text-accent */
.text-accent { color: var(--orange) !important; }

/* Eski btn-accent */
.btn-accent { background: var(--orange) !important; color: #fff !important; border-color: var(--orange) !important; font-weight: 700; }
.btn-accent:hover { background: var(--orange-dark) !important; border-color: var(--orange-dark) !important; color: #fff !important; }

/* Eski form-card */
.form-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; overflow: hidden; }
.form-card-header { background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 1.75rem; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.form-card form { padding: 1.75rem; }

/* Eski contact-info-list */
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); }
.contact-info-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(232,146,10,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; }
.contact-info-item h6 { font-family: 'Outfit', sans-serif; color: #fff; font-weight: 700; margin-bottom: 0.2rem; font-size: 0.88rem; }
.contact-info-item a { color: var(--orange); text-decoration: none; font-size: 0.9rem; }
.contact-info-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

/* Eski sidebar-card */
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.sidebar-title { font-family: 'Outfit', sans-serif; color: var(--navy); font-weight: 700; margin-bottom: 1rem; font-size: 1rem; padding: 1rem 1.5rem 0; }
.sidebar-card .sidebar-links { list-style: none; padding: 0.5rem; margin: 0; }
.sidebar-card .sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-card .sidebar-links li:last-child { border-bottom: none; }
.sidebar-card .sidebar-links li a { display: flex; align-items: center; gap: 8px; padding: 0.65rem 1rem; color: var(--text-muted); text-decoration: none; font-size: 0.88rem; border-radius: 8px; transition: var(--transition); }
.sidebar-card .sidebar-links li a:hover, .sidebar-card .sidebar-links li.active a { background: var(--orange-light); color: var(--orange-dark); }

/* Eski stat-box (about sayfası) */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: var(--transition); }
.stat-box:hover { box-shadow: var(--shadow-lg); border-color: var(--orange); transform: translateY(-4px); }
.stat-big { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-box span:last-child { color: var(--text-muted); font-size: 0.85rem; }

/* Eski section-badge (about sayfası) */
.section-badge { display: inline-block; background: var(--orange-light); color: var(--orange-dark); padding: 5px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-title span { color: var(--orange); }

/* Eski mission-card (about sayfası) */
.mission-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: var(--transition); }
.mission-card:hover { box-shadow: var(--shadow-lg); border-color: var(--orange); }
.mission-icon { width: 56px; height: 56px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.4rem; margin-bottom: 1rem; }
.mission-card h4 { font-family: 'Outfit', sans-serif; color: var(--navy); font-weight: 700; margin-bottom: 0.75rem; }
.mission-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Eski about-service-list */
.about-service-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.about-service-list li { display: flex; gap: 1rem; align-items: flex-start; }
.about-service-list li i { font-size: 1.1rem; margin-top: 3px; min-width: 20px; color: var(--orange); }
.about-service-list li div { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.about-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about-badge { background: var(--bg-soft); border: 1px solid var(--border); padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; color: var(--text-muted); }

/* map-container eski isim */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* ===== APPLY FORM & GENEL BUTON DÜZELTME ===== */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 700;
    border: none; border-radius: 12px;
    padding: 0.85rem 2rem; cursor: pointer;
    transition: var(--transition); text-decoration: none;
    font-size: 1rem;
}
.btn-primary-custom:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,146,10,0.4); }
.btn-primary-custom.w-100 { width: 100%; justify-content: center; }

.form-control-light {
    background: var(--bg-soft) !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    transition: var(--transition) !important;
}
.form-control-light:focus {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 3px rgba(232,146,10,0.15) !important;
    outline: none !important;
    background: #fff !important;
}
.form-control-light::placeholder { color: var(--text-muted) !important; }

/* Apply form card */
.apply-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.apply-type-item {
    flex: 1; min-width: 120px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 1.25rem 1rem;
    border: 2px solid var(--border);
    border-radius: 12px; cursor: pointer;
    transition: var(--transition); background: #fff; text-align: center;
}
.apply-type-item i { font-size: 1.6rem; color: var(--text-muted); transition: var(--transition); }
.apply-type-item span { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.apply-type-item:hover, .apply-type-item.active { border-color: var(--orange); background: var(--orange-light); }
.apply-type-item:hover i, .apply-type-item.active i,
.apply-type-item:hover span, .apply-type-item.active span { color: var(--orange-dark); }
.apply-type-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* CTA section eski buton */
.cta-section .btn-dark {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: #fff !important;
}
.cta-section .btn-dark:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
}

/* Form check */
.form-check-input:checked { background-color: var(--orange) !important; border-color: var(--orange) !important; }
.form-check-label a { color: var(--orange) !important; }

@media (max-width: 768px) {
    .apply-type-grid { display: grid; grid-template-columns: repeat(3,1fr); }
    .apply-type-item { min-width: auto; padding: 1rem 0.5rem; }
    .apply-type-item i { font-size: 1.3rem; }
    .apply-type-item span { font-size: 0.72rem; }
    .apply-form-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .apply-type-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===== HERO BRAND NAME ===== */
.hero-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 24px rgba(232,146,10,0.3);
    position: relative;
    display: inline-block;
}
.hero-brand-name::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--orange);
    border-radius: 3px;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .hero-brand-name { font-size: 2.4rem; letter-spacing: 2px; }
}

/* ===== NAVBAR TEXT LOGO ===== */
.navbar-text-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 1;
    text-decoration: none;
}
.logo-atak {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}
.logo-asistans {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    margin-left: 4px;
}
#mainNav.scrolled .logo-asistans { color: var(--navy); }

/* ===== HERO BRAND SPAN RENKLERİ ===== */
.brand-atak { color: var(--orange) !important; }
.brand-asistans { color: #ffffff !important; }
.hero-brand-name { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
