﻿/* ===== NEW NAV WRAPPER ===== */
.new-nav-wrapper {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}
.new-nav-wrapper.is-sticky {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.new-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    background: #fff;
}

.top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 24px;
    width: 100%;
    padding-bottom: 6px;
}

.new-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.new-nav-brand .brand-icon {
    width: 50px;
    height: 50px;
    background: url(images/logo.png) left center no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.new-nav-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.new-nav-brand .brand-text .brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.new-nav-brand .brand-text .brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.2px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 40px;
    background: #f8fafc;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.cta-phone i {
    color: #2563eb;
    font-size: 15px;
}
.cta-phone:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: all 0.2s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.new-nav-search {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 220px;
}
.new-nav-search input[type="text"] {
    width: 110px;
    padding: 6px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 13px;
    background: #f8fafc;
    transition: width 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    outline: none;
}
.new-nav-search input[type="text"]:focus {
    width: 180px;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}
.new-nav-search button {
    padding: 6px 16px;
    border: none;
    border-radius: 40px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
}
.new-nav-search button:hover {
    background: #1d4ed8;
}

.nav-row {
    width: 100%;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
    margin-top: 4px;
}
.nav-row .new-nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.new-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.new-nav-links>li {
    position: relative;
    margin: 0;
    padding: 0;
}
.new-nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.new-nav-links>li>a:hover,
.new-nav-links>li>a:focus {
    color: #2563eb;
    background: #eff6ff;
}
.new-nav-links>li>a.active {
    color: #2563eb;
    background: #eff6ff;
}
.new-nav-links>li>a .nav-arrow {
    font-size: 10px;
    transition: transform 0.25s ease;
    color: #94a3b8;
}

.new-nav-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 1000;
    pointer-events: none;
}

/* ===== FIX 1: Desktop submenu ONLY opens immediate child ===== */
.new-nav-links>li:hover > .dropdown-menu,
.new-nav-links>li>a[aria-expanded="true"]+.dropdown-menu,
.new-nav-links>li .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ===== FIX 2: Transparent bridge for submenu hover ===== */
.dropdown-menu .dropdown-submenu {
    position: relative;
}

.dropdown-menu .dropdown-submenu::after {
    content: '';
    position: absolute;
    top: -25px;
    bottom: -25px;
    right: -45px;
    width: 60px;
    pointer-events: auto;
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}
.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    background: #f1f5f9;
    color: #2563eb;
    border-left-color: #2563eb;
}
.dropdown-menu li a .dd-icon {
    font-size: 14px;
    color: #94a3b8;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.dropdown-menu li a:hover .dd-icon {
    color: #2563eb;
}

.dropdown-menu .dropdown-submenu {
    position: relative;
}
.dropdown-menu .dropdown-submenu>.dropdown-menu {
    top: -6px;
    left: 100%;
    min-width: 220px;
    border-radius: 10px;
}
.dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.dropdown-menu .dropdown-submenu>a::after {
    content: "›";
    margin-left: auto;
    font-size: 18px;
    color: #94a3b8;
}

.new-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #0f172a;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    flex-shrink: 0;
    margin-left: 4px;
}
.new-nav-toggle:hover {
    background: #f1f5f9;
}
.new-nav-toggle i {
    pointer-events: none;
}

.new-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.new-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.new-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 28px 24px 120px;   /* <-- LARGE bottom padding = extra scroll room */
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.new-nav-mobile .mobile-cta {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 20px));  /* keep this */
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.new-nav-mobile.open {
    right: 0;
}

.new-nav-mobile .mobile-header .mobile-brand {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.new-nav-mobile .mobile-header .mobile-brand i {
    color: #2563eb;
    font-size: 22px;
}
.new-nav-mobile .mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.new-nav-mobile .mobile-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.new-nav-mobile .mobile-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}
.new-nav-mobile .mobile-links>li {
    border-bottom: 1px solid #f1f5f9;
}
.new-nav-mobile .mobile-links>li:last-child {
    border-bottom: none;
}
.new-nav-mobile .mobile-links>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.new-nav-mobile .mobile-links>li>a:hover {
    color: #2563eb;
}
.new-nav-mobile .mobile-links>li>a .mobile-arrow {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.25s ease;
}
.new-nav-mobile .mobile-links>li.open>a .mobile-arrow {
    transform: rotate(180deg);
    color: #2563eb;
}
.new-nav-mobile .mobile-dropdown {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0 0 8px 0;
    display: none;
    border-left: 2px solid #e2e8f0;
}
.new-nav-mobile .mobile-links>li.open .mobile-dropdown {
    display: block;
}

