/* ═══════════════════════════════════════════════════════════════════════════
   FleetSquare Light Theme — Mobile App Uyumlu (Kinetic Vault palette)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Primary — mobile app'ten birebir */
    --fs-primary: #00288E;
    --fs-primary-600: #1E40AF;
    --fs-primary-500: #2170E4;
    --fs-primary-tint: #DDE1FF;
    --fs-primary-fixed: #B8C4FF;

    /* Secondary & Accent */
    --fs-secondary: #0058BE;
    --fs-gold: #FFB77D;        /* tertiary — points/accent */
    --fs-gold-soft: #FFDDBB;

    /* Surfaces (tonal layering, no-line rule) */
    --fs-bg: #F9F9FF;
    --fs-bg-soft: #F1F3FF;
    --fs-surface: #FFFFFF;
    --fs-surface-1: #F1F3FF;
    --fs-surface-2: #E9EDFF;
    --fs-surface-3: #E1E8FD;
    --fs-surface-dim: #D3DAEF;

    /* Text */
    --fs-text: #141B2B;
    --fs-text-soft: #444653;
    --fs-text-muted: #757684;

    /* Gradients */
    --fs-gradient: linear-gradient(135deg, #00288E 0%, #1E40AF 50%, #2170E4 100%);
    --fs-gradient-soft: linear-gradient(135deg, rgba(0,40,142,0.08), rgba(33,112,228,0.04));
    --fs-gradient-hero: linear-gradient(180deg, #F9F9FF 0%, #E9EDFF 100%);

    /* Shadows (soft, no-line rule) */
    --fs-shadow-sm: 0 2px 8px -2px rgba(20, 27, 43, 0.06), 0 1px 3px -1px rgba(20, 27, 43, 0.04);
    --fs-shadow: 0 10px 30px -10px rgba(20, 27, 43, 0.1), 0 4px 12px -4px rgba(20, 27, 43, 0.06);
    --fs-shadow-lg: 0 25px 50px -12px rgba(0, 40, 142, 0.18), 0 12px 24px -6px rgba(20, 27, 43, 0.08);
    --fs-shadow-glow: 0 20px 50px -12px rgba(0, 40, 142, 0.35);
    --fs-shadow-gold: 0 12px 28px -8px rgba(255, 183, 125, 0.5);

    /* Border (kullanımı minimum — tonal tercih et) */
    --fs-border: rgba(20, 27, 43, 0.08);
    --fs-border-soft: rgba(20, 27, 43, 0.05);

    /* Radius */
    --fs-radius-sm: 10px;
    --fs-radius: 16px;
    --fs-radius-lg: 24px;
    --fs-radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fs-text);
    background: var(--fs-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--fs-primary); }

img { max-width: 100%; display: block; }

/* Galeri albüm kartları */
.gallery-album-cover img { width: 100%; height: 100%; object-fit: cover; }
.gallery-album-card {
    background: var(--fs-surface);
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-album-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fs-shadow);
}
.gallery-count-badge {
    background: var(--fs-gradient) !important;
    border-radius: 999px !important;
    font-weight: 600;
}

.fs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.fs-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(249, 249, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 1px 0 rgba(20, 27, 43, 0.06);
    transition: box-shadow .25s ease, background .25s ease;
}
.fs-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 32px;
}
.fs-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--fs-text);
}
.fs-brand:hover { color: var(--fs-text); }
.fs-brand-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--fs-gradient);
    display: grid; place-items: center;
    color: white;
    box-shadow: var(--fs-shadow-sm);
}
.fs-brand-icon svg { width: 20px; height: 20px; }

/* MainMenu component Bootstrap class'larını override ediyoruz */
.fs-nav .navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0; padding: 0;
    font-weight: 500;
    font-size: 14.5px;
}
.fs-nav .nav-item { position: relative; }
.fs-nav .nav-link {
    color: var(--fs-text-soft);
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color .15s ease, background .15s ease;
}
.fs-nav .nav-link:hover { color: var(--fs-primary); background: var(--fs-surface-2); }
.fs-nav .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    margin-left: 6px;
    opacity: .6;
}
.fs-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    padding: 8px;
    background: var(--fs-surface);
    border-radius: 14px;
    box-shadow: var(--fs-shadow-lg);
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}
.fs-nav .nav-item.dropdown:hover .dropdown-menu,
.fs-nav .dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.fs-nav .dropdown-item {
    display: block;
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--fs-text-soft);
    font-size: 14px;
    font-weight: 500;
}
.fs-nav .dropdown-item:hover { background: var(--fs-surface-2); color: var(--fs-primary); }

