/* ============================================
   xGo Türkiye - Tüm stiller
   Renkler: #0f172a (koyu), #f97315 (turuncu)
   ============================================ */

:root {
    --xgo-dark: #0f172a;
    --xgo-dark-light: #1e293b;
    --xgo-orange: #f97315;
    --xgo-orange-hover: #ea580c;
}

/* Bootstrap primary override */
.text-primary, .btn-primary, .bg-primary {
    --bs-primary: #f97315;
    --bs-primary-rgb: 249, 115, 21;
}
.btn-primary {
    background-color: var(--xgo-orange);
    border-color: var(--xgo-orange);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--xgo-orange-hover);
    border-color: var(--xgo-orange-hover);
}

/* Base / Layout */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ============================================
   Üst Bar (Topbar) - sadece desktop
   ============================================ */
.topbar {
    background-color: var(--xgo-dark-light);
    padding: 12px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.topbar-contact a:hover {
    color: var(--xgo-orange);
}
.topbar-contact i {
    margin-right: 4px;
}

.topbar-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 14px;
    font-size: 0.9rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.topbar-social a:hover {
    color: var(--xgo-orange);
    transform: translateY(-1px);
}

/* ============================================
   Ana Navbar
   ============================================ */
.navbar-xgo {
    background-color: var(--xgo-dark) !important;
    padding: 22px 0;
    transition: box-shadow 0.3s;
}
.navbar-xgo.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.navbar-brand {
    letter-spacing: -0.02em;
}

.navbar-xgo .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 28px;
    transition: color 0.2s, background-color 0.2s;
    position: relative;
}
.navbar-xgo .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.06);
}
.navbar-xgo .nav-link.active {
    color: var(--xgo-orange) !important;
    background-color: rgba(249, 115, 21, 0.1);
}

/* Mobil sosyal ikonlar (navbar yanında) */
.mobile-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.05rem;
    margin-left: 10px;
    transition: color 0.2s;
}
.mobile-social a:hover {
    color: var(--xgo-orange);
}

/* ============================================
   Offcanvas Mobil Menü
   ============================================ */
.offcanvas-xgo {
    background-color: var(--xgo-dark) !important;
    width: 300px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas-xgo .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: all 0.2s;
}
.offcanvas-xgo .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
    padding-left: 22px;
}
.offcanvas-xgo .nav-link.active {
    color: var(--xgo-orange);
    background-color: rgba(249, 115, 21, 0.1);
}

.offcanvas-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.offcanvas-contact a:hover {
    color: var(--xgo-orange);
}

.offcanvas-social a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.25rem;
    margin-right: 18px;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.offcanvas-social a:hover {
    color: var(--xgo-orange);
    transform: translateY(-2px);
}

/* ============================================
   Footer
   ============================================ */
footer.xgo-footer {
    background: linear-gradient(180deg, var(--xgo-dark) 0%, #0a0f1a 100%);
    color: rgba(255, 255, 255, 0.88);
}

footer.xgo-footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s;
}

footer.xgo-footer a:hover {
    color: var(--xgo-orange) !important;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main .row {
    padding: 2.75rem 0 2.5rem;
}

.footer-logo {
    height: 38px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.82;
    max-width: 280px;
}

.footer-social {
    margin-top: 1.25rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: var(--xgo-orange);
    border-color: var(--xgo-orange);
    color: #fff !important;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--xgo-orange);
    display: inline-block;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    opacity: 0.88;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.footer-contact a i,
.footer-contact li i {
    margin-right: 0.5rem;
    opacity: 0.85;
    width: 1em;
}

.footer-app-buttons {
    max-width: 220px;
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-app-btn:hover {
    background: rgba(249, 115, 21, 0.15);
    border-color: rgba(249, 115, 21, 0.4);
    color: #fff !important;
    transform: translateY(-1px);
}

.footer-app-btn i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.footer-app-btn span small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.88;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
    .footer-main .row {
        padding: 2rem 0 1.75rem;
    }
    .footer-app-buttons {
        max-width: 100%;
    }
    .footer-app-btn {
        justify-content: center;
    }
    .footer-tagline {
        max-width: 100%;
    }
}

/* ============================================
   Anasayfa – Hero
   ============================================ */
.home-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.min-vh-65 { min-height: 520px; }

.home-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 55%, rgba(15, 23, 42, 0.35) 100%);
}

