/**
 * BovaSMM-style Frontend - NetContacts
 * Replicates https://bovasmm.com/ design
 */

:root {
    --bovasmm-primary: #2563eb;
    --bovasmm-primary-dark: #1d4ed8;
    --bovasmm-blue-light: #eff6ff;
    --bovasmm-blue-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    --bovasmm-dark-blue: #1e3a5f;
    --bovasmm-footer-bg: #0f172a;
    --bovasmm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Page content variables (for migrated frontend pages) */
    --primary-color: #198754;
    --primary-dark: #0d6e3f;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 4px 12px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --font-family: var(--bovasmm-font);
    --card-bg: #fff;
    --primary-light: rgba(25,135,84,0.1);
    --transition: all 0.3s ease;
}

/* Page content styles (for migrated frontend pages) */
.nc-page, .nc-howto-page, .nc-marketplace-page { padding-bottom: 20px; }
.page-hero, .howto-hero, .mp-hero {
    border-radius: var(--border-radius-lg);
    padding: 28px 24px;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
}
.page-hero h1, .howto-hero h1, .mp-hero h1 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.page-hero p, .howto-hero p, .mp-hero p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }
.page-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}
.page-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}
.page-cta {
    background: linear-gradient(135deg, #198754, #0a5c34);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    text-align: center;
    color: #fff;
}
.page-cta h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.page-cta p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--primary-color); }