/* ===== FIX 3: Mobile submenu opens when parent li has .open class ===== */
.new-nav-mobile .mobile-dropdown li.has-mobile-subdrop.open .mobile-subdrop {
    display: block;
}

.new-nav-mobile .mobile-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
}
.new-nav-mobile .mobile-dropdown li a:hover {
    color: #2563eb;
    background: #f1f5f9;
}
.new-nav-mobile .mobile-dropdown .mobile-subdrop {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0 0 4px 0;
    display: none;
    border-left: 2px solid #e2e8f0;
}
.new-nav-mobile .mobile-dropdown .mobile-subdrop li a {
    padding-left: 20px;
    font-size: 13px;
    color: #64748b;
}
.new-nav-mobile .mobile-dropdown .mobile-subdrop li a:hover {
    color: #2563eb;
}
.new-nav-mobile .mobile-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.new-nav-mobile .mobile-cta .cta-button-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
    transition: all 0.2s ease;
}
.new-nav-mobile .mobile-cta .cta-button-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}
.new-nav-mobile .mobile-cta .cta-phone-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 40px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}
.new-nav-mobile .mobile-cta .cta-phone-mobile:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}
.new-nav-mobile .mobile-cta .cta-phone-mobile i {
    color: #2563eb;
}

/* ===== DESKTOP ===== */
@media (min-width: 981px) {
    .nav-row .new-nav-links {
        justify-content: center !important;
        gap: 4px 12px !important;
    }
    .nav-row {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .new-nav-mobile,
    .new-nav-overlay {
        display: none !important;
    }
    .new-nav-brand .brand-icon {
        width: 80px !important;
        height: 80px !important;
    }
    .new-nav-brand .brand-text .brand-name {
        font-size: 40px !important;
        line-height: 1.2 !important;
        font-weight: normal !important;
        letter-spacing: -2px !important;
        color: #1c1c1c !important;
    }
    .new-nav-brand .brand-text .brand-tagline {
        font-size: 12px !important;
        line-height: 1.2 !important;
        font-weight: normal !important;
        text-transform: uppercase !important;
        color: #858585 !important;
        letter-spacing: 0 !important;
    }
    .top-row {
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 24px 40px !important;
    }
}

/* ===== TABLET & MOBILE ===== */
@media (max-width: 980px) {
    .new-nav-links {
        display: none !important;
    }
    .new-nav-toggle {
        display: block !important;
        padding: 4px 6px !important;
        margin-left: 4px !important;
    }
    .new-nav-inner {
        height: 64px !important;
        padding: 0 14px !important;
    }
    .top-row {
        gap: 4px !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    .new-nav-brand .brand-icon {
        width: 44px !important;
        height: 44px !important;
    }
    .new-nav-brand .brand-text .brand-name {
        font-size: 16px !important;
    }
    .new-nav-brand .brand-text .brand-tagline {
        display: none !important;
    }
    .cta-phone {
        padding: 4px 6px !important;
        font-size: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .cta-phone i {
        font-size: 20px !important;
    }
    .cta-phone span {
        display: none !important;
    }
    .cta-button {
        padding: 4px 8px !important;
        font-size: 0 !important;
        min-width: 32px !important;
    }
    .cta-button i {
        font-size: 18px !important;
    }
    .cta-button span {
        display: none !important;
    }
    .new-nav-search {
        display: none !important;
    }
    .nav-row {
        display: none !important;
    }
    .new-nav-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    }
    .bg-1 {
        padding-top: 74px !important;
    }
    .new-nav-overlay {
        z-index: 9999 !important;
    }
    .new-nav-mobile {
        z-index: 10000 !important;
    }
}

@media (max-width: 480px) {
    .new-nav-inner {
        height: 58px !important;
        padding: 0 10px !important;
    }
    .new-nav-brand .brand-icon {
        width: 38px !important;
        height: 38px !important;
    }
    .new-nav-brand .brand-text .brand-name {
        font-size: 14px !important;
    }
    .new-nav-brand .brand-text .brand-tagline {
        display: none !important;
    }
    .new-nav-toggle {
        font-size: 22px;
        padding: 4px 6px;
    }
    .new-nav-mobile {
        padding: 20px 16px 24px;
        width: 92%;
        max-width: 340px;
    }
    .new-nav-mobile .mobile-links>li>a {
        font-size: 15px;
        padding: 12px 0;
    }
    .new-nav-mobile .mobile-dropdown li a {
        font-size: 13px;
        padding: 8px 0 8px 10px;
    }
    .new-nav-mobile .mobile-cta .cta-button-mobile {
        font-size: 14px;
        padding: 12px 16px;
    }
    .new-nav-mobile .mobile-cta .cta-phone-mobile {
        font-size: 14px;
        padding: 12px 16px;
    }
    .new-nav-search {
        display: none !important;
    }
    .new-nav-mobile .mobile-cta .cta-button-mobile,
    .new-nav-mobile .mobile-cta .cta-phone-mobile {
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        padding: 12px 10px;
    }
    .new-nav-mobile .mobile-cta .cta-phone-mobile {
        font-size: 14px;
        padding: 12px 16px;
    }
    .new-nav-mobile .mobile-links li a[lang="es"] {
        font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", system-ui, sans-serif;
        font-size: 15px;
    }
}
/* ===== MOBILE PANEL - FIXED ===== */
.new-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 28px 24px 0 24px;  /* Remove bottom padding, let flex handle it */
    overflow: hidden !important;  /* CRITICAL: No scroll on the panel itself */
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100vh;  /* Full viewport height */
}
.new-nav-mobile.open {
    right: 0;
}

/* ===== MOBILE HEADER (fixed at top) ===== */
.new-nav-mobile .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;  /* Don't shrink */
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

/* ===== MOBILE LINKS (scrollable) ===== */
.new-nav-mobile .mobile-links {
    flex: 1 1 auto;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    min-height: 0;  /* CRITICAL for flex overflow */
    padding: 0;
    margin: 0 0 16px 0;
    list-style: none;
    /* Remove the bottom margin/padding that pushes content */
}

/* ===== MOBILE CTA (fixed at bottom) ===== */
.new-nav-mobile .mobile-cta {
    flex-shrink: 0;  /* CRITICAL: Don't shrink */
    padding: 16px 0 24px 0;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    margin-top: auto;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 20px));
}
@media (max-width: 480px) {
    .new-nav-mobile {
        padding: 20px 16px 0 16px;
        width: 92%;
        max-width: 340px;
    }
    .new-nav-mobile .mobile-links {
        padding: 0;
    }
    .new-nav-mobile .mobile-cta {
        padding: 12px 0 16px 0;
    }
}




