
/* ============================================
   DekhoNearby B2B Premium Design System 2026
   ============================================ */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
    --dn-primary: #970f0f;
    --dn-primary-dark: #7a0c0c;
    --dn-primary-light: rgba(151, 15, 15, 0.08);
    --dn-accent: #0ea5e9;
    --dn-accent-2: #4f46e5;
    --dn-dark: #0f172a;
    --dn-dark-2: #1e293b;
    --dn-text: #334155;
    --dn-text-light: #64748b;
    --dn-text-lighter: #94a3b8;
    --dn-border: #e2e8f0;
    --dn-bg: #f8fafc;
    --dn-white: #ffffff;
    --dn-radius-sm: 8px;
    --dn-radius-md: 12px;
    --dn-radius-lg: 16px;
    --dn-radius-xl: 24px;
    --dn-radius-2xl: 32px;
    --dn-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --dn-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --dn-shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --dn-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.12);
    --dn-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dn-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   HEADER - Premium Sticky Navbar
   ============================================ */
section.py-0 {
    position: sticky !important;
    top: 0;
    z-index: 1060 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--dn-transition);
}

.ecommerce-topbar {
    position: relative;
    z-index: 1060 !important;
}

.ecommerce-topbar .navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ecommerce-navbar {
    position: sticky !important;
    top: 62px;
    z-index: 1050 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dn-border);
    box-shadow: none !important;
    transition: var(--dn-transition);
}

.ecommerce-navbar .nav-link {
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.01em;
    color: var(--dn-text) !important;
    padding: 8px 16px !important;
    border-radius: var(--dn-radius-sm);
    transition: var(--dn-transition);
    position: relative;
}

.ecommerce-navbar .nav-link:hover,
.ecommerce-navbar .nav-link.active {
    color: var(--dn-primary) !important;
    background: var(--dn-primary-light);
}

.ecommerce-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--dn-primary);
    border-radius: 10px;
}

.dropdown-profile {
    z-index: 3000 !important;
    position: absolute !important;
    border-radius: var(--dn-radius-lg) !important;
    overflow: hidden;
    border: 1px solid var(--dn-border) !important;
    box-shadow: var(--dn-shadow-xl) !important;
}

@media (max-width: 767px) {
    .header-location-box {
        min-width: 90px !important;
        width: 35% !important;
    }
    .header-ai-search {
        width: 65% !important;
    }
    .header-submit-btn {
        padding-left: 10px !important;
        padding-right: 10px !important;
        min-width: 45px;
    }
}

/* ============================================
   HERO SECTION - Ultra Premium
   ============================================ */