.home-hero .container { z-index: 2; padding-top: 3rem; padding-bottom: 3rem; }

.home-hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--xgo-orange);
    background: rgba(249, 115, 21, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.home-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.home-hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 28rem;
    margin: 0;
}

.home-hero-btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
}

/* ============================================
   Anasayfa – Özellikler
   ============================================ */
.home-features-row {
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.home-feature-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.home-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    background: rgba(249, 115, 21, 0.1);
    color: var(--xgo-orange);
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.home-feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 0.4rem;
}

.home-feature-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   Anasayfa – Nasıl çalışır
   ============================================ */
.home-how-section {
    background: #f8fafc;
}

.home-section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--xgo-orange);
    margin-bottom: 0.5rem;
}

.home-section-title {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--xgo-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.home-step {
    padding: 1.5rem 1rem;
}

.home-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--xgo-dark);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 0.5rem;
}

.home-step-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   Anasayfa – Araç türleri
   ============================================ */
.home-vehicle-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s, border-color 0.2s;
}

.home-vehicle-card:hover {
    transform: translateY(-3px);
    border-color: var(--xgo-orange);
}

.home-vehicle-card i {
    font-size: 2.25rem;
    color: var(--xgo-orange);
    margin-bottom: 0.75rem;
    display: block;
}

.home-vehicle-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 0.25rem;
}

.home-vehicle-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* ============================================
   Anasayfa – Uygulama indir CTA (ortalı)
   ============================================ */
.home-app-section {
    padding: 2.5rem 0 3rem;
}

.home-app-card {
    background: linear-gradient(180deg, var(--xgo-dark) 0%, #0f172a 50%, var(--xgo-dark-light) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.home-app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(249, 115, 21, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.home-app-content {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 32rem;
    margin: 0 auto;
}

.home-app-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--xgo-orange);
    background: rgba(249, 115, 21, 0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.home-app-title {
    font-size: clamp(1.4rem, 3.2vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-app-line {
    display: block;
    width: 4rem;
    height: 3px;
    margin: 0 auto 1rem;
    background: linear-gradient(90deg, transparent, var(--xgo-orange), transparent);
    border-radius: 2px;
}

.home-app-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin: 0 auto;
    max-width: 28rem;
}

.home-app-visual-inline {
    flex-wrap: wrap;
}

.home-app-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.home-app-platform i {
    font-size: 1.25rem;
    color: var(--xgo-orange);
}

.home-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.home-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-app-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--xgo-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.home-app-btn i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.home-app-btn span small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================
   Anasayfa – Sorularınız mı var? CTA
   ============================================ */
.home-faq-cta-section {
    background: #f8fafc;
}

.home-faq-cta-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.home-faq-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 2rem 2.5rem;
}

.home-faq-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    background: rgba(249, 115, 21, 0.1);
    color: var(--xgo-orange);
    font-size: 2rem;
    flex-shrink: 0;
}

.home-faq-cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.home-faq-cta-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.home-faq-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 2rem 2.5rem;
    justify-content: flex-end;
}

.home-faq-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-faq-btn:hover {
    transform: translateY(-1px);
}

.home-faq-btn-outline {
    background: #fff;
    border: 2px solid var(--xgo-dark);
    color: var(--xgo-dark);
}

.home-faq-btn-outline:hover {
    background: var(--xgo-dark);
    color: #fff;
    border-color: var(--xgo-dark);
}

.home-faq-btn-primary {
    background: var(--xgo-orange);
    border: 2px solid var(--xgo-orange);
    color: #fff;
}

.home-faq-btn-primary:hover {
    background: var(--xgo-orange-hover);
    border-color: var(--xgo-orange-hover);
    color: #fff;
    box-shadow: 0 6px 20px rgba(249, 115, 21, 0.35);
}