.fs-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    background: var(--fs-gradient);
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--fs-shadow-sm);
    transition: transform .15s ease, box-shadow .2s ease;
}
.fs-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--fs-shadow-glow);
    color: white !important;
}

.fs-mobile-toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--fs-surface-2);
    border: 0;
    color: var(--fs-text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
.fs-section { padding: 110px 0; position: relative; }
.fs-section-sm { padding: 60px 0; }
.fs-section-soft { background: var(--fs-surface-1); }
.fs-section-title { text-align: center; margin-bottom: 60px; }
.fs-eyebrow {
    display: inline-block;
    padding: 7px 16px;
    background: var(--fs-surface-2);
    color: var(--fs-primary);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.fs-section-title h2 {
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 0 0 14px;
    line-height: 1.1;
    color: var(--fs-text);
}
.fs-section-title h2 .grad {
    background: var(--fs-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.fs-section-title p {
    font-size: 18px;
    color: var(--fs-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.fs-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--fs-gradient-hero);
}
.fs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 85% 20%, rgba(0,40,142,0.10), transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 10%, rgba(255,183,125,0.15), transparent 60%);
    pointer-events: none;
}
.fs-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 60px;
}
.fs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--fs-surface);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fs-text-soft);
    margin-bottom: 24px;
    box-shadow: var(--fs-shadow-sm);
}
.fs-hero-badge-pill {
    padding: 3px 10px;
    background: var(--fs-gold);
    color: #4A2500;
    border-radius: 999px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
}
.fs-hero h1 {
    font-size: clamp(36px, 5.6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 900;
    margin: 0 0 24px;
    color: var(--fs-text);
}
.fs-hero h1 .grad {
    background: var(--fs-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.fs-hero p.lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--fs-text-soft);
    max-width: 540px;
    margin: 0 0 36px;
}
.fs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.fs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15.5px;
    cursor: pointer;
    border: 0;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    font-family: inherit;
}
.fs-btn-primary {
    background: var(--fs-gradient);
    color: white !important;
    box-shadow: var(--fs-shadow);
}
.fs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--fs-shadow-glow);
    color: white !important;
}
.fs-btn-secondary {
    background: var(--fs-surface);
    color: var(--fs-text) !important;
    box-shadow: var(--fs-shadow-sm);
}
.fs-btn-secondary:hover {
    background: var(--fs-surface-2);
    transform: translateY(-1px);
}
.fs-btn-gold {
    background: linear-gradient(135deg, #FFB77D 0%, #FF9A4C 100%);
    color: #4A2500 !important;
    box-shadow: var(--fs-shadow-gold);
}

.fs-hero-meta {
    margin-top: 36px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--fs-text-muted);
    font-size: 14px;
}
.fs-hero-meta-item { display: flex; align-items: center; gap: 8px; }
.fs-hero-meta-item svg { flex-shrink: 0; color: var(--fs-primary); }

/* ── 3 PHONE MOCKUP ────────────────────────────────────────────────────── */
.fs-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 640px;
    padding: 20px 0;
}

.fs-phone {
    position: absolute;
    width: 240px;
    height: 500px;
    background: #fff;
    border-radius: 36px;
    padding: 6px;
    box-shadow:
        0 40px 80px -20px rgba(0, 40, 142, 0.28),
        0 20px 50px -10px rgba(20, 27, 43, 0.15);
    transition: transform .4s ease;
}
.fs-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--fs-bg);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding: 46px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fs-phone-screen::before {
    content: '';
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 85px; height: 20px;
    background: #141B2B;
    border-radius: 20px;
}

/* Phone positions */
.fs-phone-left {
    transform: rotate(-7deg) translate(-130px, 30px) scale(0.88);
    z-index: 1;
}
.fs-phone-center {
    transform: translateY(-8px) scale(1);
    z-index: 3;
}
.fs-phone-right {
    transform: rotate(7deg) translate(130px, 30px) scale(0.88);
    z-index: 1;
}

