/* ============================================
   VOCAL SERVICES - Feuille de style principale
   ============================================ */

:root {
    --vs-primary: #0d6efd;
    --vs-accent: #ff5a1f;
    --vs-dark: #0a0f1e;
    --vs-dark-2: #111827;
    --vs-card-radius: 16px;
    --vs-font: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--vs-font);
    background: #f8fafc;
    color: #1e293b;
}

/* ---- UTILS ---- */
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.text-accent { color: var(--vs-accent) !important; }
.btn-accent {
    background: var(--vs-accent);
    border-color: var(--vs-accent);
    color: #fff;
}
.btn-accent:hover {
    background: #e04a10;
    border-color: #e04a10;
    color: #fff;
}
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.min-vh-75 { min-height: 75vh; }

/* ---- LOGO ---- */
.vs-logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--vs-accent), #ff8c5a);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255,90,31,.35);
}
.vs-logo-icon.small { width: 32px; height: 32px; font-size: .95rem; border-radius: 8px; }

/* ---- NAVBAR ---- */
.vs-navbar {
    background: rgba(10,15,30,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 14px 0;
}
.vs-navbar .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-weight: 500;
    font-size: .9rem;
    border-radius: 8px;
    transition: all .2s;
}
.vs-navbar .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.08); }

/* ---- HERO ---- */
.vs-hero {
    background: var(--vs-dark);
    min-height: 90vh;
    display: flex; align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}
.vs-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(13,110,253,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,90,31,.12) 0%, transparent 60%);
}
.vs-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.vs-hero-sub { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 520px; }
.vs-badge-pill {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.8);
    padding: 8px 18px; border-radius: 50px;
    font-size: .85rem; font-weight: 500;
}
.vs-stat-mini { display: flex; flex-direction: column; }
.vs-stat-mini strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.vs-stat-mini span { font-size: .75rem; color: rgba(255,255,255,.5); }

/* Hero Visual Cards */
.vs-hero-visual {
    position: relative; width: 420px; height: 420px;
    display: flex; align-items: center; justify-content: center;
}
.vs-hero-center {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px; padding: 30px;
    text-align: center; backdrop-filter: blur(10px);
    width: 180px;
}
.vs-hero-card {
    position: absolute;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 14px 18px;
    backdrop-filter: blur(12px);
    display: flex; align-items: center; gap: 12px;
    min-width: 220px;
    animation: float 4s ease-in-out infinite;
}
.vs-hero-card.floating-1 { top: 20px; left: -20px; animation-delay: 0s; }
.vs-hero-card.floating-2 { bottom: 60px; left: -30px; animation-delay: 1.5s; }
.vs-hero-card.floating-3 { top: 50%; right: -30px; animation-delay: .8s; }
.vs-hcard-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .9rem; flex-shrink: 0;
}
.vs-hero-card .fw-600 { color: #fff; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---- SECTION ---- */
.vs-section-badge {
    display: inline-block;
    background: #0d6efd18; color: var(--vs-primary);
    padding: 5px 16px; border-radius: 50px;
    font-size: .8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
}
.vs-section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800; color: #0f172a;
}

/* ---- CATEGORY CARDS ---- */
.vs-cat-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--vs-card-radius);
    padding: 28px;
    transition: all .25s;
}
.vs-cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); border-color: transparent; }
.vs-cat-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.vs-link-arrow { font-size: .85rem; font-weight: 600; }

/* ---- SERVICE CARDS ---- */
.vs-service-card {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: var(--vs-card-radius); padding: 24px;
    transition: all .25s;
}
.vs-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.vs-svc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.vs-svc-icon.sm { width: 38px; height: 38px; font-size: 1rem; border-radius: 10px; }
.vs-svc-icon.lg { width: 64px; height: 64px; font-size: 1.6rem; border-radius: 16px; }
.vs-price-tag {
    background: #f8fafc; border-radius: 8px; padding: 8px 12px;
    font-size: .8rem;
}
.vs-service-card-list {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 12px; padding: 18px;
    transition: all .2s;
}
.vs-service-card-list:hover { border-color: var(--vs-primary); box-shadow: 0 4px 16px rgba(13,110,253,.1); }

/* ---- WHY SECTION ---- */
.vs-why-section { background: #fff; }
.vs-avantage-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px; border-radius: 12px; background: #f8fafc;
    border: 1px solid #e2e8f0; transition: all .2s;
}
.vs-avantage-card:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.vs-avantage-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

/* ---- TESTIMONIALS ---- */
.vs-temoignage-card {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: var(--vs-card-radius); padding: 28px;
    transition: all .2s;
}
.vs-temoignage-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.vs-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--vs-primary), #6610f2);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.vs-avatar.sm { width: 36px; height: 36px; font-size: .75rem; }
.vs-avatar.xl { width: 80px; height: 80px; font-size: 1.8rem; }