@media (max-width: 991.98px) {
    .home-hero { min-height: 420px; }
    .min-vh-65 { min-height: 420px; }
    .home-app-content { padding: 2rem 1.75rem; }
    .home-faq-cta-content { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    .home-faq-cta-buttons { justify-content: center; padding: 0 1.5rem 2rem; }
}

@media (max-width: 575.98px) {
    .home-hero { min-height: 380px; }
    .min-vh-65 { min-height: 380px; }
    .home-features-row { margin-top: -2rem; }
    .home-feature-card { padding: 1.25rem 1rem; }
    .home-app-content { padding: 2rem 1.5rem; }
    .home-app-btn { width: 100%; justify-content: center; }
    .home-faq-cta-buttons { flex-direction: column; }
    .home-faq-btn { width: 100%; justify-content: center; }
}

/* ============================================
   Sayfa Başlığı (iç sayfalar – anasayfa hariç)
   Ortalı, mobil uyumlu
   ============================================ */
.page-header {
    position: relative;
    padding: 2.5rem 1rem 3rem;
    background: linear-gradient(160deg, var(--xgo-dark) 0%, #0c1222 45%, var(--xgo-dark-light) 100%);
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 20%, rgba(249, 115, 21, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.page-header .container {
    z-index: 1;
}

.page-header-inner {
    max-width: 36rem;
    margin: 0 auto;
}

.page-header-breadcrumb {
    margin-bottom: 1.25rem;
}
.page-header-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    justify-content: center;
    flex-wrap: nowrap;
}
.page-header-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.page-header-breadcrumb .breadcrumb-item a:hover {
    color: var(--xgo-orange);
}
.page-header-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}
.page-header-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.page-header-icon-wrap {
    margin-bottom: 1rem;
}
.page-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    color: var(--xgo-orange);
    background: rgba(249, 115, 21, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 21, 0.3);
}
.page-header-title {
    font-size: clamp(1.65rem, 5vw, 2.35rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    word-wrap: break-word;
}
.page-header-line {
    display: block;
    width: 4rem;
    height: 4px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(90deg, transparent, var(--xgo-orange), transparent);
    border-radius: 2px;
}
.page-header-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 2.2vw, 1.08rem);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 576px) {
    .page-header {
        padding: 2rem 0.75rem 2.5rem;
    }
    .page-header-inner {
        max-width: 100%;
    }
    .page-header-breadcrumb .breadcrumb {
        font-size: 0.75rem;
    }
    .page-header-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    .page-header-title {
        font-size: 1.5rem;
    }
    .page-header-line {
        width: 3rem;
        margin-bottom: 1rem;
    }
}

/* ============================================
   Kartlar
   ============================================ */
.card-icon,
.text-primary {
    color: var(--xgo-orange) !important;
}

.card.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(249, 115, 21, 0.15) !important;
}

/* ============================================
   SSS (Sıkça Sorulan Sorular)
   ============================================ */
.nav-sss .nav-link {
    background-color: #f1f5f9;
    color: var(--xgo-dark);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 0 0.25rem;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}
.nav-sss .nav-link:hover {
    background-color: #e2e8f0;
    color: var(--xgo-orange);
    border-color: rgba(249, 115, 21, 0.3);
}
.nav-sss .nav-link.active {
    background-color: var(--xgo-dark);
    color: #fff;
    border-color: var(--xgo-dark);
}
.nav-sss .nav-link.active .badge {
    background-color: var(--xgo-orange) !important;
    color: #fff !important;
}
.nav-sss .nav-link .badge {
    font-size: 0.7rem;
}

.accordion-sss .accordion-button {
    background-color: #fff;
    color: var(--xgo-dark);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: none !important;
}
.accordion-sss .accordion-button:not(.collapsed) {
    background-color: var(--xgo-dark);
    color: #fff;
}
.accordion-sss .accordion-button::after {
    filter: brightness(0);
}
.accordion-sss .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-sss .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    color: #475569;
    line-height: 1.7;
}
@media (max-width: 576px) {
    .nav-sss .nav-link span:not(.badge) {
        font-size: 0.9rem;
    }
    .nav-sss .nav-link {
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   Uygulama indir alanı (Kariyer sayfası)
   ============================================ */
.app-download-block {
    position: relative;
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(249, 115, 21, 0.08);
}

.app-download-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(135deg, var(--xgo-dark) 0%, var(--xgo-dark-light) 100%);
    opacity: 0.03;
    pointer-events: none;
}

.app-download-content {
    padding: 2.5rem 1.5rem 2rem;
}

.app-download-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--xgo-orange);
    background: rgba(249, 115, 21, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.app-download-title {
    font-size: clamp(1.35rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.app-download-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.app-download-buttons {
    gap: 1rem !important;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 200px;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-align: left;
}

.app-store-btn i {
    font-size: 2rem;
    flex-shrink: 0;
}

.app-store-btn span small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.app-store-btn-google {
    background: var(--xgo-dark);
    color: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.25);
}

.app-store-btn-google:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.app-store-btn-apple {
    background: var(--xgo-dark);
    color: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.25);
}

.app-store-btn-apple:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.app-download-note {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .app-download-content {
        padding: 2rem 1.25rem 1.75rem;
    }
    .app-store-btn {
        min-width: 100%;
        max-width: 240px;
    }
}

/* ============================================
   Yatırımcı İlişkileri sayfası
   ============================================ */
.investor-contact-card {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    color: inherit;
}

.investor-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
}