.fs-hero-visual:hover .fs-phone-left  { transform: rotate(-9deg) translate(-140px, 20px) scale(0.88); }
.fs-hero-visual:hover .fs-phone-right { transform: rotate(9deg)  translate(140px, 20px)  scale(0.88); }

/* ── Phone — Home screen ──────────────────────────── */
.fs-p-header { display: flex; justify-content: space-between; align-items: center; padding: 2px 4px; }
.fs-p-greet { font-size: 9px; color: var(--fs-text-muted); }
.fs-p-name { font-size: 14px; font-weight: 700; color: var(--fs-text); letter-spacing: -0.01em; }
.fs-p-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--fs-gradient); display: grid; place-items: center; color: white; font-size: 11px; font-weight: 700; }

.fs-p-balance {
    background: var(--fs-gradient);
    padding: 14px;
    border-radius: 18px;
    color: white;
    box-shadow: 0 8px 18px -4px rgba(0, 40, 142, 0.45);
    position: relative;
    overflow: hidden;
}
.fs-p-balance::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.fs-p-balance-label { font-size: 9px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; position: relative; }
.fs-p-balance-amount { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; position: relative; }
.fs-p-balance-btn {
    background: rgba(255,255,255,0.24);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    backdrop-filter: blur(6px);
    position: relative;
}

.fs-p-stat-row { display: flex; gap: 6px; }
.fs-p-stat {
    flex: 1;
    background: var(--fs-surface-2);
    padding: 8px 10px;
    border-radius: 12px;
}
.fs-p-stat-label { font-size: 9px; color: var(--fs-text-muted); }
.fs-p-stat-value { font-size: 13px; font-weight: 700; color: var(--fs-text); margin-top: 2px; letter-spacing: -0.01em; }

.fs-p-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--fs-surface);
    border-radius: 10px;
    box-shadow: var(--fs-shadow-sm);
}
.fs-p-list-icon {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: var(--fs-primary-tint);
    color: var(--fs-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 11px;
}
.fs-p-list-icon.gold { background: var(--fs-gold-soft); color: #7A3900; }
.fs-p-list-text { flex: 1; font-size: 10px; font-weight: 600; color: var(--fs-text); }
.fs-p-list-text small { display: block; font-weight: 400; color: var(--fs-text-muted); font-size: 9px; margin-top: 1px; }
.fs-p-list-value { font-size: 11px; font-weight: 700; color: var(--fs-primary); }
.fs-p-list-value.pos { color: #16A34A; }

/* ── Phone — Payout screen ──────────────────────────── */
.fs-p-title { font-size: 13px; font-weight: 700; color: var(--fs-text); letter-spacing: -0.01em; padding: 0 2px; }

.fs-p-amount-card {
    background: var(--fs-surface);
    padding: 16px 12px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--fs-shadow-sm);
}
.fs-p-amount-label { font-size: 9px; color: var(--fs-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.fs-p-amount-value { font-size: 28px; font-weight: 800; color: var(--fs-primary); letter-spacing: -0.03em; }
.fs-p-amount-value small { font-size: 14px; opacity: 0.7; }

.fs-p-iban-card {
    background: var(--fs-surface-2);
    padding: 10px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fs-p-iban-logo {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--fs-gradient);
    display: grid; place-items: center;
    color: white; font-size: 12px; font-weight: 800;
    flex-shrink: 0;
}
.fs-p-iban-meta { flex: 1; }
.fs-p-iban-bank { font-size: 11px; font-weight: 700; color: var(--fs-text); }
.fs-p-iban-number { font-size: 9px; color: var(--fs-text-muted); font-family: 'Courier New', monospace; margin-top: 1px; }

.fs-p-fee-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 4px;
    font-size: 10px;
    color: var(--fs-text-muted);
}
.fs-p-fee-row.net { font-weight: 700; color: var(--fs-text); font-size: 11px; padding-top: 10px; border-top: 1px dashed var(--fs-border); margin-top: 4px; }

.fs-p-cta {
    background: var(--fs-gradient);
    color: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: auto;
    box-shadow: 0 4px 10px -2px rgba(0,40,142,0.4);
}

/* ── Phone — Chat screen ──────────────────────────── */
.fs-p-chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 4px 8px;
    border-bottom: 1px solid var(--fs-border);
}
.fs-p-chat-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--fs-gradient);
    display: grid; place-items: center;
    color: white;
    flex-shrink: 0;
    font-size: 12px;
}
.fs-p-chat-meta { flex: 1; }
.fs-p-chat-name { font-size: 12px; font-weight: 700; color: var(--fs-text); }
.fs-p-chat-status { font-size: 9px; color: #16A34A; display: flex; align-items: center; gap: 3px; margin-top: 1px; }
.fs-p-chat-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16A34A; }