/* ===== BRANDS GRID ===== */
.brand-item.cta-card {
    background: #2563eb !important;
    border-color: #2563eb !important;
    border-radius: 16px !important;
    padding: 0 !important;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-item.cta-card a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    padding: 16px 12px;
    box-sizing: border-box;
}

.brand-item.cta-card svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.brand-item.cta-card span {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.brand-item.cta-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
    border-color: #1d4ed8;
}

/* Mobile: full-width, extra large */
@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 12px;
        gap: 12px;
    }

    /* CTA card spans full width */
    .brand-item.cta-card {
        grid-column: 1 / -1 !important;
        min-height: 180px;
        padding: 8px !important;
        border-radius: 20px !important;
    }

    .brand-item.cta-card a {
        padding: 12px 10px !important;
    }

    /* Scale SVG up 40% for big, readable text */
    .brand-item.cta-card svg {
        transform: scale(1.4);
        transform-origin: center center;
        width: 100% !important;
        height: auto !important;
        max-height: 200px;
    }

    .brand-item.cta-card span {
        font-size: 1.2rem !important;
        margin-top: 12px !important;
        font-weight: 800 !important;
    }
}

/* Tablet (500px–980px) – make CTA a bit bigger */
@media (min-width: 500px) and (max-width: 980px) {
    .brand-item.cta-card {
        grid-column: 1 / -1 !important;
        min-height: 160px;
        padding: 10px !important;
        border-radius: 18px !important;
    }

    .brand-item.cta-card svg {
        transform: scale(1.2);
        transform-origin: center center;
        max-height: 160px;
    }

    .brand-item.cta-card span {
        font-size: 1.1rem !important;
        margin-top: 10px !important;
    }
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 20px 0;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}
.brand-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.brand-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.brand-item img {
    max-width: 100px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.3s ease;
}
.brand-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
    background: #ffffff;
}
.brand-item:hover img {
    transform: scale(1.15);
}
.brand-item:hover span {
    color: #2563eb;
}
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 15px;
    }
    .brand-item img {
        max-width: 70px;
        height: 50px;
    }
}
@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 12px;
    }
    .brand-item {
        padding: 10px 6px;
    }
    .brand-item img {
        max-width: 50px;
        height: 40px;
    }
    .brand-item span {
        font-size: 0.65rem;
    }
}
/* ===== ACCORDION ===== */
.CCRSWrapper .CCRSItem {
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.CCRSItem:hover .header-badge {
    background: #2563eb !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.25s ease;
}
.CCRSWrapper .CCRSItemHeading {
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.CCRSWrapper .CCRSItemContent {
    padding: 16px 16px 0 16px;  /* FIX 4: Removed bottom padding to eliminate white shadow */
    border-top: 1px solid #ddd;
    display: none;
}
.CCRSWrapper .CCRSItem.open .CCRSItemContent {
    display: block;
}
.CCRSWrapper .table-responsive table td,
.CCRSWrapper .table-responsive table th {
    padding: 10px 8px;
    border: 1px solid #ccc;
    text-align: left;
    vertical-align: middle;
}
.CCRSWrapper .table-responsive table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* FIX 5: Remove margin from details inside Gaming section */
.CCRSItemContent details {
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}
.CCRSItemContent details:last-child {
    margin-bottom: 0;
}
.CCRSItemContent details summary::-webkit-details-marker {
    display: none;
}
.CCRSItemContent details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    background: #eef2ff !important;
    color: #1e293b !important;
    padding: 14px 20px !important;
    border: none !important;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    user-select: none;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
.CCRSItemContent details summary:hover {
    background: #dbeafe !important;
    color: #1e40af !important;
    padding-left: 26px !important;
}
.CCRSItemContent details summary::after {
    content: "▼";
    font-size: 11px;
    color: #64748b;
    transition: transform 0.3s ease;
    margin-left: 16px;
    flex-shrink: 0;
}
.CCRSItemContent details[open] summary::after {
    transform: rotate(180deg);
    color: #3b82f6;
}
.CCRSItemContent details[open] {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}
.CCRSItemContent details[open] summary {
    background: #dbeafe !important;
    color: #1e40af !important;
}
.CCRSItemContent details summary::before {
    content: "💻";
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}
.CCRSItemContent details:nth-child(1) summary::before {
    content: "🔵 ";
    opacity: 1;
}
.CCRSItemContent details:nth-child(2) summary::before {
    content: "🔴 ";
    opacity: 1;
}
.CCRSItemContent details:nth-child(3) summary::before {
    content: "🟣 ";
    opacity: 1;
}
.CCRSItemContent details:nth-child(4) summary::before {
    content: "🟢 ";
    opacity: 1;
}
.CCRSItemContent details:nth-child(5) summary::before {
    content: "🟠 ";
    opacity: 1;
}
.CCRSItemContent details:nth-child(6) summary::before {
    content: "⬛ ";
    opacity: 1;
}
.CCRSItemContent details .table-responsive {
    padding: 16px 20px;
    background: #fafbfc;
    border-top: 1px solid #e2e8f0;
    animation: accordionSlide 0.3s ease;
}
@keyframes accordionSlide {
    0% {
        opacity: 0;
        transform: translateY(-6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.header-icon {
    color: #1e40af;
    width: 28px;
    text-align: center;
    font-size: 18px;
    margin-right: 6px;
    flex-shrink: 0;
}
.header-badge {
    margin-left: auto;
    font-size: 11px;
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
        .ck-hero,
        .ck-section {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .ck-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
            width: 100%;
        }
        .ck-hero {
            background: #fdfdfd;
            padding: 40px 0 40px;
            border-bottom: 1px solid #e5e5e5;
        }
        .ck-section {
            padding: 30px 0 20px;
            background: #fdfdfd;
        }
        .ck-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .ck-h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.15;
            color: #2b2b2b;
            margin-bottom: 12px;
        }
        .ck-h1 span { color: #2563eb; }
        .ck-subhead {
            font-size: 17px;
            color: #959595;
            max-width: 540px;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .ck-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
        }
        .ck-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
        }
        .ck-btn-primary {
            background: #2563eb;
            color: #fff;
            box-shadow: 0 4px 16px rgba(37,99,235,0.30);
        }
        .ck-btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }
        .ck-btn-secondary {
            background: #f1f5f9;
            color: #0f172a;
            border: 1px solid #e2e8f0;
        }
        .ck-btn-secondary:hover {
            background: #e2e8f0;
            transform: translateY(-2px);
        }
        .ck-social {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #959595;
        }
        .ck-social .stars { color: #f59e0b; letter-spacing: 2px; }
        .ck-social strong { color: #2b2b2b; }
        .ck-hero-img {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ck-hero-img img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border: 1px solid #e5e5e5;
        }
        .ck-title {
            font-size: 28px;
            font-weight: 700;
            color: #2b2b2b;
            margin-bottom: 4px;
        }
        .ck-sub {
            font-size: 16px;
            color: #959595;
            margin-bottom: 24px;
            max-width: 700px;
        }
        .ck-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 8px 0 0;
        }
        .ck-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px 16px;
            border: 1px solid #e5e5e5;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            transition: all 0.2s;
            text-align: center;
        }
        .ck-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transform: translateY(-3px);
        }
        .ck-card i { margin-bottom: 8px; color: #2563eb; }
        .ck-card h3 {
            font-size: 16px;
            margin-bottom: 4px;
            color: #2b2b2b;
            font-weight: 700;
        }
        .ck-card p {
            font-size: 13px;
            color: #959595;
            line-height: 1.4;
            margin: 0;
        }
        .ck-nap {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #e5e5e5;
            margin-top: 10px;
        }
        .ck-nap-left { flex: 2; min-width: 220px; }
        .ck-nap-right {
            flex: 2;
            min-width: 280px;
            background: #f8fafc;
            border-radius: 12px;
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
        }
        .ck-nap-left h3 { font-size: 20px; margin-bottom: 4px; color: #2b2b2b; }
        .ck-nap-left p { font-size: 14px; color: #959595; margin-bottom: 4px; }

        /* Google Reviews inside NAP – compact but fully functional */
        .ck-nap-right .rating-summary {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 12px;
            background: #fff;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        .ck-nap-right .rating-summary .rating-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
        }
        .ck-nap-right .rating-summary .rating-stars {
            color: #f59e0b;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        .ck-nap-right .rating-summary .rating-total {
            font-size: 0.7rem;
            color: #64748b;
            margin-left: auto;
        }
        .ck-nap-right .slider-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #eef2f6;
            min-height: 140px;
            padding: 10px 12px;
            margin: 0 0 6px;
        }
        .ck-nap-right .slide-track {
            position: relative;
            width: 100%;
            min-height: 120px;
        }
        .ck-nap-right .slide-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(30px) scale(0.95);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            padding: 2px 0;
        }
        .ck-nap-right .slide-item.active {
            position: relative;
            opacity: 1;
            transform: translateX(0) scale(1);
            pointer-events: auto;
        }
        .ck-nap-right .slide-item.exit-left {
            opacity: 0;
            transform: translateX(-30px) scale(0.95);
        }
        .ck-nap-right .slide-item .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .ck-nap-right .slide-item .top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
        }
        .ck-nap-right .slide-item .info {
            flex: 1;
        }
        .ck-nap-right .slide-item .name {
            font-weight: 600;
            color: #0f172a;
            font-size: 0.9rem;
            display: block;
        }
        .ck-nap-right .slide-item .stars {
            color: #f59e0b;
            font-size: 0.7rem;
            letter-spacing: 1px;
            margin-top: 1px;
        }
        .ck-nap-right .slide-item .review-text {
            font-size: 0.85rem;
            line-height: 1.4;
            color: #1e293b;
            margin: 4px 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .ck-nap-right .slide-item .bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #f0f4f9;
            padding-top: 6px;
            flex-wrap: wrap;
            gap: 4px;
        }
        .ck-nap-right .slide-item .date {
            font-size: 0.65rem;
            color: #94a3b8;
            font-weight: 500;
        }
        .ck-nap-right .slide-item .view-link {
            color: #2563eb;
            font-size: 0.7rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 0 8px;
            border-radius: 20px;
            background: #eff6ff;
            transition: all 0.2s;
            cursor: pointer;
        }
        .ck-nap-right .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 2px;
        }
        .ck-nap-right .controls button {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            background: #fff;
            color: #1e293b;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }
        .ck-nap-right .controls button:hover:not(:disabled) {
            background: #2563eb;
            color: #fff;
            border-color: #2563eb;
        }
        .ck-nap-right .controls button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        .ck-nap-right .dots {
            display: flex;
            gap: 4px;
        }
        .ck-nap-right .dots .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #d1d9e6;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .ck-nap-right .dots .dot.active {
            background: #2563eb;
            transform: scale(1.3);
        }
        .ck-nap-right .card-footer {
            margin-top: 6px;
            font-size: 0.75rem;
            border-top: 1px solid #f0f4f9;
            padding-top: 6px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 4px;
        }
        .ck-nap-right .card-footer a {
            color: #2563eb;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .ck-nap-right .card-footer a:hover {
            text-decoration: underline;
        }
        .ck-nap-right .card-footer .counter {
            font-size: 0.65rem;
            color: #94a3b8;
            background: #f1f5f9;
            padding: 1px 10px;
            border-radius: 30px;
            font-weight: 500;
        }
        .ck-nap-right .loading-state,
        .ck-nap-right .error-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 16px 10px;
            color: #94a3b8;
            text-align: center;
            font-size: 0.85rem;
        }
        .ck-nap-right .loading-state i,
        .ck-nap-right .error-state i {
            font-size: 1.2rem;
        }
        .ck-nap-right .error-state {
            color: #ef4444;
        }

        /* Dont Hide the old slider
        .bg-1 { display: none !important; }*/

        /* Expanded service area (full width) */
        .service-area-expanded {
            margin: 20px 0 30px;
            padding: 24px 28px;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #e5e5e5;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }
        .service-area-expanded h3 {
            font-size: 22px;
            color: #2b2b2b;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .service-area-expanded h3 i {
            color: #f59e0b;
        }
        .service-area-expanded p {
            font-size: 15px;
            color: #475569;
            margin-bottom: 12px;
        }
        .service-area-expanded .zip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 8px 16px;
            background: #f8fafc;
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid #e2e8f0;
            font-size: 14px;
            color: #1e293b;
            line-height: 1.6;
        }
        .service-area-expanded .zip-grid strong {
            color: #0f172a;
            font-weight: 700;
        }
        .service-area-expanded .callout {
            margin-top: 16px;
            background: linear-gradient(135deg, #fef9e7, #fef3c7);
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid #fcd34d;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 1.05rem;
            color: #1e293b;
        }
        .service-area-expanded .callout i {
            color: #f59e0b;
            font-size: 1.2rem;
        }
        .service-area-expanded .callout a {
            font-weight: 700;
            color: #0f172a;
            font-size: 1.2rem;
            text-decoration: none;
            white-space: nowrap;
        }

        /* Responsive for the NAP reviews */
        @media (max-width: 900px) {
            .ck-grid-2 { grid-template-columns: 1fr; gap: 20px; }
            .ck-h1 { font-size: 30px; }
            .ck-subhead { font-size: 16px; }
            .ck-title { font-size: 24px; }
            .ck-nap { flex-direction: column; padding: 20px; }
            .ck-nap-right { min-width: auto; }
            .service-area-expanded { padding: 18px; }
            .service-area-expanded .zip-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
            .ck-h1 { font-size: 24px; }
            .ck-btn { padding: 10px 20px; font-size: 14px; width: 100%; justify-content: center; }
            .ck-buttons { flex-direction: column; }
            .ck-grid-4 { grid-template-columns: 1fr; }
            .ck-title { font-size: 20px; }
            .service-area-expanded { padding: 14px; }
            .service-area-expanded .zip-grid { padding: 12px; }
        }
       /* ===== CITY LIST ===== */
.city-list-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    background: #f8fafc;
    padding: 24px 20px;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid #e2e8f0;
}
.city-region {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.region-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 15px;
    margin-bottom: 4px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.region-label i {
    color: #2563eb;
    font-size: 16px;
}
.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.city-links a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}
.city-links a:hover {
    background: #dbeafe;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
@media (max-width: 640px) {
    .city-list-enhanced {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 20px;
    }
    .city-links a {
        font-size: 12px;
        padding: 2px 8px;
    }
}

/* ===== GOOGLE REVIEWS WIDGET ===== */
.review-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8edf4;
    border-top: 8px solid #2563eb;
    padding: 20px 18px 16px;
    overflow: hidden;
    margin: 20px 0;
    max-width: 600px;
    width: 100%;
}
.review-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.review-card h3 i.fa-star {
    color: #f59e0b;
}
.live-badge {
    font-size: 0.55rem;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 10px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.live-badge i {
    font-size: 0.45rem;
    animation: blink 1.2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.rating-summary .big-star {
    font-size: 1.6rem;
    color: #f59e0b;
    line-height: 1;
}
.rating-summary .rating-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}
.rating-summary .rating-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.rating-summary .rating-total {
    font-size: 0.75rem;
    color: #64748b;
    margin-left: auto;
}
.rating-summary .rating-total strong {
    color: #0f172a;
}
.slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fafcff;
    border: 1px solid #eef2f6;
    min-height: 180px;
    padding: 16px 14px 14px;
    margin: 4px 0 10px;
}
.slide-track {
    position: relative;
    width: 100%;
    min-height: 150px;
}
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    padding: 2px 0;
}
.slide-item.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
.slide-item.exit-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
}
.slide-item .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.slide-item .top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.slide-item .info {
    flex: 1;
}
.slide-item .name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    display: block;
}
.slide-item .stars {
    color: #f59e0b;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 2px;
}
.slide-item .review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1e293b;
    margin: 6px 0 12px;
    padding-right: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slide-item .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f4f9;
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 6px;
}
.slide-item .date {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}
.slide-item .view-link {
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 14px;
    border-radius: 20px;
    background: #eff6ff;
    transition: all 0.2s;
    cursor: pointer;
}
.slide-item .view-link:hover {
    background: #dbe7f9;
    color: #1d4ed8;
}
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}
.controls button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.controls button:hover:not(:disabled) {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.dots {
    display: flex;
    gap: 6px;
}
.dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d9e6;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.dots .dot.active {
    background: #2563eb;
    transform: scale(1.3);
}
.dots .dot:hover {
    background: #94a3b8;
}
.card-footer {
    margin-top: 12px;
    font-size: 0.8rem;
    border-top: 1px solid #f0f4f9;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.card-footer a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.card-footer a:hover {
    text-decoration: underline;
}
.card-footer .counter {
    font-size: 0.7rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 14px;
    border-radius: 30px;
    font-weight: 500;
}
.loading-state,
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 12px;
    color: #94a3b8;
    text-align: center;
}
.loading-state i,
.error-state i {
    font-size: 1.6rem;
}
.error-state {
    color: #ef4444;
}
.error-state p {
    color: #64748b;
    font-size: 0.85rem;
}
.error-state .error-detail,
.loading-state .debug-info {
    font-size: 0.65rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: monospace;
    max-width: 100%;
    word-break: break-all;
    margin-top: 4px;
}
@media (max-width: 480px) {
    .review-card {
        padding: 16px 14px 12px;
    }
    .slider-wrap {
        padding: 12px 10px;
        min-height: 160px;
    }
    .slide-item .review-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    .rating-summary {
        gap: 6px;
        padding: 6px 10px;
    }
    .rating-summary .rating-total {
        margin-left: 0;
        width: 100%;
    }
}
/* ===== CCRS CASE STUDIES  ===== */
                    .ccrs-case-studies {
                        display: block;
                        width: 100%;
                        max-width: 100%;
                        margin: 0 0 30px 0;
                        padding: 0;
                        box-sizing: border-box;
                        clear: both;
                        overflow: visible;
                    }
                    .ccrs-carousel-track {
                        display: flex;
                        transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
                        will-change: transform;
                        width: 100%;
                    }
                    .ccrs-carousel-wrapper {
                        position: relative;
                        overflow: hidden;
                        border-radius: 32px;
                        background: #ffffff;
                        box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.03);
                        padding: 0.5rem 0;
                        width: 100%;
                        box-sizing: border-box;
                    }
                    .ccrs-dot {
                        width: 10px;
                        height: 10px;
                        border-radius: 30px;
                        border: none;
                        background: #d1d9e6;
                        padding: 0;
                        cursor: pointer;
                        transition: all 0.25s;
                    }
                    .ccrs-dot.active {
                        background: #2563eb;
                        width: 28px;
                    }
                    .ccrs-carousel-btn {
                        background: #ffffff;
                        border: 1px solid #e2e8f0;
                        width: 48px;
                        height: 48px;
                        border-radius: 60px;
                        font-size: 1.2rem;
                        color: #1e293b;
                        cursor: pointer;
                        transition: all 0.2s;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
                        font-family: inherit;
                    }
                    .ccrs-carousel-btn:hover:not(:disabled) {
                        background: #2563eb;
                        color: #fff;
                        border-color: #2563eb;
                        box-shadow: 0 8px 18px rgba(37,99,235,0.15);
                        transform: scale(1.03);
                    }
                    .ccrs-carousel-btn:disabled {
                        opacity: 0.3;
                        cursor: not-allowed;
                        transform: none;
                    }
                    .ccrs-dots {
                        display: flex;
                        gap: 0.5rem;
                        margin: 0 0.5rem;
                    }
                    .ccrs-case-card-inner {
                        flex: 0 0 100%;
                        padding: 2rem 2.5rem 2.2rem;
                        display: grid;
                        grid-template-columns: 1fr 1.2fr;
                        gap: 2.2rem 2.8rem;
                        align-items: start;
                        background: #ffffff;
                        min-height: 380px;
                        width: 100%;
                        box-sizing: border-box;
                    }
                    @media (max-width: 820px) {
                        .ccrs-case-card-inner {
                            grid-template-columns: 1fr !important;
                            gap: 1.5rem !important;
                            padding: 1.8rem 1.5rem !important;
                            min-height: auto !important;
                        }
                        .ccrs-tech-card-inner {
                            flex-direction: column !important;
                            text-align: center !important;
                            padding: 1.8rem 1.2rem !important;
                        }
                        .ccrs-tech-cta-wrap {
                            margin-left: 0 !important;
                            width: 100% !important;
                        }
                        .ccrs-tech-cta-wrap a {
                            justify-content: center !important;
                            width: 100% !important;
                        }
                        .ccrs-name-row-wrap {
                            justify-content: center !important;
                        }
                        .ccrs-creds-wrap {
                            justify-content: center !important;
                        }
                        .ccrs-case-stats-wrap {
                            flex-direction: column !important;
                            gap: 0.5rem !important;
                        }
                    }
                    @media (max-width: 500px) {
                        .ccrs-case-card-inner {
                            padding: 1.2rem !important;
                        }
                        .ccrs-carousel-btn {
                            width: 40px !important;
                            height: 40px !important;
                            font-size: 1rem !important;
                        }
                    }
