/* ==========================================================================
   Sunlite Systems Kramer-Sub Next-Gen UI/UX Stylesheet
   ========================================================================== */

:root {
    --sl-primary: #1571b1;
    --sl-primary-dark: #0d4d7a;
    --sl-primary-light: #3b82f6;
    --sl-accent: #2563eb;
    --sl-accent-orange: #ea580c;
    --sl-emerald: #10b981;
    --sl-dark: #0f172a;
    --sl-slate-600: #475569;
    --sl-slate-100: #f1f5f9;
    --sl-card-bg: #ffffff;
    --sl-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --sl-shadow-md: 0 10px 25px -5px rgba(21, 113, 177, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --sl-shadow-lg: 0 20px 40px -15px rgba(21, 113, 177, 0.22);
    --sl-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* smooth scroll & body tuning */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
}

/* ==========================================
   1. HERO & CATEGORY MENU SECTION
   ========================================== */

/* Category Sidebar Card */
.category-menu {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--sl-shadow-md);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--sl-transition);
}

.category-menu:hover {
    box-shadow: var(--sl-shadow-lg);
}

.category-menu h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1571b1 0%, #0d4d7a 100%);
    color: #ffffff;
    padding: 15px 18px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-menu h3 i {
    font-size: 16px;
    opacity: 0.9;
}

.category-menu ul {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    /* max-height: 480px; */
    overflow-y: auto;
}

/* Custom Scrollbar for Category Menu */
.category-menu ul::-webkit-scrollbar {
    width: 4px;
}
.category-menu ul::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.category-menu ul::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.category-menu ul li {
    background: transparent;
    border-top: none;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    transition: var(--sl-transition);
}

.category-menu ul li:last-child {
    border-bottom: none;
}

.category-menu ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3.5px solid transparent;
    transition: var(--sl-transition);
    text-decoration: none;
}

.category-menu ul li a i.cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #1571b1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--sl-transition);
}

.category-menu ul li a span.cat-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-menu ul li a i.cat-arrow {
    font-size: 11px;
    color: #94a3b8;
    opacity: 0.6;
    transition: var(--sl-transition);
}

/* Category Hover Effect */
.category-menu ul li:hover {
    background: #f8fafc;
}

.category-menu ul li a:hover {
    background: #eff6ff;
    border-left-color: #1571b1;
    color: #1571b1;
    font-weight: 600;
    padding-left: 20px;
}

.category-menu ul li a:hover i.cat-icon {
    background: #1571b1;
    color: #ffffff;
    transform: scale(1.1);
}

.category-menu ul li a:hover i.cat-arrow {
    opacity: 1;
    color: #1571b1;
    transform: translateX(4px);
}

/* Category Badge Pills */
.cat-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cat-badge.hot {
    background: #fee2e2;
    color: #ef4444;
}

.cat-badge.popular {
    background: #dbeafe;
    color: #2563eb;
}

.cat-badge.new {
    background: #d1fae5;
    color: #10b981;
}

/* ==========================================
   MAIN HERO SLIDER CONTAINER
   ========================================== */

.main-slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--sl-shadow-md);
    background: #0f172a;
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 20px;
}

.main-slider .slider-image img {
    border-radius: 18px;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}




/* ==========================================
   FEATURED HERO CARDS (UNDER SLIDER)
   ========================================== */

.hero-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--sl-shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--sl-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1571b1, #2563eb);
    opacity: 0;
    transition: var(--sl-transition);
}

.hero-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-md);
    border-color: #cbd5e1;
}

.hero-feature-card:hover::before {
    opacity: 1;
}

.hero-feature-card .card-img-wrap {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #f8fafc;
    margin-bottom: 12px;
    padding: 10px;
}

.hero-feature-card .card-img-wrap img {
    max-height: 110px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.hero-feature-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.hero-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.hero-feature-card .cta-link {
    font-size: 13px;
    font-weight: 600;
    color: #1571b1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--sl-transition);
}

.hero-feature-card:hover .cta-link {
    color: #2563eb;
    gap: 10px;
}

/* ==========================================
   2. NEXT-GEN TRUST METRICS & STATS BAR
   ========================================== */

.sl-metrics-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 30px 20px;
    border-radius: 18px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
    color: #ffffff;
}

.sl-metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    transition: var(--sl-transition);
}

.sl-metric-item:hover {
    transform: translateY(-3px);
}

