/* ============================================================
   SHOPPI BUSINESS — MODERN REDESIGN
   Premium, clean aesthetic with glassmorphism and smooth animations
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bus-primary: #FF4B6E;
    --bus-secondary: #4361ee;
    --bus-dark: #0f172a;
    --bus-slate: #1e293b;
    --bus-light: #f8fafc;
    --bus-text: #334155;
    --bus-text-muted: #64748b;
    --bus-white: #ffffff;
    --bus-gradient: linear-gradient(135deg, #FF4B6E 0%, #FF8E53 100%);
    --bus-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --bus-radius: 24px;
    --bus-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--bus-text);
    background-color: var(--bus-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--bus-dark);
    font-weight: 700;
}

/* — Navbar — */
.topbar-primary {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.topbar-primary .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-primary .navbar-brand img {
    height: 32px;
    width: auto;
    display: block;
}

.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
}

.nav-item {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-link {
    font-weight: 600;
    color: var(--bus-dark) !important;
    font-size: 15px;
    padding: 8px 20px !important;
    text-decoration: none !important;
    display: block;
    transition: var(--bus-transition);
}

.nav-link:hover {
    color: var(--bus-primary) !important;
}

.navbar-toggler {
    display: none !important;
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--bus-dark);
    padding: 5px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }

    .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-collapse.show,
    .navbar-collapse.collapse.show {
        display: flex !important;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .nav-link {
        padding: 12px !important;
    }
}

.btn-red {
    background: var(--bus-gradient);
    border: none;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 75, 110, 0.3);
    transition: var(--bus-transition);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 75, 110, 0.4);
}

/* — Hero Section — */
.hero-solution {
    padding: 100px 0 80px;
    background: radial-gradient(circle at top right, rgba(255, 75, 110, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(67, 97, 238, 0.05), transparent);
    overflow: hidden;
}

.hero-solution h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-solution .caption p {
    font-size: 18px;
    color: var(--bus-text-muted);
    margin-bottom: 30px;
}

.hero-solution .showcase img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
}

#business-reg {
    background: white;
    padding: 30px;
    border-radius: var(--bus-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#business-reg .form-control {
    background: var(--bus-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

#business-reg .form-control:focus {
    box-shadow: 0 0 0 4px rgba(255, 75, 110, 0.1);
    border-color: var(--bus-primary);
}

/* — General Sections — */
.inner-section {
    padding: 100px 0;
}

.inner-section h2 {
    font-size: 42px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* — Marketplace Section — */
.marketplace {
    background-color: var(--bus-light);
}

.marketplace .caption {
    padding-left: 50px;
}

.btn-o-red {
    border: 2px solid var(--bus-primary);
    color: var(--bus-primary);
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-o-red:hover {
    background: var(--bus-primary);
    color: white;
}

/* — Product Awareness — */
.product-awareness {
    background: #fff;
}

.nav-product {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.nav-product li {
    margin-bottom: 15px;
}

.nav-product a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bus-light);
    border-radius: 12px;
    color: var(--bus-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--bus-transition);
}

.nav-product a:hover {
    background: var(--bus-white);
    box-shadow: var(--bus-shadow);
    transform: translateX(5px);
}

.nav-product i {
    color: var(--bus-primary);
}

/* — Start Selling — */
.start-selling {
    background-color: var(--bus-dark);
    color: white;
    border-radius: 40px;
    margin: 0 20px;
}

.start-selling h2,
.start-selling h3 {
    color: white;
}

.red-box {
    background: var(--bus-gradient);
    padding: 40px;
    border-radius: var(--bus-radius);
}

.selling ul {
    list-style: none;
    padding: 0;
}

.selling li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.selling i.icon-check {
    color: var(--bus-primary);
}

/* — FAQ Section — */
.faq {
    background: var(--bus-light);
}

.faq .card {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq .card-header {
    background: white;
    border: none;
    padding: 10px 20px;
}

.faq .btn-link {
    width: 100%;
    text-align: left;
    font-weight: 700;
    color: var(--bus-dark) !important;
    /* Fix for visibility bug */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.faq .btn-link img,
.faq .btn-link i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--bus-primary);
}

/* — Responsive — */
@media (max-width: 991px) {
    .hero-solution h1 {
        font-size: 42px;
    }

    .marketplace .caption {
        padding-left: 0;
        margin-top: 40px;
    }

    .inner-section {
        padding: 60px 0;
    }
}