/* ===== TWO IMAGES ROW ===== */
.two-images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    background: transparent;
}
.two-images-row .img-col {
    flex: 0 0 auto;
    max-width: 100%;
    background: transparent;
}
.two-images-row .img-col img {
    max-width: 100%;
    height: auto;
    background: transparent;
    display: block;
}
@media (max-width: 700px) {
    .two-images-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* ===== FLEX ROW ===== */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}
.flex-row>* {
    flex: 1 1 280px;
    display: flex;
    align-items: stretch;
    min-width: 250px;
}
.bg-3 {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bg-3 .indent {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bg-3 .indent .button-1 {
    margin-top: auto;
    align-self: flex-start;
}
.bg-3 .indent .ul-1 {
    flex: 1;
    margin-bottom: 16px;
}
.card-accent-top {
    border-top: 4px solid #2563eb;
}
.card-accent-top-green {
    border-top: 4px solid #22c55e;
}
.card-accent-top-purple {
    border-top: 4px solid #8b5cf6;
}

   /* ===== HUB CARDS (Quick Navigation) ===== */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0 40px;
}

.hub-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
    border-color: #2563eb;
}

.hub-icon {
    font-size: 2.2rem;
    color: #2563eb;
    margin-bottom: 12px;
    line-height: 1;
}