.sl-metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #60a5fa;
    flex-shrink: 0;
}

.sl-metric-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
}

.sl-metric-content p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

/* ==========================================
   3. PRODUCT CATEGORIES GRID SHOWCASE
   ========================================== */

.product-area {
    background: #f8fafc;
}

.section-head-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-head-title .section-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    background: #dbeafe;
    color: #1571b1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.section-head-title p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Product Showcase Cards */
.sl-prod-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--sl-shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--sl-transition);
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    position: relative;
    overflow: hidden;
}

.sl-prod-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sl-shadow-lg);
    border-color: #3b82f6;
}

.sl-prod-img-box {
    position: relative;
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 16px;
    overflow: hidden;
}

.sl-prod-img-box img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sl-prod-card:hover .sl-prod-img-box img {
    transform: scale(1.1);
}

.sl-prod-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sl-prod-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.sl-prod-info h3 a {
    color: #0f172a;
    text-decoration: none;
    transition: var(--sl-transition);
}

.sl-prod-card:hover .sl-prod-info h3 a {
    color: #1571b1;
}

.sl-prod-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
}

.sl-prod-btn {
    font-size: 13px;
    font-weight: 700;
    color: #1571b1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--sl-transition);
}

.sl-prod-card:hover .sl-prod-btn {
    color: #2563eb;
    gap: 10px;
}

/* ==========================================
   4. WHY SUNLITE & KRAMER FEATURE GRID
   ========================================== */

/* ==========================================
   4. WHY CHOOSE US — PREMIUM REDESIGN
   ========================================== */

.sl-whyus-section {
    padding: 30px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.sl-whyus-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21,113,177,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.sl-whyus-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.sl-whyus-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    color: #1571b1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sl-whyus-tag i {
    color: #f59e0b;
}

.sl-whyus-header h2 {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.sl-whyus-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Stats Counter Row */
.sl-whyus-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #1571b1 0%, #0d4d7a 100%);
    border-radius: 20px;
    padding: 32px 20px;
    margin-bottom: 50px;
    box-shadow: 0 16px 48px rgba(21, 113, 177, 0.3);
    position: relative;
    overflow: hidden;
}

.sl-whyus-stats::before {
    content: '';
    position: absolute;
    inset: 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='%23ffffff' fill-opacity='0.04'%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");
}

.sl-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.sl-stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.sl-stat-number sup {
    font-size: 22px;
    vertical-align: top;
    margin-top: 6px;
    color: #93c5fd;
}

.sl-stat-label {
    font-size: 13px;
    color: #bfdbfe;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

.sl-stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

/* Two-column body layout */
.sl-whyus-body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Left: Feature Cards Grid */
.sl-whyus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sl-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.sl-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1571b1 0%, #2563eb 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sl-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(21, 113, 177, 0.15);
    border-color: #bfdbfe;
}

.sl-feature-card:hover::after {
    transform: scaleX(1);
}

.sl-fc-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.sl-feature-card:hover .sl-fc-icon {
    transform: rotate(-6deg) scale(1.1);
}