/* ---- CTA SECTION ---- */
.vs-cta-section {
    background: linear-gradient(135deg, var(--vs-dark), #1a2744);
    position: relative; overflow: hidden;
}
.vs-cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(13,110,253,.2) 0%, transparent 70%);
}
.vs-cta-inline {
    background: linear-gradient(135deg, #f0f7ff, #e8f0ff);
    border: 1px solid #c7d8f7;
    border-radius: var(--vs-card-radius); padding: 28px;
}

/* ---- PAGE HERO ---- */
.vs-page-hero {
    background: var(--vs-dark-2);
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.vs-page-hero h1 { color: #fff; }
.vs-page-hero .breadcrumb { margin-bottom: 12px; }
.vs-page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.vs-page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.vs-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ---- FILTER BAR ---- */
.vs-filter-bar {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.vs-filter-btn {
    display: inline-flex; align-items: center;
    padding: 8px 18px; border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #fff; color: #64748b;
    font-size: .85rem; font-weight: 600;
    text-decoration: none; transition: all .2s;
}
.vs-filter-btn:hover { border-color: var(--vs-primary); color: var(--vs-primary); }
.vs-filter-btn.active { background: var(--vs-primary); border-color: var(--vs-primary); color: #fff; }

/* ---- CONTACT ---- */
.vs-contact-info-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 12px;
}
.vs-contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

/* ---- PRICING ---- */
.vs-pricing-display { padding: 16px; background: #f8fafc; border-radius: 12px; margin-bottom: 12px; }

/* ---- SERVICE DESCRIPTION ---- */
.vs-service-description p { color: #64748b; }
.vs-service-description ul { padding-left: 1.2rem; }
.vs-service-description ul li { color: #64748b; margin-bottom: 6px; }

/* ---- NUMBERS ---- */
.vs-number-card {
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 12px; padding: 18px; text-align: center;
}
.vs-number { font-size: 2rem; font-weight: 800; color: var(--vs-primary); font-family: 'Syne', sans-serif; }

/* ---- TEAM ---- */
.vs-team-card { padding: 20px; border-radius: 12px; background: #f8fafc; border: 1px solid #e2e8f0; transition: all .2s; }
.vs-team-card:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.vs-team-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }

/* ---- AUTH ---- */
.vs-auth-body { background: #f1f5f9; min-height: 100vh; display: flex; align-items: stretch; }
.vs-auth-split { display: flex; width: 100%; min-height: 100vh; }
.vs-auth-left {
    width: 45%;
    background: linear-gradient(145deg, #0a0f1e, #0d3a6e);
    flex-direction: column; justify-content: center; align-items: center;
    padding: 60px 50px;
    position: relative; overflow: hidden;
}
.vs-auth-left::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 30% 70%, rgba(255,90,31,.15) 0%, transparent 60%);
}
.vs-auth-left-content { position: relative; z-index: 1; max-width: 380px; }
.vs-auth-right {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 40px 30px; background: #fff;
}
.vs-auth-form-wrap { width: 100%; max-width: 420px; }
.vs-auth-feature-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--vs-accent); flex-shrink: 0;
}
.vs-auth-plan-card {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 20px;
}
.vs-form-input { border-radius: 10px !important; padding: 12px 16px !important; border-color: #e2e8f0 !important; }
.vs-form-input:focus { border-color: var(--vs-primary) !important; box-shadow: 0 0 0 3px rgba(13,110,253,.12) !important; }
.vs-input-icon {
    background: #f8fafc; border-color: #e2e8f0;
    color: #94a3b8; border-radius: 0 !important;
}
.vs-auth-divider { text-align: center; position: relative; margin: 20px 0; }
.vs-auth-divider::before {
    content: ''; position: absolute;
    top: 50%; left: 0; right: 0; height: 1px; background: #e2e8f0;
}
.vs-auth-divider span {
    position: relative; background: #fff;
    padding: 0 12px; color: #94a3b8; font-size: .8rem;
}
.vs-type-toggle { display: flex; border: 1.5px solid #e2e8f0; border-radius: 10px; overflow: hidden; }
.vs-type-btn {
    flex: 1; padding: 10px; border: none; background: #fff;
    color: #64748b; font-weight: 600; font-size: .85rem;
    cursor: pointer; transition: all .2s;
}
.vs-type-btn.active { background: var(--vs-primary); color: #fff; }
.text-white-70 { color: rgba(255,255,255,.7) !important; }

/* ---- FOOTER ---- */
.vs-footer { background: #0a0f1e; border-top: 1px solid rgba(255,255,255,.06); }
.vs-footer-links { }
.vs-footer-links li { margin-bottom: 8px; }
.vs-footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .9rem; transition: color .2s; }
.vs-footer-links a:hover { color: #fff; }
.vs-social-link {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .95rem; text-decoration: none;
    transition: all .2s;
}
.vs-social-link:hover { background: var(--vs-accent); border-color: var(--vs-accent); color: #fff; }

/* ---- CAT BADGE LG ---- */
.vs-cat-badge-lg {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .vs-auth-right { padding: 30px 20px; }
    .vs-hero { padding: 80px 0 40px; }
    .py-6 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}