.fs-p-chat-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    padding: 4px 0;
}
.fs-p-bubble {
    max-width: 80%;
    padding: 7px 10px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.4;
}
.fs-p-bubble-user {
    align-self: flex-end;
    background: var(--fs-gradient);
    color: white;
    border-bottom-right-radius: 4px;
}
.fs-p-bubble-bot {
    align-self: flex-start;
    background: var(--fs-surface-2);
    color: var(--fs-text);
    border-bottom-left-radius: 4px;
}
.fs-p-bubble-typing {
    align-self: flex-start;
    background: var(--fs-surface-2);
    display: flex;
    gap: 3px;
    padding: 10px;
}
.fs-p-bubble-typing span {
    width: 5px; height: 5px;
    background: var(--fs-text-muted);
    border-radius: 50%;
    animation: fs-typing 1.4s infinite ease-in-out;
}
.fs-p-bubble-typing span:nth-child(2) { animation-delay: 0.2s; }
.fs-p-bubble-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes fs-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Floating hero elements */
.fs-hero-floater {
    position: absolute;
    background: var(--fs-surface);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-text);
    box-shadow: var(--fs-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fs-float 4s ease-in-out infinite;
    z-index: 10;
}
.fs-hero-floater-ok { top: 8%; left: 2%; }
.fs-hero-floater-chat { bottom: 10%; right: 2%; animation-delay: 1.5s; }
.fs-hero-floater-icon {
    width: 32px; height: 32px; border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.fs-hero-floater-icon.ok { background: #DCFCE7; color: #16A34A; }
.fs-hero-floater-icon.chat { background: var(--fs-primary-tint); color: var(--fs-primary); }
.fs-hero-floater small { font-size: 11px; color: var(--fs-text-muted); font-weight: 500; display: block; margin-top: 1px; }
@keyframes fs-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── TRUST STRIP ────────────────────────────────────── */
.fs-trust-strip {
    padding: 50px 0;
    background: var(--fs-surface);
    box-shadow: var(--fs-shadow-sm);
}
.fs-trust-strip-label {
    text-align: center;
    color: var(--fs-text-muted);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 26px;
    font-weight: 600;
}
.fs-trust-strip-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    color: var(--fs-text-muted);
}
.fs-trust-strip-logo {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .7;
    transition: opacity .2s ease, color .2s ease;
}
.fs-trust-strip-logo:hover { opacity: 1; color: var(--fs-primary); }
.fs-trust-strip-logo i { color: var(--fs-primary); }

/* ── MODULES GRID ─────────────────────────────────────── */
.fs-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.fs-module-card {
    position: relative;
    padding: 32px 28px;
    background: var(--fs-surface);
    border-radius: var(--fs-radius-lg);
    transition: transform .25s ease, box-shadow .3s ease;
    box-shadow: var(--fs-shadow-sm);
}
.fs-module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fs-shadow-lg);
}
.fs-module-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--fs-surface-2);
    color: var(--fs-primary);
    display: grid; place-items: center;
    margin-bottom: 22px;
    transition: transform .25s ease, background .25s ease;
}
.fs-module-card:hover .fs-module-icon {
    transform: scale(1.08) rotate(-4deg);
    background: var(--fs-gradient);
    color: white;
}
.fs-module-icon svg { width: 26px; height: 26px; }
.fs-module-card h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--fs-text);
}
.fs-module-card p {
    font-size: 14.5px;
    color: var(--fs-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── STATS ──────────────────────────────────────────── */
.fs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 56px 40px;
    background: var(--fs-gradient);
    border-radius: var(--fs-radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--fs-shadow-glow);
}
.fs-stats-grid::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    pointer-events: none;
}
.fs-stat { text-align: center; position: relative; }
.fs-stat-value {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: white;
    line-height: 1;
}
.fs-stat-value small { font-size: 0.6em; opacity: 0.85; }
.fs-stat-label { color: rgba(255,255,255,0.85); margin-top: 10px; font-weight: 500; font-size: 14px; }