.sl-fc-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.sl-fc-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Right: Comparison Card */
.sl-whyus-compare {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sl-compare-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sl-compare-header {
    background: linear-gradient(135deg, #1571b1 0%, #0d4d7a 100%);
    padding: 16px 20px;
}

.sl-compare-header h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-compare-body {
    padding: 4px 0;
}

.sl-compare-row {
    display: grid;
    grid-template-columns: 1fr 70px 70px;
    padding: 11px 18px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.sl-compare-row:last-child {
    border-bottom: none;
}

.sl-compare-row:hover {
    background: #f8fafc;
}

.sl-compare-row span:first-child {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.sl-compare-thead {
    background: #f8fafc;
}

.sl-compare-thead span {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #94a3b8 !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.sl-col-us, .sl-col-other {
    text-align: center;
    font-size: 18px;
}

.sl-yes { color: #16a34a; }
.sl-no  { color: #dc2626; }
.sl-maybe { color: #f59e0b; }

/* Testimonial strip */
.sl-testimonial-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.sl-testimonial-strip::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(21,113,177,0.2);
}

.sl-quote-icon {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 1;
}

.sl-testimonial-quote p {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0 0 18px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.sl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.sl-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1571b1, #2563eb);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sl-testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.sl-testimonial-author span {
    font-size: 12px;
    color: #94a3b8;
}

/* Bottom CTA Row */
.sl-whyus-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 28px 36px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.sl-whyus-cta-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.sl-whyus-cta-text p {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.sl-whyus-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.sl-whyus-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1571b1 0%, #0d4d7a 100%);
    color: #ffffff !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(21,113,177,0.35);
    transition: all 0.3s ease;
}

.sl-whyus-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(21,113,177,0.45);
    color: #ffffff !important;
}

.sl-whyus-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}

.sl-whyus-btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.4);
    color: #ffffff !important;
}

.sl-whyus-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #1571b1 !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #1571b1;
    transition: all 0.3s ease;
}

.sl-whyus-btn-ghost:hover {
    background: #1571b1;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .sl-whyus-body {
        grid-template-columns: 1fr;
    }
    .sl-whyus-compare {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sl-compare-card, .sl-testimonial-strip {
        flex: 1;
        min-width: 280px;
    }
    .sl-whyus-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .sl-stat-divider { display: none; }
    .sl-stat-item { flex: 0 0 45%; }
}

@media (max-width: 767px) {
    .sl-whyus-features {
        grid-template-columns: 1fr;
    }
    .sl-whyus-header h2 {
        font-size: 26px;
    }
    .sl-stat-number { font-size: 32px; }
    .sl-whyus-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .sl-whyus-cta-actions {
        justify-content: center;
    }
    .sl-whyus-compare {
        flex-direction: column;
    }
}



/* ==========================================
   5. PREMIUM PRODUCT SHOWCASE GRID
   ========================================== */

.sl-products-showcase {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Section Header */
.sl-showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sl-showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    color: #1571b1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sl-showcase-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.4px;
}

.sl-showcase-header p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* 6-column card grid */
.sl-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Individual Product Promo Card */
.sl-product-promo-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.sl-product-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(21, 113, 177, 0.18);
    border-color: #bfdbfe;
}

/* Image Wrapper */
.sl-ppc-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #0f172a;
}

.sl-ppc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.35s ease;
}

.sl-product-promo-card:hover .sl-ppc-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

/* Badge */
.sl-ppc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(245,158,11,0.4);
}

.sl-ppc-badge.sl-badge-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 3px 10px rgba(59,130,246,0.4);
}

.sl-ppc-badge.sl-badge-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 3px 10px rgba(22,163,74,0.4);
}

.sl-ppc-badge.sl-badge-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 3px 10px rgba(124,58,237,0.4);
}

.sl-ppc-badge.sl-badge-teal {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    box-shadow: 0 3px 10px rgba(8,145,178,0.4);
}

/* Hover Overlay with Quick CTA icons */
.sl-ppc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}

.sl-product-promo-card:hover .sl-ppc-overlay {
    opacity: 1;
}

.sl-ppc-quick-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sl-qcta-call, .sl-qcta-wa, .sl-qcta-store {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.sl-product-promo-card:hover .sl-qcta-call,
.sl-product-promo-card:hover .sl-qcta-wa,
.sl-product-promo-card:hover .sl-qcta-store {
    transform: translateY(0);
}

.sl-qcta-call {
    background: #1571b1;
    transition-delay: 0s;
}

.sl-qcta-wa {
    background: #25d366;
    transition-delay: 0.06s;
}

.sl-qcta-store {
    background: #f59e0b;
    transition-delay: 0.12s;
}

.sl-qcta-call:hover { background: #0d4d7a; transform: translateY(-3px) !important; }
.sl-qcta-wa:hover   { background: #128c7e; transform: translateY(-3px) !important; }
.sl-qcta-store:hover { background: #d97706; transform: translateY(-3px) !important; }

/* Card Body */
.sl-ppc-body {
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sl-ppc-icon-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sl-ppc-cat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eff6ff;
    color: #1571b1;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-ppc-cat-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.sl-ppc-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.sl-ppc-body p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/* Card Footer — two buttons */
.sl-ppc-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: auto;
}

.sl-ppc-btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: linear-gradient(135deg, #1571b1 0%, #2563eb 100%);
    color: #ffffff !important;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sl-ppc-btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21,113,177,0.4);
    color: #ffffff !important;
}

.sl-ppc-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sl-ppc-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,0.4);
    color: #ffffff !important;
}

/* Bottom Strip CTA Bar */
.sl-showcase-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 28px 36px;
    flex-wrap: wrap;
    box-shadow: 0 12px 32px rgba(15,23,42,0.25);
    position: relative;
    overflow: hidden;
}

.sl-showcase-bottom-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(21,113,177,0.15);
}