.investor-contact-card:hover .investor-contact-value,
.investor-contact-card:hover .investor-contact-icon {
    color: var(--xgo-orange) !important;
}

.investor-contact-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(249, 115, 21, 0.1);
    flex-shrink: 0;
}

.investor-presentation-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.investor-presentation-header {
    background: linear-gradient(135deg, var(--xgo-dark) 0%, var(--xgo-dark-light) 100%);
    padding: 1.5rem 2rem;
}

.investor-presentation-body {
    padding: 2rem;
}

@media (max-width: 576px) {
    .investor-contact-card .card-body {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .investor-contact-card .bi-chevron-right {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .investor-presentation-body {
        padding: 1.5rem;
    }
}

/* ============================================
   Hakkımızda sayfası – Ne yapıyoruz
   ============================================ */
.about-what-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.about-what-img-wrap {
    position: relative;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
}

.about-what-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-what-body {
    position: relative;
    padding: 2.5rem 2rem 2.5rem 2.5rem;
    background: linear-gradient(180deg, #fefefe 0%, #f8fafc 100%);
    border-left: 4px solid var(--xgo-orange);
}

.about-what-body-inner {
    max-width: 28rem;
}

.about-what-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--xgo-orange);
    margin-bottom: 0.5rem;
}

.about-what-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.about-what-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.about-what-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.about-what-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--xgo-dark);
    margin-bottom: 0.5rem;
}

.about-what-list li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-what-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-what-buttons .btn {
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-what-buttons .btn:hover {
    transform: translateY(-1px);
}

.about-what-buttons .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(249, 115, 21, 0.35);
}

@media (min-width: 992px) {
    .about-what-body {
        padding: 3rem 2.5rem 3rem 3rem;
    }
}

@media (max-width: 991.98px) {
    .about-what-img-wrap {
        min-height: 240px;
    }
    .about-what-img {
        min-height: 240px;
    }
    .about-what-body {
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 4px solid var(--xgo-orange);
    }
    .about-what-body-inner {
        max-width: 100%;
    }
    .about-what-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   İletişim sayfası
   ============================================ */
.contact-info-card {
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    color: inherit;
}

a.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
}

a.contact-info-card:hover .contact-info-icon {
    background: rgba(249, 115, 21, 0.2) !important;
}

.contact-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(249, 115, 21, 0.1);
    font-size: 1.25rem;
    margin: 0 auto;
}

.contact-form-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-form-header {
    background: linear-gradient(135deg, var(--xgo-dark) 0%, var(--xgo-dark-light) 100%);
    padding: 1.5rem 2rem;
}

.contact-form-label {
    color: var(--xgo-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-form-input {
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-input::placeholder {
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-form-input:focus {
    border-color: var(--xgo-orange);
    box-shadow: 0 0 0 2px rgba(249, 115, 21, 0.12);
    outline: none;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 88px;
}

.contact-form-btn {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
}

/* ============================================
   Basında xGo – boş içerik alanı
   ============================================ */
.press-empty-card {
    background: linear-gradient(180deg, #fefefe 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    padding: 2.5rem 2rem 2.25rem;
}

.press-empty-icon-wrap {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(249, 115, 21, 0.12) 0%, rgba(249, 115, 21, 0.06) 100%);
    color: var(--xgo-orange);
    font-size: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 21, 0.15);
}

.press-empty-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--xgo-dark);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.press-empty-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.press-empty-divider {
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--xgo-orange), transparent);
    margin: 1.5rem auto;
    border-radius: 1px;
}

.press-empty-cta {
    color: #94a3b8;
    font-size: 0.85rem;
}

.press-empty-card .btn {
    font-weight: 600;
}