/* ── SECURITY ───────────────────────────────────────── */
.fs-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.fs-feature-item {
    display: flex; gap: 16px;
    padding: 24px;
    background: var(--fs-surface);
    border-radius: var(--fs-radius);
    box-shadow: var(--fs-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.fs-feature-item:hover { transform: translateY(-2px); box-shadow: var(--fs-shadow); }
.fs-feature-item-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: #DCFCE7; color: #16A34A;
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 18px;
}
.fs-feature-item h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; color: var(--fs-text); }
.fs-feature-item p { margin: 0; font-size: 14px; color: var(--fs-text-muted); line-height: 1.55; }

/* ── INTEGRATIONS ──────────────────────────────────── */
.fs-integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.fs-integration {
    padding: 24px;
    background: var(--fs-surface);
    border-radius: var(--fs-radius);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: var(--fs-shadow-sm);
}
.fs-integration:hover { transform: translateY(-3px); box-shadow: var(--fs-shadow); color: var(--fs-text); }
.fs-integration-logo {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--fs-gradient);
    color: white;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--fs-shadow-sm);
}
.fs-integration-info h4 { margin: 0; font-size: 15px; font-weight: 700; color: var(--fs-text); }
.fs-integration-info p { margin: 3px 0 0; font-size: 13px; color: var(--fs-text-muted); }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.fs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fs-testimonial {
    padding: 32px;
    background: var(--fs-surface);
    border-radius: var(--fs-radius-lg);
    box-shadow: var(--fs-shadow-sm);
    transition: transform .25s ease, box-shadow .3s ease;
}
.fs-testimonial:hover { transform: translateY(-3px); box-shadow: var(--fs-shadow); }
.fs-testimonial-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 16px; font-size: 14px; }
.fs-testimonial p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--fs-text-soft);
}
.fs-testimonial-author { display: flex; align-items: center; gap: 12px; }
.fs-testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--fs-gradient);
    display: grid; place-items: center;
    color: white; font-weight: 700; font-size: 16px;
}
.fs-testimonial-author-name { font-weight: 700; font-size: 15px; color: var(--fs-text); }
.fs-testimonial-author-role { font-size: 12.5px; color: var(--fs-text-muted); margin-top: 1px; }

/* ── CTA BANNER ─────────────────────────────────────── */
.fs-cta {
    padding: 80px 60px;
    background: var(--fs-gradient);
    border-radius: var(--fs-radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: var(--fs-shadow-glow);
}
.fs-cta::before {
    content: '';
    position: absolute;
    top: -60%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,183,125,0.25), transparent 60%);
    pointer-events: none;
}
.fs-cta::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 65%);
    pointer-events: none;
}
.fs-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    color: white;
    position: relative;
}
.fs-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 34px;
    position: relative;
}
.fs-cta .fs-btn-primary {
    background: white;
    color: var(--fs-primary) !important;
    position: relative;
}
.fs-cta .fs-btn-primary:hover { background: var(--fs-surface-2); color: var(--fs-primary) !important; }
.fs-cta .fs-btn-secondary {
    background: rgba(255,255,255,0.16);
    color: white !important;
    backdrop-filter: blur(6px);
    box-shadow: none;
    position: relative;
}
.fs-cta .fs-btn-secondary:hover { background: rgba(255,255,255,0.24); }