.sl-scta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.sl-scta-big-icon {
    font-size: 36px;
    color: #3b82f6;
    flex-shrink: 0;
}

.sl-scta-left h4 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.sl-scta-left p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.sl-scta-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sl-scta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sl-scta-call {
    background: linear-gradient(135deg, #1571b1 0%, #2563eb 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(21,113,177,0.4);
}

.sl-scta-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(21,113,177,0.55);
    color: #ffffff !important;
}

.sl-scta-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

.sl-scta-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.5);
    color: #ffffff !important;
}

.sl-scta-store {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.sl-scta-store:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .sl-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sl-showcase-bottom-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .sl-scta-right {
        justify-content: center;
    }
    .sl-scta-left {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .sl-products-grid {
        grid-template-columns: 1fr;
    }
    .sl-showcase-header h2 {
        font-size: 24px;
    }
    .sl-ppc-footer {
        flex-wrap: wrap;
    }
}


/* ==========================================
   6. SEO & CONTENT ACCORDION / CARDS
   ========================================== */

.banner-content-section {
    padding: 50px 0;
    background: #ffffff;
}

.banner-content h1 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 20px;
    text-align: center;
}

.sl-seo-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
    box-shadow: var(--sl-shadow-sm);
}

.sl-seo-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1571b1;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-seo-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 12px;
}

.sl-seo-card ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
}

.sl-seo-card ul li {
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-seo-card ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: 800;
}

/* City Pills List Styling */
.sl-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.sl-city-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--sl-shadow-sm);
}

.sl-city-box span {
    font-weight: 700;
    color: #1571b1;
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
}

.sl-city-box p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   7. NEXT-GEN BOTTOM CTA BANNER
   ========================================== */

.sl-bottom-cta {
    background: linear-gradient(135deg, #1571b1 0%, #0d4d7a 100%);
    padding: 50px 20px;
    border-radius: 24px;
    margin: 40px 0 60px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(21, 113, 177, 0.3);
}

.sl-bottom-cta h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.sl-bottom-cta p {
    font-size: 16px;
    color: #e0f2fe;
    max-width: 600px;
    margin: 0 auto 28px;
}

.sl-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sl-btn-primary {
    background: #ffffff;
    color: #1571b1 !important;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: var(--sl-transition);
}

.sl-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    color: #0d4d7a !important;
}

.sl-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--sl-transition);
}

.sl-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-slider-area.home-2 {
        margin-top: 100px;
    }
    .category-menu {
        margin-bottom: 24px;
    }
    .section-head-title h2 {
        font-size: 26px;
    }
}

/* ==========================================
   8. NEXT-GEN CITY KEYWORD SHOWCASE & HERO BANNER
   ========================================== */

.sl-city-keyword-showcase {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin: 35px 0;
    box-shadow: var(--sl-shadow-md);
    border: 1px solid #e2e8f0;
}

.sl-city-keyword-showcase .showcase-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sl-city-keyword-showcase .showcase-title i {
    color: #1571b1;
}

.sl-city-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.sl-city-card-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    transition: var(--sl-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sl-city-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1571b1 0%, #2563eb 100%);
    opacity: 0.8;
}

.sl-city-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sl-shadow-md);
    border-color: #3b82f6;
    background: #ffffff;
}

.sl-city-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sl-city-header .city-name {
    font-size: 16px;
    font-weight: 800;
    color: #1571b1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-city-header .city-name i {
    color: #ef4444;
    font-size: 14px;
}

.sl-city-header .city-tag {
    font-size: 11px;
    font-weight: 700;
    background: #dbeafe;
    color: #1e40af;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
}

.sl-city-content {
    font-size: 13px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* Next-Gen Product Banner Spotlight */
.product-banner-nextgen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: var(--sl-shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #0f172a;
}

.product-banner-nextgen img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-banner-nextgen:hover img {
    transform: scale(1.04);
}

.product-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 40px;
    color: #ffffff;
}

.product-banner-info {
    /* max-width: 500px; */
}

.product-banner-info .banner-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.8);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-banner-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.product-banner-info p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .product-banner-overlay {
        padding: 20px;
    }
    .product-banner-info h3 {
        font-size: 20px;
    }
    .sl-city-card-grid {
        grid-template-columns: 1fr;
    }
}