/* How-to detail page styles */
.nc-howto-detail { padding-bottom: 20px; }
.howto-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--gray-600);
    text-decoration: none; margin-bottom: 16px; transition: all 0.2s ease;
}
.howto-back:hover { color: var(--primary-color); }
.howto-detail-hero {
    background: linear-gradient(135deg, #198754, #0d6e3f);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.howto-detail-hero-text { flex: 1; color: #fff; }
.howto-detail-hero-img {
    flex-shrink: 0; width: 200px; height: 140px;
    border-radius: 10px; overflow: hidden;
}
.howto-detail-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.howto-badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 20px; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px;
}
.howto-badge.paid { background: rgba(255,215,0,0.2); color: #ffd700; }
.howto-badge.free { background: rgba(255,255,255,0.2); color: #fff; }
.howto-detail-hero h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.howto-detail-hero p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; margin: 0; }
.howto-section {
    background: #fff; border-radius: var(--border-radius-lg);
    padding: 24px; margin-bottom: 16px;
    box-shadow: var(--box-shadow); border: 1px solid var(--gray-200);
}
.howto-section h2 {
    font-size: 17px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}
.howto-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.howto-feature {
    padding: 16px; border-radius: 10px;
    border: 1px solid var(--gray-100); transition: all 0.25s ease;
}
.howto-feature:hover { border-color: var(--gray-200); background: #fafafa; }
.howto-feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.howto-feature-icon.green { background: rgba(25,135,84,0.1); color: #198754; }
.howto-feature-icon.green svg { stroke: #198754; }
.howto-feature-icon.gold { background: rgba(245,158,11,0.1); color: #f59e0b; }
.howto-feature-icon.gold svg { stroke: #f59e0b; }
.howto-feature-icon.blue { background: rgba(14,165,233,0.1); color: #0ea5e9; }
.howto-feature-icon.blue svg { stroke: #0ea5e9; }
.howto-feature-icon.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.howto-feature-icon.purple svg { stroke: #8b5cf6; }
.howto-feature h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.howto-feature p { font-size: 13px; color: var(--gray-600); margin: 0; line-height: 1.5; }
.howto-step {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid var(--gray-100);
}
.howto-step:last-child { border-bottom: none; }
.howto-step-num {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 50%; background: var(--primary-color); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.howto-step h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.howto-step p { font-size: 13px; color: var(--gray-600); margin: 0; line-height: 1.5; }
.howto-pricing-box {
    background: linear-gradient(135deg, #198754, #0d6e3f) !important;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    border: none !important;
}
.howto-pricing-box h2 { display: none; }
.howto-price-wrap { color: #fff; }
.howto-price-label { font-size: 12px; color: rgba(255,255,255,0.7); display: block; }
.howto-price { font-size: 36px; font-weight: 700; color: #fff; line-height: 1.2; }
.howto-price-note { font-size: 12px; color: rgba(255,255,255,0.6); display: block; margin-top: 2px; }
.howto-cta-btn {
    display: inline-block; padding: 14px 32px;
    background: #fff; color: var(--primary-color);
    border-radius: 10px; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease;
}
.howto-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
@media (max-width: 768px) {
    .howto-detail-hero { flex-direction: column; text-align: center; }
    .howto-detail-hero-img { width: 100%; height: 160px; }
    .howto-features-grid { grid-template-columns: 1fr; }
    .howto-pricing-box { flex-direction: column; text-align: center; }
}

.bovasmm-body {
    font-family: var(--bovasmm-font);
    color: #1f2937;
    background: #fff;
}

/* Header: Bootstrap handles navbar; minimal hover enhancement */
.navbar .nav-link.text-dark:hover {
    color: var(--bs-success) !important;
}
.navbar .dropdown-item:hover {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--bs-success);
}

.bovasmm-btn-outline {
    border-color: var(--bovasmm-primary) !important;
    color: var(--bovasmm-primary) !important;
}

.bovasmm-btn-outline:hover {
    background: var(--bovasmm-primary) !important;
    color: #fff !important;
}

.bovasmm-btn-primary {
    background: var(--bovasmm-primary) !important;
    border-color: var(--bovasmm-primary) !important;
}

.bovasmm-btn-primary:hover {
    background: var(--bovasmm-primary-dark) !important;
    border-color: var(--bovasmm-primary-dark) !important;
}

/* Hero Section - z-index below header so dropdown overlays correctly */
.bovasmm-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bovasmm-hero::before {
    content: '';
    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='%232563eb' fill-opacity='0.05'%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");
    opacity: 0.5;
    pointer-events: none;
}

.bovasmm-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bovasmm-hero-desc {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.bovasmm-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.bovasmm-hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bovasmm-hero-features li i {
    color: var(--bovasmm-primary);
    font-size: 1.2rem;
}

.bovasmm-hero-users {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bovasmm-avatars {
    display: flex;
}

.bovasmm-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -12px;
}

.bovasmm-avatar-img:first-child { margin-left: 0; }

.bovasmm-hero-phone {
    margin-top: 1.5rem;
}

.bovasmm-phone-mockup {
    max-width: 280px;
    height: auto;
}

.bovasmm-users-text {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Login Card */
.bovasmm-login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 400px;
    margin-left: auto;
}

.bovasmm-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bovasmm-input {
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
}

.bovasmm-forgot {
    font-size: 0.875rem;
    color: var(--bovasmm-primary) !important;
    display: block;
    margin-top: 0.5rem;
}

.bovasmm-btn-login {
    padding: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
}

.bovasmm-divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0;
}

.bovasmm-divider::before,
.bovasmm-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.bovasmm-divider span {
    padding: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.bovasmm-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem !important;
}

.bovasmm-signup-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.bovasmm-signup-link a {
    color: var(--bovasmm-primary) !important;
    font-weight: 600;
}

/* Hero right - image (replaces Sign In card) */
.bovasmm-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.bovasmm-hero-right-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .bovasmm-hero-image-wrap {
        margin-top: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Supported Platforms - colorful icons, slide to left */
.bovasmm-platforms {
    padding: 2rem 0;
    background: #fff;
    overflow: hidden;
}

.bovasmm-platforms-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.bovasmm-platforms-marquee:hover .bovasmm-platforms-track {
    animation-play-state: paused;
}

.bovasmm-platforms-track {
    display: flex;
    gap: 2.5rem;
    animation: bovasmm-slide-left 30s linear infinite;
    width: max-content;
}

@keyframes bovasmm-slide-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.bovasmm-platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-shrink: 0;
}

.bovasmm-platform-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

/* Colorful brand icons for platforms without hstock images */
.bovasmm-platform-discord i { color: #5865F2 !important; font-size: 1.75rem; }
.bovasmm-platform-twitch i { color: #9146ff !important; font-size: 1.75rem; }
.bovasmm-platform-youtube i { color: #ff0000 !important; font-size: 1.75rem; }
.bovasmm-platform-spotify i { color: #1DB954 !important; font-size: 1.75rem; }
.bovasmm-platform-pinterest i { color: #E60023 !important; font-size: 1.75rem; }
.bovasmm-platform-whatsapp i { color: #25D366 !important; font-size: 1.75rem; }
.bovasmm-platform-messenger i { color: #0084ff !important; font-size: 1.75rem; }
.bovasmm-platform-linkedin i { color: #0A66C2 !important; font-size: 1.75rem; }

/* How It Works */
.bovasmm-how-it-works {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 50%, #f8fafc 100%);
}

.bovasmm-how-it-works .bovasmm-section-title {
    margin-bottom: 3rem;
}

.bovasmm-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.bovasmm-step-card {
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.2s;
}

.bovasmm-step-card:hover {
    transform: translateY(-4px);
}

.bovasmm-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--bovasmm-blue-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bovasmm-step-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.bovasmm-step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bovasmm-step-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* How It Works - redesigned: bigger images, card style */
.bovasmm-steps-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
}

.bovasmm-step-item {
    flex: 1 1 200px;
    max-width: 280px;
    text-align: center;
    background: #fff;
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bovasmm-step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.bovasmm-step-item img {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
    border-radius: 12px;
}

.bovasmm-step-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.bovasmm-step-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.bovasmm-step-arrow {
    width: 56px;
    height: auto;
    align-self: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .bovasmm-step-item {
        max-width: 270px;
    }
    .bovasmm-step-item img {
        max-width: 240px;
    }
}

@media (min-width: 992px) {
    .bovasmm-step-item {
        max-width: 320px;
    }
    .bovasmm-step-item img {
        max-width: 280px;
    }
    .bovasmm-step-arrow {
        width: 64px;
    }
}

/* Social Services */
.bovasmm-social-services {
    background: var(--bovasmm-blue-gradient);
    padding: 2.5rem 0;
}

.bovasmm-social-services-content {
    text-align: center;
    margin-bottom: 1.25rem;
}

.bovasmm-social-services-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.bovasmm-social-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.75rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bovasmm-btn-services {
    display: inline-block;
    font-weight: 600;
    padding: 0.65rem 1.75rem;
    background: #fff;
    color: #2563eb;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}
.bovasmm-btn-services:hover {
    background: #f8fafc;
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

/* Social services graphic: keep top visible, hide/crop bottom only */
.bovasmm-social-services-img-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 0.5rem;
    overflow: hidden;
    max-height: 320px;
}

.bovasmm-rotating-img-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    max-height: 320px;
}

.bovasmm-services-graphic-img {
    max-width: 100%;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

@media (min-width: 768px) {
    .bovasmm-social-services-title { font-size: 2.5rem; }
    .bovasmm-social-desc { font-size: 1.25rem; }
    .bovasmm-social-services-img-wrap { max-height: 380px; }
    .bovasmm-rotating-img-container { max-height: 380px; }
    .bovasmm-services-graphic-img { max-width: 600px; }
}

@media (min-width: 992px) {
    .bovasmm-social-services-title { font-size: 2.75rem; }
    .bovasmm-social-desc { font-size: 1.3rem; }
    .bovasmm-social-services-img-wrap { max-height: 420px; }
    .bovasmm-rotating-img-container { max-height: 420px; }
    .bovasmm-services-graphic-img { max-width: 680px; }
}

/* Rotating image animation - matches BovaSMM */
@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating-image {
    animation: slow-spin 20s linear infinite;
    transform-origin: center center;
}

/* Deeper Dive - BovaSMM style with UI mockups */
.bovasmm-deeper-dive {
    padding: 4rem 0;
    background: #fff;
}

.bovasmm-deeper-title {
    color: var(--bovasmm-primary) !important;
}

.bovasmm-deeper-subtitle {
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

.bovasmm-feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.bovasmm-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.bovasmm-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.bovasmm-feature-card > p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Feature mockup UI elements */
.bovasmm-feature-mockup {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.85rem;
    overflow: visible;
}

.bovasmm-mockup-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bovasmm-mockup-tab {
    padding: 0.4rem 0.75rem;
    background: #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    border: none;
    cursor: pointer;
}

.bovasmm-mockup-tab:hover {
    background: #d1d5db;
}

.bovasmm-mockup-tab.active {
    background: var(--bovasmm-primary);
    color: #fff;
}

.bovasmm-mockup-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.bovasmm-mockup-field i {
    color: #6b7280;
}

.bovasmm-mockup-search-link {
    text-decoration: none !important;
    cursor: pointer;
    transition: border-color 0.2s;
}

.bovasmm-mockup-search-link:hover {
    border-color: var(--bovasmm-primary);
    color: var(--bovasmm-primary);
}

.bovasmm-mockup-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.bovasmm-mockup-dropdown-select {
    cursor: pointer;
    position: relative;
}

.bovasmm-mockup-dropdown-select:hover {
    border-color: var(--bovasmm-primary);
}

.bovasmm-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 2px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 20;
    max-height: 180px;
    overflow-y: auto;
}

.bovasmm-mockup-dropdown-select.open .bovasmm-dropdown-menu {
    display: block;
}

.bovasmm-dropdown-item {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

.bovasmm-dropdown-item:last-child {
    border-bottom: none;
}

.bovasmm-dropdown-item:hover {
    background: var(--bovasmm-blue-light);
}

.bovasmm-mockup-dropdown-help {
    flex-wrap: wrap;
}

.bovasmm-mockup-dropdown-help .bovasmm-dropdown-hint {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.bovasmm-mockup-dropdown i {
    color: #9ca3af;
    font-size: 0.75rem;
}

.bovasmm-mockup-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--bovasmm-primary) !important;
}

.bovasmm-mockup-success {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #d1fae5;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.bovasmm-mockup-success i {
    color: #059669;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bovasmm-mockup-success div {
    display: flex;
    flex-direction: column;
}

.bovasmm-mockup-success strong {
    color: #065f46;
}

.bovasmm-mockup-success span {
    font-size: 0.8rem;
    color: #047857;
}

.bovasmm-mockup-row {
    display: flex;
    gap: 0.5rem;
}

.bovasmm-mockup-row .bovasmm-mockup-dropdown {
    flex: 1;
}

.bovasmm-mockup-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.bovasmm-mockup-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.bovasmm-mockup-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.bovasmm-country-tab {
    padding: 0.35rem 0.6rem;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
}

.bovasmm-country-tab:hover {
    border-color: var(--bovasmm-primary);
}

.bovasmm-country-tab.active {
    background: var(--bovasmm-primary);
    color: #fff;
    border-color: var(--bovasmm-primary);
}

.bovasmm-flag {
    margin-right: 0.25rem;
}

.bovasmm-mockup-payment {
    margin-bottom: 0;
}

.bovasmm-mockup-select {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    position: relative;
}

.bovasmm-mockup-select .bovasmm-mockup-value {
    display: flex;
    align-items: center;
}

.bovasmm-mockup-select i {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
}

.bovasmm-mockup-value {
    font-weight: 500;
}

.bovasmm-mockup-orders {
    position: relative;
}

.bovasmm-mockup-table {
    margin-bottom: 0.75rem;
}

.bovasmm-mockup-table .bovasmm-mockup-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
}

.bovasmm-mockup-header {
    font-weight: 600;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.bovasmm-mockup-complete {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: #10b981;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
}

.bovasmm-mockup-complete:hover {
    background: #059669;
    color: #fff !important;
}

.bovasmm-awards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.bovasmm-award-badge {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #6b7280;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.bovasmm-award-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Explore Services */
.bovasmm-explore {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 40%, #fff 100%);
}

.bovasmm-explore .bovasmm-section-title {
    margin-bottom: 2rem;
}

.bovasmm-platform-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.bovasmm-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: #fff;
    color: #475569 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.bovasmm-tab:hover {
    border-color: var(--bovasmm-primary);
    color: var(--bovasmm-primary) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.bovasmm-tab.active {
    background: var(--bovasmm-primary);
    color: #fff !important;
    border-color: var(--bovasmm-primary);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.bovasmm-tab img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 6px;
}

.bovasmm-service-cards {
    margin-bottom: 0;
}

.bovasmm-service-cards [class*="col-"] {
    margin-bottom: 2rem;
}

.bovasmm-service-cards [class*="col-"]:nth-child(n+4) {
    margin-bottom: 0;
}

.bovasmm-service-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 16px;
    height: 100%;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.bovasmm-service-card:hover {
    border-color: var(--bovasmm-primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.bovasmm-service-card h5 {
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

/* View All Services - blue link so users know it's clickable */
.bovasmm-view-all-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2563eb !important;
    text-decoration: none !important;
    border: 1px solid #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bovasmm-view-all-link:hover {
    color: #fff !important;
    background-color: #2563eb;
}

/* Space between service cards and Learn More */
.bovasmm-learn-more-wrap {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 1rem;
}

/* Ensure btn-outline-success is visible (overrides generic .btn if needed) */
.btn.btn-outline-success,
.bovasmm-explore .btn.btn-outline-success {
    color: #198754 !important;
    border-color: #198754 !important;
    background-color: transparent !important;
}

.btn.btn-outline-success:hover,
.bovasmm-explore .btn.btn-outline-success:hover {
    color: #fff !important;
    background-color: #198754 !important;
    border-color: #198754 !important;
}

.bovasmm-btn-view-all {
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-width: 2px !important;
}

/* Testimonials - BovaSMM style carousel */
.bovasmm-testimonials {
    padding: 4rem 0;
    background: #fff;
}

.bovasmm-testimonials-desc {
    text-align: center;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.bovasmm-google-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.bovasmm-google-review i {
    font-size: 1.5rem;
}

.bovasmm-google-logo {
    width: 24px;
    height: 24px;
}

.bovasmm-stars {
    color: #fbbf24;
}

/* Testimonial carousel */
.bovasmm-testimonial-carousel-wrap {
    position: relative;
}

.bovasmm-testimonial-carousel {
    overflow: hidden;
}

.bovasmm-testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.bovasmm-testimonial-card {
    flex: 0 0 380px;
    min-width: 320px;
    background: #fff;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid #f1f5f9;
}

.bovasmm-testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(59,130,246,0.06), transparent);
    border-radius: 0 16px 16px 0;
    pointer-events: none;
}

.bovasmm-quote-icon {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-size: 2.5rem;
    color: #64748b;
    opacity: 0.5;
}

.bovasmm-card-stars {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.bovasmm-testimonial-card h5 {
    margin: 2.5rem 0 0.75rem;
    padding-right: 2rem;
}

.bovasmm-testimonial-card p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bovasmm-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bovasmm-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

.bovasmm-author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.bovasmm-testimonial-author div {
    display: flex;
    flex-direction: column;
}

.bovasmm-testimonial-author small {
    color: #9ca3af;
    font-size: 0.8rem;
}

.bovasmm-testimonial-author-top {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.bovasmm-testimonial-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.bovasmm-testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.bovasmm-testimonial-readmore {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bovasmm-primary);
    text-decoration: none;
}

.bovasmm-testimonial-readmore:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

.bovasmm-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.bovasmm-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.bovasmm-carousel-btn:hover {
    background: var(--bovasmm-primary);
    color: #fff;
    border-color: var(--bovasmm-primary);
}

.bovasmm-carousel-btn i {
    font-size: 1.25rem;
}

.bovasmm-carousel-prev {
    left: 12px;
}

.bovasmm-carousel-next {
    right: 12px;
}

@media (max-width: 767px) {
    .bovasmm-testimonial-card {
        flex: 0 0 300px;
        min-width: 280px;
    }
}

/* Mobile CTA */
.bovasmm-mobile-cta {
    background: var(--bovasmm-dark-blue);
    padding: 4rem 0;
}

.bovasmm-mobile-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bovasmm-mobile-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.bovasmm-mobile-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bovasmm-mobile-btn {
    padding: 0.75rem 1.5rem !important;
}

.bovasmm-mobile-btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bovasmm-mobile-btn-outline:hover {
    background: #fff !important;
    color: var(--bovasmm-dark-blue, #1e3a5f) !important;
    border-color: #fff !important;
}

.bovasmm-mobile-mockup {
    opacity: 0.8;
}

.bovasmm-mobile-app-img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Footer */
.bovasmm-footer {
    background: var(--bovasmm-footer-bg);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
}

.bovasmm-logo-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
}

.bovasmm-footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    max-width: 300px;
}

.bovasmm-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bovasmm-footer-links h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.bovasmm-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bovasmm-footer-links li {
    margin-bottom: 0.5rem;
}

.bovasmm-footer-links a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
}

.bovasmm-footer-links a:hover {
    color: #fff !important;
}

.bovasmm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bovasmm-payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.bovasmm-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .bovasmm-hero-title {
        font-size: 2rem;
    }
    .bovasmm-login-card {
        margin: 2rem auto 0;
    }
    .bovasmm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .bovasmm-hero {
        padding: 2rem 0;
    }
    .bovasmm-hero-title {
        font-size: 1.75rem;
    }
    .bovasmm-section-title {
        font-size: 1.5rem;
    }
    .bovasmm-platforms-strip {
        gap: 1rem;
    }
    .bovasmm-footer-grid {
        grid-template-columns: 1fr;
    }
    .bovasmm-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .bovasmm-step-arrow {
        transform: rotate(90deg);
        width: 48px;
    }
    .bovasmm-step-item {
        max-width: 100%;
        width: 100%;
        max-width: 340px;
    }
    .bovasmm-step-item img {
        max-width: 280px;
    }
    .bovasmm-award-img {
        height: 40px;
    }
}