/* ── FOOTER ─────────────────────────────────────────── */
.fs-footer {
    padding: 80px 0 30px;
    background: var(--fs-surface-1);
}
.fs-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 50px;
}
.fs-footer-brand p {
    color: var(--fs-text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 18px 0 0;
    max-width: 360px;
}
.fs-footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--fs-text);
    font-weight: 700;
    margin: 0 0 18px;
}
.fs-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fs-footer-col a { color: var(--fs-text-soft); font-size: 14.5px; transition: color .15s ease; }
.fs-footer-col a:hover { color: var(--fs-primary); }
.fs-footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--fs-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--fs-text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
}
.fs-social { display: flex; gap: 10px; }
.fs-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--fs-surface);
    color: var(--fs-text-soft);
    box-shadow: var(--fs-shadow-sm);
    transition: color .2s ease, transform .2s ease, background .2s ease;
}
.fs-social a:hover { color: white; background: var(--fs-gradient); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════
   LEGACY SUPPORT — Blog / Galeri / Service / Page default view class'lari
   Tema CSS'i uygulanabilsin diye eski class'lara tema-uyumlu stil
   ═══════════════════════════════════════════════════════════════════════ */
.page-header {
    position: relative;
    padding: 140px 0 50px;
    background: var(--fs-gradient-hero);
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 85% 20%, rgba(0,40,142,0.10), transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 10%, rgba(255,183,125,0.12), transparent 60%);
    pointer-events: none;
}
.page-header > .container { position: relative; }
.page-header h1, .page-header .page-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.035em;
    margin: 0 0 16px;
    line-height: 1.1;
    color: var(--fs-text);
}
.page-header .page-subtitle {
    font-size: 18px;
    color: var(--fs-text-soft);
    max-width: 760px;
    margin: 0;
    line-height: 1.55;
}
.page-header .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--fs-text-muted);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: var(--fs-border);
}
.page-header .breadcrumb-item a { color: var(--fs-text-muted); }
.page-header .breadcrumb-item a:hover { color: var(--fs-primary); }
.page-header .breadcrumb-item.active { color: var(--fs-text); font-weight: 600; }

.section-padding { padding: 80px 0; }
.section-bg { background: var(--fs-surface-1); }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    color: var(--fs-text);
}
.section-title p {
    font-size: 17px;
    color: var(--fs-text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Cards (blog, gallery, service default views) */
.blog-card, .gallery-card, .service-card, .post-card {
    background: var(--fs-surface);
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow-sm);
    transition: transform .25s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover, .gallery-card:hover, .service-card:hover, .post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fs-shadow);
}
.blog-card img, .gallery-card img, .service-card img, .post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-body, .service-card-body, .post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3, .service-card h3, .post-card h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--fs-text);
    line-height: 1.3;
}
.blog-card h3 a, .service-card h3 a, .post-card h3 a { color: inherit; }
.blog-card h3 a:hover, .service-card h3 a:hover, .post-card h3 a:hover { color: var(--fs-primary); }
.blog-card p, .service-card p, .post-card p {
    font-size: 14.5px;
    color: var(--fs-text-muted);
    margin: 0 0 14px;
    line-height: 1.6;
}
.blog-card-meta, .post-meta {
    font-size: 12.5px;
    color: var(--fs-text-muted);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--fs-border);
}
.blog-card-meta i, .post-meta i { color: var(--fs-primary); margin-right: 4px; }
.blog-card-category, .post-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--fs-surface-2);
    color: var(--fs-primary);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Gallery album grid */
.album-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow-sm);
    transition: transform .25s ease, box-shadow .3s ease;
}
.album-card:hover { transform: translateY(-4px); box-shadow: var(--fs-shadow); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.album-card:hover img { transform: scale(1.05); }
.album-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,40,142,0.9) 100%);
    color: white;
}
.album-card-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}
.album-card-meta { font-size: 12.5px; opacity: 0.9; }

/* Pagination */
.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    justify-content: center;
}
.pagination .page-item a, .pagination .page-link {
    display: grid; place-items: center;
    min-width: 40px; height: 40px;
    padding: 0 12px;
    background: var(--fs-surface);
    color: var(--fs-text-soft);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--fs-shadow-sm);
    transition: background .15s ease, color .15s ease;
    border: 0;
}
.pagination .page-item a:hover, .pagination .page-link:hover { background: var(--fs-surface-2); color: var(--fs-primary); }
.pagination .page-item.active .page-link, .pagination .page-item.active a {
    background: var(--fs-gradient);
    color: white;
}
.pagination .page-item.disabled .page-link, .pagination .page-item.disabled a { opacity: 0.4; pointer-events: none; }