.premium-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}
.hero-bg-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}
.hero-search-wrapper {
    max-width: 850px;
    width: 100%;
    background: #fff;
    border-radius: 12px !important;
    padding: 6px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-search-form {
    display: flex;
    align-items: center;
    height: 54px;
    width: 100%;
}
.hero-cat-btn {
    transition: var(--dn-transition);
    white-space: nowrap;
}
.hero-cat-btn:hover {
    background: #F1F5F9 !important;
}
.hero-submit-btn {
    border-radius: 8px !important;
    transition: var(--dn-transition);
    white-space: nowrap;
    min-width: 120px;
}
.hero-submit-btn:hover {
    background-color: #7a0c0c !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(151,15,15,0.3);
}
.hero-search-form input:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

@media (max-width: 768px) {
    .premium-hero-section { min-height: 75vh; border-radius: 0 0 24px 24px; margin-bottom: 40px; padding-top: 5rem !important; padding-bottom: 3rem !important; }
    .hero-title { font-size: 2.5rem; }
    .hero-search-wrapper { padding: 4px !important; border-radius: 10px !important; }
    .hero-search-form { height: 48px; }
    .hero-submit-btn { min-width: 80px; padding: 0 15px !important; font-size: 14px; }
}

.hero-title { text-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-shape-1 { width: 600px; height: 600px; background: rgba(151, 15, 15, 0.4); top: -200px; left: -100px; }
.hero-shape-2 { width: 500px; height: 500px; background: rgba(51, 65, 85, 0.6); bottom: -150px; right: -50px; }
.hover-opacity { transition: opacity 0.3s; }
.hover-opacity:hover { opacity: 0.8; text-decoration: none !important; color: #fff !important; }
.jump-anim { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.jump-anim:hover { transform: scale(1.05); }
.hero-cta { transition: var(--dn-transition); }
.hero-cta:hover { background: #F8FAFC !important; color: #970f0f !important; }
.hero-cta-outline { transition: var(--dn-transition); }
.hero-cta-outline:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }

/* ============================================
   TRUST STATS BAR - Social Proof Strip
   ============================================ */
.trust-strip {
    background: var(--dn-white);
    border-bottom: 1px solid var(--dn-border);
    padding: 24px 0;
    position: relative;
    z-index: 5;
    margin-top: -40px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: var(--dn-radius-xl);
    box-shadow: var(--dn-shadow-lg);
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 0 20px;
}

.trust-strip-item .trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-strip-item .trust-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dn-dark);
    line-height: 1.1;
}

.trust-strip-item .trust-label {
    font-size: 0.78rem;
    color: var(--dn-text-light);
    font-weight: 500;
}

@media (max-width: 767px) {
    .trust-strip { margin-left: 12px; margin-right: 12px; padding: 16px 0; margin-top: -30px; }
    .trust-strip-item { padding: 8px 10px; }
    .trust-strip-item .trust-number { font-size: 1rem; }
    .trust-strip-item .trust-icon { width: 36px; height: 36px; font-size: 16px; }
}

/* ============================================
   SECTION HEADERS - Consistent Typography
   ============================================ */
.premium-section-py {
    padding: 70px 0;
}

.section-header-title {
    font-size: 2.5rem;
    font-weight: 800 !important;
    color: var(--dn-dark);
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-header-subtitle {
    font-size: 1.05rem;
    color: var(--dn-text-light);
    font-weight: 400;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--dn-primary) 0%, #e74c3c 100%);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .section-header-title { font-size: 1.8rem; letter-spacing: -0.5px; }
    .premium-section-py { padding: 50px 0; }
}

/* ============================================
   PRODUCT CARDS - Modern E-Commerce Cards
   ============================================ */
.premium-product-card {
    border-radius: var(--dn-radius-lg) !important;
    border: 1px solid var(--dn-border);
    overflow: hidden;
    transition: var(--dn-bounce);
    background: var(--dn-white);
    position: relative;
}

.premium-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 20px 50px -12px rgba(151, 15, 15, 0.18);
    pointer-events: none;
    z-index: 0;
}

.premium-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(151, 15, 15, 0.25);
}

.premium-product-card:hover::before {
    opacity: 1;
}

.premium-product-card .card-img-wrap {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid #F1F5F9;
    overflow: hidden;
    background-color: #fafbfc;
    position: relative;
}

.premium-product-card .card-img-wrap img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-product-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.premium-product-card .card-body {
    position: relative;
    z-index: 1;
}

.premium-product-card .product-title {
    transition: color 0.2s ease;
}

.premium-product-card:hover .product-title {
    color: var(--dn-primary) !important;
}

/* Stagger entrance animation */
.col:nth-child(1) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.05s backwards; }
.col:nth-child(2) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.1s backwards; }
.col:nth-child(3) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.15s backwards; }
.col:nth-child(4) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.2s backwards; }
.col:nth-child(5) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.25s backwards; }
.col:nth-child(6) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.3s backwards; }
.col:nth-child(7) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.35s backwards; }
.col:nth-child(8) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.4s backwards; }
.col:nth-child(9) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.45s backwards; }
.col:nth-child(10) .premium-product-card { animation: cardEntrance 0.5s ease-out 0.5s backwards; }