.hub-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.hub-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 18px;
}

.hub-arrow {
    align-self: flex-start;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: #2563eb;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.hub-card:hover .hub-arrow {
    background: #2563eb;
    color: #ffffff;
    transform: translateX(4px);
}

/* Mobile responsiveness for hub cards */
@media (max-width: 768px) {
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 20px 0 30px;
    }
    .hub-card[style*="grid-column: span 2;"] {
        grid-column: auto !important;
    }
}
                    /* ===== VIRUS REMOVAL SECTION CARDS ===== */
.virus-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    align-items: stretch;
}
.virus-service-grid .virus-card {
    flex: 1 1 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
    border-top-width: 4px;
    border-top-style: solid;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.virus-service-grid .virus-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.virus-service-grid .virus-card .card-icon {
    font-size: 28px;
    margin-bottom: 4px;
}
.virus-service-grid .virus-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 4px;
    color: #0f172a;
}
.virus-service-grid .virus-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 8px 0;
    flex: 1; /* pushes content to fill space */
}
/* Card accent colors */
.virus-card-red { border-top-color: #ef4444; }
.virus-card-yellow { border-top-color: #f59e0b; }
.virus-card-green { border-top-color: #22c55e; }

/* Scam warning box */
.virus-scam-warning {
    background: #eef2ff;
    border-radius: 12px;
    padding: 20px 24px;
    border-left: 6px solid #2563eb;
    margin: 16px 0;
}
.virus-scam-warning p {
    margin: 0;
    font-size: 15px;
    color: #1e293b;
}
.virus-scam-warning a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.virus-scam-warning a:hover {
    text-decoration: underline;
}

/* CTA text at bottom */
.virus-cta-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-top: 12px;
}
.virus-cta-text a {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}
.virus-cta-text a:hover {
    color: #2563eb;
}
footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 30px 0 20px;
            margin-top: 30px;
        }
        footer nav ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 20px;
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }
        footer nav ul li a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        footer nav ul li a:hover,
        footer nav ul li a.active {
            color: #60a5fa;
        }
        footer .link2 {
            color: #60a5fa;
            text-decoration: none;
        }
        footer .link2:hover {
            text-decoration: underline;
        }