/* Bootstrap btn fallbacks (blog/galeri'de btn, btn-primary vb. kullanıyor olabilir) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    font-family: inherit;
    transition: transform .15s ease, box-shadow .2s ease;
}
.btn-primary, .btn-pf-primary {
    background: var(--fs-gradient);
    color: white !important;
    box-shadow: var(--fs-shadow-sm);
}
.btn-primary:hover, .btn-pf-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--fs-shadow);
    color: white !important;
}
.btn-secondary, .btn-outline-primary, .btn-pf-secondary {
    background: var(--fs-surface);
    color: var(--fs-text) !important;
    box-shadow: var(--fs-shadow-sm);
}
.btn-secondary:hover, .btn-outline-primary:hover, .btn-pf-secondary:hover {
    background: var(--fs-surface-2);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--fs-surface-2);
    color: var(--fs-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* Generic h1/h2/h3 on light bg */
.content-area h1, .content-area h2, .content-area h3 { color: var(--fs-text); }
.content-area p { color: var(--fs-text-soft); }
.content-area a { color: var(--fs-primary); }

/* ── LIGHTBOX (Bootstrap Modal tema override) ─────── */
.modal-content.bg-dark {
    background: rgba(2, 6, 23, 0.96) !important;
    border-radius: var(--fs-radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}
.modal-backdrop { backdrop-filter: blur(8px); }
.lightbox-nav {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(8px);
    font-size: 20px !important;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.24) !important; }

.gallery-thumb-wrap {
    border-radius: var(--fs-radius) !important;
    box-shadow: var(--fs-shadow-sm);
}
.gallery-thumb-wrap:hover {
    box-shadow: var(--fs-shadow);
}
.gallery-thumb-overlay {
    border-radius: var(--fs-radius) !important;
    background: rgba(0, 40, 142, 0.45) !important;
}


/* ── ANIMATIONS ─────────────────────────────────────── */
.fs-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fs-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1080px) {
    .fs-phone-left  { transform: rotate(-6deg) translate(-110px, 30px) scale(0.85); }
    .fs-phone-right { transform: rotate(6deg)  translate(110px, 30px)  scale(0.85); }
}
@media (max-width: 960px) {
    .fs-hero { padding: 130px 0 80px; }
    .fs-hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .fs-hero-visual { min-height: 560px; }
    .fs-modules-grid { grid-template-columns: repeat(2, 1fr); }
    .fs-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; padding: 36px 24px; }
    .fs-feature-list { grid-template-columns: 1fr; }
    .fs-testimonials-grid { grid-template-columns: 1fr; }
    .fs-footer-grid { grid-template-columns: 1fr 1fr; }
    .fs-footer-brand { grid-column: 1 / -1; }
    .fs-nav-inner { gap: 8px; }
    .fs-brand span:last-child { display: none; }    /* "FleetSquare" texti gizle, sadece ikon kalsın */
    .fs-nav-cta { display: none !important; }        /* "Demo Talep Et" butonu gizle */
    .fs-nav .navbar-nav { display: none; }
    .fs-nav.mobile-open .navbar-nav {
        display: flex;
        position: absolute;
        top: 76px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px 22px;
        background: var(--fs-surface);
        box-shadow: var(--fs-shadow);
        gap: 2px;
    }
    .fs-nav.mobile-open .dropdown-menu { position: static; opacity: 1; transform: none; display: block; background: transparent; box-shadow: none; padding: 4px 0 4px 16px; }
    .fs-mobile-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
    .fs-hero-visual { min-height: 480px; }
    .fs-phone { width: 200px; height: 420px; }
    .fs-phone-left  { transform: rotate(-6deg) translate(-80px, 20px) scale(0.8); }
    .fs-phone-right { transform: rotate(6deg)  translate(80px, 20px)  scale(0.8); }
    .fs-phone-center { transform: scale(0.9); }
}
@media (max-width: 560px) {
    .fs-modules-grid { grid-template-columns: 1fr; }
    .fs-section { padding: 72px 0; }
    .fs-cta { padding: 54px 24px; }
    .fs-footer-grid { grid-template-columns: 1fr; }
    .fs-hero-floater-ok { left: 4%; top: 5%; }
    .fs-hero-floater-chat { right: 4%; bottom: 5%; }
    .fs-hero-visual { min-height: 420px; }
    .fs-phone { width: 180px; height: 380px; }
    .fs-phone-left, .fs-phone-right { display: none; }
    .fs-phone-center { transform: scale(1); }
}