@keyframes cardEntrance {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .premium-product-card .card-img-wrap {
        aspect-ratio: 1 / 1;
        height: auto;
        padding: 0;
    }
    .premium-product-card {
        display: flex;
        flex-direction: column;
    }
    .premium-product-card .card-body {
        padding: 12px !important;
    }
    .premium-product-card .product-title {
        font-size: 13px !important;
    }
    .premium-product-card .price-range {
        font-size: 12px !important;
    }
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */
.btn-load-more {
    background: linear-gradient(135deg, var(--dn-primary) 0%, #c0392b 100%);
    transition: var(--dn-bounce);
    box-shadow: 0 10px 30px rgba(151, 15, 15, 0.25) !important;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-load-more:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(151, 15, 15, 0.35) !important;
    filter: brightness(1.08);
}

.btn-load-more:active {
    transform: translateY(0);
}

/* ============================================
   FAQ SECTION - Professional Accordion
   ============================================ */
.faq-title {
    font-size: 24px;
    position: relative;
}

.faq-item {
    border: 1px solid var(--dn-border) !important;
    border-bottom: 1px solid var(--dn-border) !important;
    padding: 16px 24px !important;
    cursor: pointer;
    border-radius: var(--dn-radius-md) !important;
    transition: var(--dn-transition);
    background: var(--dn-white);
}

.faq-item:hover {
    border-color: rgba(151, 15, 15, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-question {
    color: var(--dn-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--dn-dark);
    margin: 0;
}

.faq-answer {
    font-size: 14px;
    color: var(--dn-text-light);
    margin-top: 12px;
    display: none;
    line-height: 1.7;
}

.faq-icon {
    font-size: 22px;
    color: var(--dn-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dn-primary-light);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    color: var(--dn-white);
    background: var(--dn-primary);
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   CATEGORY SECTION STYLES
   ============================================ */
.premium-category-section {
    padding: 4rem 0;
    background: var(--dn-bg);
}
.section-heading {
    font-weight: 800;
    color: var(--dn-dark);
    letter-spacing: -0.02em;
    font-size: 2rem;
}
.premium-cat-card {
    background: var(--dn-white);
    border-radius: var(--dn-radius-lg);
    padding: 24px 16px;
    transition: var(--dn-bounce);
    border: 1px solid var(--dn-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.premium-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -8px rgba(151, 15, 15, 0.15);
    border-color: var(--dn-primary);
}
.premium-cat-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--dn-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--dn-transition);
}
.premium-cat-card:hover .premium-cat-icon {
    background: var(--dn-primary);
    transform: scale(1.1);
}
.premium-cat-icon img { width: 36px; height: 36px; object-fit: contain; }
.premium-cat-icon i {
    font-size: 24px; color: #2563eb;
    transition: var(--dn-transition);
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
}
.premium-cat-card:hover .premium-cat-icon i { color: var(--dn-white) !important; }
.premium-cat-card:hover .premium-cat-icon img { filter: brightness(0) invert(1) !important; }
.premium-cat-name {
    color: #1E293B; font-weight: 600; font-size: 0.95rem;
    text-align: center; margin: 0; line-height: 1.3;
    transition: color 0.3s ease;
}
.premium-cat-card:hover .premium-cat-name { color: var(--dn-primary); }

/* Category modal styles */
.category-modal {
    display: none; position: fixed; z-index: 9999;
    top: 0; left: 0; height: 100%; width: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center; align-items: center; padding: 15px;
}
.category-modal-content {
    background-color: var(--dn-bg); width: 100%; max-width: 1200px; max-height: 90vh;
    overflow-y: auto; border-radius: var(--dn-radius-xl); padding: 32px;
    position: relative; border: 1px solid rgba(255,255,255,0.2);
    box-shadow: var(--dn-shadow-xl);
}
.category-modal-close {
    position: absolute; top: 16px; right: 24px; font-size: 32px; font-weight: 300;
    color: var(--dn-text-light); cursor: pointer; transition: color 0.2s;
}
.category-modal-close:hover { color: var(--dn-dark); }
.modal-title { font-weight: 800; color: var(--dn-dark); margin-bottom: 1.5rem; }

/* ============================================
   EXPLORE / SLIDER STYLES
   ============================================ */
.btn-explore1 {
    display: inline-flex; align-items: center; padding: 12px 20px; font-size: 12px;
    font-weight: 600; color: #ffffff; background-color: var(--dn-primary);
    border-radius: 8px; text-decoration: none; position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatEffect 2s infinite ease-in-out;
}
@keyframes floatEffect {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}
.btn-explore i { display: inline-block; animation: bounceArrow 1.5s infinite alternate ease-in-out; }
@keyframes bounceArrow {
    0% { transform: translateX(0); }
    100% { transform: translateX(5px); }
}

/* Slider section */
.b2b-slider-section { margin: 20px auto; overflow: hidden; }
.b2b-slider-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.b2b-title h3 { font-size: 1.5rem; font-weight: bold; color: #333; display: flex; align-items: center; gap: 8px; position: relative; overflow: hidden; transition: color 0.3s ease-in-out; }
.b2b-title h3:hover { color: var(--dn-primary); }
.b2b-title h3::after { content: ""; display: block; width: 0; height: 3px; background: var(--dn-primary); position: absolute; bottom: -5px; left: 0; transition: width 0.4s ease-in-out; }
.b2b-title h3:hover::after { width: 100%; }
.b2b-title i { font-size: 1.2rem; color: var(--dn-primary); transform: scale(1); transition: transform 0.3s ease-in-out; }
.b2b-title h3:hover i { transform: rotate(10deg) scale(1.1); }
.btn-explore { display: flex; align-items: center; background: var(--dn-primary); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 500; text-decoration: none; overflow: hidden; position: relative; transition: background 0.3s ease-in-out, transform 0.3s ease-in-out; }
.btn-explore:hover { background: var(--dn-primary-dark); transform: scale(1.05); }
.btn-explore i { margin-left: 8px; transition: transform 0.3s ease-in-out; }
.btn-explore:hover i { transform: translateX(4px); }
.b2b-product-slider { padding-bottom: 30px; width: 100%; overflow: hidden; }
.b2b-product-slider .swiper-slide { height: auto; }
.b2b-nav { color: var(--dn-primary); background: #fff; border-radius: 50%; padding: 10px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); transition: background 0.3s ease, color 0.3s ease; }
.b2b-nav:hover { background: var(--dn-primary); color: #fff; }

/* ============================================
   SUPPLIER CARDS
   ============================================ */
.premium-supplier-section { padding: 40px 0; background: var(--dn-white); }
.supplier-card { background: var(--dn-white); border-radius: var(--dn-radius-lg); border: 1px solid var(--dn-border); padding: 24px; transition: var(--dn-bounce); height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; }
.supplier-card:hover { box-shadow: 0 16px 32px -8px rgba(151, 15, 15, 0.12); transform: translateY(-6px); border-color: rgba(151, 15, 15, 0.2); }
.supplier-logo-wrap { width: 80px; height: 80px; border-radius: 50%; background: var(--dn-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 1px dashed #CBD5E1; color: var(--dn-text-lighter); font-size: 24px; }
.supplier-name { font-weight: 700; color: var(--dn-dark); font-size: 1.1rem; margin-bottom: 8px; line-height: 1.3; }
.supplier-meta { color: var(--dn-text-light); font-size: 0.85rem; margin-bottom: 16px; }
.contact-btn { margin-top: auto; width: 100%; border-radius: var(--dn-radius-sm); font-weight: 600; transition: var(--dn-transition); }

/* ============================================
   HOW IT WORKS / PROMO SECTION
   ============================================ */
.how-it-works-section { padding: 60px 0; background: var(--dn-bg); border-radius: var(--dn-radius-xl); }
.step-card { text-align: center; padding: 24px; position: relative; z-index: 1; }
.step-icon-wrap { width: 80px; height: 80px; border-radius: 50%; background: var(--dn-white); box-shadow: 0 10px 25px -5px rgba(151, 15, 15, 0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: var(--dn-primary); position: relative; }
.step-number { position: absolute; top: -5px; right: -5px; width: 28px; height: 28px; background: var(--dn-dark); color: #FFF; border-radius: 50%; font-size: 14px; font-weight: bold; display: flex; align-items: center; justify-content: center; border: 3px solid var(--dn-bg); }
.step-title { font-weight: 700; color: var(--dn-dark); margin-bottom: 12px; font-size: 1.25rem; }
.step-desc { color: var(--dn-text-light); font-size: 0.95rem; line-height: 1.5; }
.promo-card { border-radius: 20px; padding: 40px; color: #FFF; overflow: hidden; position: relative; z-index: 1; transition: transform 0.3s ease; height: 100%; display: flex; flex-direction: column; justify-content: center; background-size: cover; background-position: center; min-height: 300px; }
.promo-card:hover { transform: translateY(-5px); }
.promo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%); z-index: -1; }
.promo-buyer { background-image: url('../../assets/img/bg555.jpg'); }
.promo-seller { background-image: url('../../assets/img/bg22222.jpg'); }
.promo-title { font-weight: 800; font-size: 2rem; margin-bottom: 12px; color: #FFF; }
.promo-btn { align-self: flex-start; padding: 12px 30px; border-radius: var(--dn-radius-md); font-weight: 600; background: #FFF; color: var(--dn-dark) !important; text-decoration: none; transition: var(--dn-transition); margin-top: 24px; display: inline-flex; align-items: center; }
.promo-btn:hover { background: var(--dn-primary); color: #FFF !important; box-shadow: 0 10px 20px rgba(151, 15, 15, 0.3); }

@media (min-width: 992px) {
    .step-connector { position: relative; }
    .step-connector::after { content: ''; position: absolute; top: 64px; right: -50%; width: 100%; height: 2px; border-top: 2px dashed #CBD5E1; z-index: 0; }
}

/* ============================================
   BUY LEADS SECTION
   ============================================ */
.buy-leads-container { border: 1px solid #f1f5f9; }
.fw-800 { font-weight: 800; }
.bg-soft-danger { background: var(--dn-primary-light); }
.live-pulse { width: 10px; height: 10px; background: var(--dn-primary); border-radius: 50%; position: relative; }
.live-pulse::after { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border: 2px solid var(--dn-primary); border-radius: 50%; animation: pulse-ring 1.5s infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.buy-leads-swiper { height: auto; padding: 20px 15px; }
.buy-lead-card { background: #fff; border: 1px solid var(--dn-border); border-radius: var(--dn-radius-md); padding: 16px; transition: var(--dn-bounce); display: flex; align-items: center; text-decoration: none !important; height: 90px; width: 100%; }
.buy-lead-card:hover { border-color: var(--dn-primary); box-shadow: 0 8px 20px rgba(151,15,15,0.1); transform: translateY(-4px); }
.buy-lead-img-wrap { width: 54px; height: 54px; min-width: 54px; border-radius: var(--dn-radius-sm); background: var(--dn-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #f1f5f9; }
.buy-lead-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.buy-lead-content { flex-grow: 1; min-width: 0; }
.buy-lead-title { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buy-lead-mta { font-size: 12px; color: var(--dn-text-light); display: flex; align-items: center; gap: 12px; }
.buy-lead-location { font-weight: 500; }
.buy-lead-date { opacity: 0.8; }
.buy-leads-prev, .buy-leads-next { width: 36px !important; height: 36px !important; background: #fff !important; box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important; border-radius: 50% !important; color: var(--dn-primary) !important; transition: var(--dn-transition); }
.buy-leads-prev:after, .buy-leads-next:after { font-size: 14px !important; font-weight: bold; }
.buy-leads-prev:hover, .buy-leads-next:hover { background: var(--dn-primary) !important; color: #fff !important; }
@media (max-width: 768px) {
    .buy-lead-card { height: 84px; padding: 12px; }
    .buy-lead-title { font-size: 14px; }
}

/* ============================================
   TRUST STATS DARK SECTION
   ============================================ */
.trust-stats-section { background: var(--dn-dark); padding: 80px 0; margin-top: 60px; color: #FFFFFF; position: relative; overflow: hidden; }
.trust-stats-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 80% 20%, rgba(151, 15, 15, 0.12) 0%, transparent 40%), radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 40%); z-index: 0; }
.stat-item { text-align: center; position: relative; z-index: 1; padding: 20px; }
.stat-icon { font-size: 36px; color: #38BDF8; margin-bottom: 20px; }
.stat-number { font-size: 3.5rem; font-weight: 800; margin-bottom: 8px; line-height: 1; background: linear-gradient(to right, #ffffff, #94a3b8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 1.1rem; color: var(--dn-text-lighter); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) {
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 0.9rem; }
    .stat-item { padding: 10px; }
    .trust-stats-section { padding: 50px 0; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.premium-cta-section { background: linear-gradient(135deg, var(--dn-dark) 0%, #1E3A8A 100%); padding: 100px 0; position: relative; overflow: hidden; border-radius: var(--dn-radius-2xl); margin: 40px 20px; box-shadow: var(--dn-shadow-xl); }
.premium-cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1) 0%, transparent 50%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; text-align: center; color: #FFFFFF; max-width: 800px; margin: 0 auto; }
.cta-heading { font-size: 3.5rem; font-weight: 800; margin-bottom: 24px; line-height: 1.2; background: linear-gradient(to right, #FFFFFF, #E2E8F0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-subheading { font-size: 1.25rem; color: #CBD5E1; margin-bottom: 40px; font-weight: 400; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--dn-primary); color: #FFFFFF; border: none; padding: 16px 40px; border-radius: var(--dn-radius-md); font-size: 1.1rem; font-weight: 600; text-decoration: none; transition: var(--dn-transition); box-shadow: 0 10px 25px -5px rgba(151, 15, 15, 0.4); }
.btn-cta-primary:hover { background: var(--dn-primary-dark); transform: translateY(-2px); color: #FFFFFF; box-shadow: 0 15px 30px -5px rgba(151, 15, 15, 0.5); }
.btn-cta-secondary { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.2); padding: 16px 40px; border-radius: var(--dn-radius-md); font-size: 1.1rem; font-weight: 600; text-decoration: none; transition: var(--dn-transition); backdrop-filter: blur(10px); }
.btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.2); color: #FFFFFF; border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.cta-features { display: flex; justify-content: center; gap: 40px; margin-top: 50px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 40px; flex-wrap: wrap; }
.cta-feature-item { display: flex; align-items: center; gap: 12px; color: var(--dn-text-lighter); font-weight: 500; }
.cta-feature-item i { color: #38BDF8; font-size: 1.2rem; }
@media (max-width: 768px) {
    .premium-cta-section { padding: 60px 20px; border-radius: 20px; margin: 40px 10px; }
    .cta-heading { font-size: 2.5rem; }
    .cta-subheading { font-size: 1.1rem; }
    .cta-features { gap: 20px; flex-direction: column; align-items: center; }
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */
.premium-app-section { padding: 100px 0; background: var(--dn-bg); position: relative; overflow: hidden; }
.app-container-inner { background: var(--dn-white); border-radius: var(--dn-radius-2xl); padding: 60px 40px; border: 1px solid var(--dn-border); box-shadow: var(--dn-shadow-xl); position: relative; z-index: 1; }
.app-qr-box { background: var(--dn-white); border: 1px solid var(--dn-border); border-radius: var(--dn-radius-lg); padding: 12px; box-shadow: var(--dn-shadow-md); display: inline-block; transition: transform 0.3s ease; }
.app-qr-box:hover { transform: scale(1.05); }
.app-feature-list { list-style: none; padding: 0; margin-top: 30px; }
.app-feature-item { display: flex; align-items: flex-start; margin-bottom: 20px; font-size: 1.05rem; color: var(--dn-text); }
.app-feature-item i { width: 28px; height: 28px; background: var(--dn-primary-light); color: var(--dn-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; margin-right: 15px; margin-top: 3px; flex-shrink: 0; }
.app-store-badge { transition: var(--dn-bounce); }
.app-store-badge:hover { transform: translateY(-4px); }
.app-visual-wrap { position: relative; display: flex; justify-content: center; }
.app-visual-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(151, 15, 15, 0.05) 0%, transparent 70%); z-index: -1; }
@media (max-width: 991px) {
    .premium-app-section { padding: 60px 0; }
    .app-container-inner { padding: 40px 20px; border-radius: var(--dn-radius-xl); text-align: center; }
    .app-feature-item { text-align: left; }
    .app-qr-box { margin-bottom: 30px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 80px 0; background: var(--dn-bg); }
.testimonial-card { background: var(--dn-white); border-radius: 20px; padding: 40px; border: 1px solid var(--dn-border); transition: var(--dn-bounce); height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; text-align: left; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--dn-shadow-lg); border-color: rgba(151, 15, 15, 0.2); }
.quote-icon { position: absolute; top: 24px; right: 24px; font-size: 60px; color: #F1F5F9; z-index: 0; transform: rotate(180deg); }
.testimonial-content { position: relative; z-index: 1; font-size: 1.1rem; color: var(--dn-text); line-height: 1.6; margin-bottom: 30px; flex-grow: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--dn-border); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--dn-text-light); flex-shrink: 0; }
.author-info h4 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; color: var(--dn-dark); }
.author-info p { margin: 0; font-size: 0.85rem; color: var(--dn-text-light); }
.star-rating { color: #F59E0B; font-size: 0.9rem; margin-bottom: 20px; }

/* ============================================
   UTILITIES & GLOBAL
   ============================================ */
.bg-white-pure { background: #ffffff; }
.bg-soft { background: var(--dn-bg); }

/* Smooth scrollbar */
.scrollbar::-webkit-scrollbar { width: 4px; }
.scrollbar::-webkit-scrollbar-track { background: transparent; }
.scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.scrollbar::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Selection color */
::selection { background: rgba(151, 15, 15, 0.15); color: var(--dn-dark); }
