﻿/* ============================================================
   COMPLETE STYLE1.CSS
   ============================================================ */
/* ===== 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;
    }
}
article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video {
    display: block;
}
mark, rp, rt, ruby, summary, time {
    display: inline;
}
html {
    width: 100%;
}
html, body {
    height: 100%;
}
body {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #959595;
    min-width: 960px;
    background: #fdfdfd;
    font-size: 13px;
    line-height: 19px;
}
.main {
    width: 960px;
    padding: 0;
    margin: 0 auto;
    position: relative;
}
a {
    color: #5f564d;
    outline: none;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.link {
    text-decoration: underline;
}
.link2:hover {
    text-decoration: underline;
}
.wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.extra-wrap {
    overflow: hidden;
}
p {
    margin-bottom: 19px;
}
.p0 {
    margin-bottom: 0;
}
.p1 {
    margin-bottom: 2px;
}
.d-in-block {
    display: inline-block;
}
.d-block {
    display: block;
}
.reg {
    text-transform: uppercase;
}
.reg2 {
    letter-spacing: -1px;
}
.reg3 {
    letter-spacing: -2px;
}
.index {
    z-index: 9999;
    position: relative;
}
.rel {
    position: relative;
}
.fleft {
    float: left;
}
.fright {
    float: right;
}
.alignright {
    text-align: right;
}
.aligncenter {
    text-align: center;
}
.img-indent-l {
    float: left;
    margin: 0px 12px 0px 0px;
}
.img-indent-2 {
    float: left;
    margin: 0px 20px 0px 0px;
}
.indent {
    padding: 27px 20px 27px 25px;
}
.indent1 {
    padding: 25px 15px 15px 25px;
}
.indent2 {
    padding: 24px 15px 10px 19px;
}
.indent-left {
    padding-left: 0px;
}
.indent-bottom {
    padding-bottom: 18px;
}
.indent-bottom1 {
    padding-bottom: 8px;
}
.indent-right {
    padding-right: 0px;
}
.indent-top {
    padding-top: 19px;
}
.indent-top1 {
    padding-top: 39px;
}
.margin-top {
    margin-top: -10px;
}
.margin-top1 {
    margin-top: -2px;
}
.margin-top2 {
    margin-top: -6px;
}
.margin-top3 {
    margin-top: -8px;
}
.margin-top4 {
    margin-top: -4px;
}
.margin-top5 {
    margin-top: 7px;
}
.margin-bot {
    margin-bottom: 7px;
}
.margin-bot1 {
    margin-bottom: 47px;
}
.margin-bot2 {
    margin-bottom: 24px;
}
.margin-bot3 {
    margin-bottom: 21px;
}
.margin-bot4 {
    margin-bottom: 17px;
}
.margin-bot5 {
    margin-bottom: 30px;
}
.margin-bot6 {
    margin-bottom: 19px;
}
.margin-bot7 {
    margin-bottom: 58px;
}
.margin-bot8 {
    margin-bottom: 25px;
}
.margin-bot9 {
    margin-bottom: 15px;
}
.margin-bot10 {
    margin-bottom: 6px;
}
.margin-bot11 {
    margin-bottom: 10px;
}
.margin-bot12 {
    margin-bottom: 28px;
}
.margin-bot13 {
    margin-bottom: 26px;
}
.margin-bot14 {
    margin-bottom: 62px;
}
.margin-left {
    margin-left: 5px;
}
.margin-left1 {
    margin-left: 16px;
}
.margin-right {
    margin-right: 14px;
}
header {
    width: 100%;
    background: url(../images/bg-1.gif) left top repeat-x #f5f5f5;
}
hgroup {
    position: relative;
    background: url(../images/logo.png) left top no-repeat;
    padding-left: 92px;
    padding-top: 7px;
    padding-bottom: 39px;
    margin-left: -2px;
}
h1 {
    display: inline-block;
    font-size: 43px;
    line-height: 52px;
    font-weight: normal;
    letter-spacing: -3px;
    word-spacing: 3px;
}
h1 a {
    display: block;
    color: #1c1c1c;
}
h2 {
    color: #858585;
    font-size: 13px;
    line-height: 16px;
    margin-top: -3px;
    text-transform: uppercase;
    display: block;
    font-weight: normal;
    padding-left: 3px;
    word-spacing: -2px;
}
header nav {
    float: left;
    width: 939px;
    background: url(../images/menu.gif) left top repeat-x #e2e2e2;
    position: relative;
    border-right: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    border-top: 1px solid #c9c9c9;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
.menu {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 20;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    float: left;
}
.menu > li {
    float: left;
    position: relative;
    margin-top: -1px;
    margin-bottom: -1px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #717171;
    text-transform: uppercase;
    z-index: 20;
    padding: 9px 20px 10px 19px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #d3d3d3;
    border-top: 1px solid #c9c9c9;
}
.menu > li:first-child > a {
    border-left: 1px solid #d3d3d3;
    border-radius: 2px 0 0 2px;
    -moz-border-radius: 2px 0 0 2px;
    -webkit-border-radius: 2px 0 0 2px;
    padding: 9px 19px 10px 18px;
}
.menu li.sfHover {
    position: relative;
    z-index: 10;
}
.menu li a.active,
.menu > li > a:hover,
.menu > li.sfHover > a {
    color: #fff;
    background: url(../images/menu3.gif) left top repeat-x #333333;
    border-bottom-color: #323232;
    border-top-color: #464646;
    border-right-color: #555555;
}
.menu li:first-child a.active,
.menu > li:first-child > a:hover,
.menu > li:first-child.sfHover > a {
    border-left: none;
    padding-left: 19px;
}
.menu ul {
    z-index: 20;
    letter-spacing: normal;
    position: absolute;
    top: -999em;
    width: 205px;
    background: #333333;
    border: 1px solid #292929;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
}
.menu ul ul {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.menu ul li {
    width: 100%;
}
.menu li:hover {
    visibility: inherit;
}
.menu li li {
    background: none;
    margin: 0;
    border: none;
}
.menu li li a {
    font-family: Arial, Helvetica, sans-serif;
    background: none;
    text-transform: none;
    display: block;
    padding: 6px 0 7px 19px;
    font-size: 12px;
    line-height: 15px;
    color: #8f8d8d;
    border-top: 1px solid #292929;
}
.menu li li:first-child a {
    border: none;
}
.menu li li > a:hover,
.menu li li.sfHover > a {
    color: #fcfcfc;
}
.menu li:hover ul,
.menu li.sfHover ul {
    left: 0px;
    top: 40px;
    z-index: 999;
}
ul.menu li:hover li ul,
ul.menu li.sfHover li ul {
    top: -999em;
}
ul.menu li li:hover ul,
ul.menu li li.sfHover ul {
    left: 207px;
    top: 0px;
    z-index: 9999;
}
ul.menu li li:hover li ul,
ul.menu li li.sfHover li ul {
    top: -999em;
}
#content {
    width: 100%;
    padding: 60px 0;
    background: url(../images/bg-5.gif) left top repeat-x #fff;
}
#page1 #content {
    padding-top: 57px;
}
.bg-1 {
    background: url(../images/bg-2.jpg) left top repeat-x;
    width: 100%;
    border-top: 6px solid #fff;
    height: 351px;
}
.img {
    position: absolute;
    width: 359px;
    height: 582px;
    background: url(../images/page1_img.png) left top no-repeat;
    top: -113px;
    right: 0;
    z-index: 19;
}
.img2 {
    position: absolute;
    width: 437px;
    height: 582px;
    background: url(../images/hp-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img3 {
    position: absolute;
    width: 420px;
    height: 546px;
    background: url(../images/dell-aio.png) left top no-repeat;
    top: -65px;
    right: 0;
    z-index: 19;
}
.img4 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/lenovo-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img5 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/asus-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img6 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/compaq-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img7 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/sony-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img8 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/toshiba-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img9 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/samsung-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img10 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/acer-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img11 {
    position: absolute;
    width: 447px;
    height: 582px;
    background: url(../images/gateway-aio.png) left top no-repeat;
    top: -45px;
    right: 0;
    z-index: 19;
}
.img12 {
    position: absolute;
    width: 364px;
    height: 582px;
    background: url(../images/apple-imac.png) left top no-repeat;
    top: -113px;
    right: 0;
    z-index: 19;
}
.bg-2 {
    background: url(../images/bg-3.jpg) left top no-repeat;
    width: 100%;
    height: 351px;
    position: relative;
}
.bg-3 {
    background: url(../images/bg-4.png) left top no-repeat;
    width: 100%;
    height: 268px;
    overflow: hidden;
}
.bg-4 {
    background: url(../images/bg-6.png) left top no-repeat;
    height: 182px;
    width: 100%;
    overflow: hidden;
}
.bg-5 {
    width: 88px;
    height: 215px;
    position: absolute;
    right: 0;
    top: -22px;
    background: url(../images/page2_img8.png) left top no-repeat;
}
.bg-6 {
    background: url(../images/bg-7.png) left top no-repeat;
    height: 182px;
    overflow: hidden;
    width: 100%;
}
.border-1 {
    border-bottom: 1px solid #e5e5e5;
}
.border-2 {
    border-bottom: 1px solid #fff;
}
.button-1 {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    border-radius: 17px;
    -moz-border-radius: 17px;
    -webkit-border-radius: 17px;
    background: url(../images/button-1-2.png) left -82px repeat-x #555;
    background: -webkit-linear-gradient(top, #747474, #555);
    background: -moz-linear-gradient(top, #747474, #555);
    background: -ms-linear-gradient(top, #747474, #555);
    background: -o-linear-gradient(top, #747474, #555);
    background: linear-gradient(top, #747474, #555);
    padding: 7px 18px 10px 15px;
}
.button-1>span {
    display: inline-block;
    width: 17px;
    height: 11px;
    margin: 4px 0 0 13px;
    background: url(../images/button-1.png) left top no-repeat;
}
.button-1:hover {
    background: url(../images/button-1-2.png) repeat-x left 0 #2f2f2f;
    background: -webkit-linear-gradient(top, #404040, #2f2f2f);
    background: -moz-linear-gradient(top, #404040, #2f2f2f);
    background: -ms-linear-gradient(top, #404040, #2f2f2f);
    background: -o-linear-gradient(top, #404040, #2f2f2f);
    background: linear-gradient(top, #404040, #2f2f2f);
}
.button-2 {
    display: inline-block;
    position: relative;
    font-size: 13px;
    line-height: 16px;
    color: #3e3e3e;
    padding: 4px 13px 6px;
    border: 1px solid #c9c9c9;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    background: url(../images/button-2.png) repeat-x left -88px #e2e2e2;
    background: -webkit-linear-gradient(top, #fefefe, #e2e2e2);
    background: -moz-linear-gradient(top, #fefefe, #e2e2e2);
    background: -ms-linear-gradient(top, #fefefe, #e2e2e2);
    background: -o-linear-gradient(top, #fefefe, #e2e2e2);
    background: linear-gradient(top, #fefefe, #e2e2e2);
}
.button-2:hover {
    background: url(../images/button-2.png) repeat-x left top #585858;
    background: -webkit-linear-gradient(top, #727272, #585858);
    background: -moz-linear-gradient(top, #727272, #585858);
    background: -ms-linear-gradient(top, #727272, #585858);
    background: -o-linear-gradient(top, #727272, #585858);
    background: linear-gradient(top, #727272, #585858);
    border-bottom-color: #585858;
    border-top-color: #727272;
    border-left-color: #6d6d6d;
    border-right-color: #606060;
    color: #fff;
}
.marker-1 {
    background: url(../images/marker-1.gif) left 3px no-repeat;
    padding: 0 0 0 24px;
}
.marker-2 {
    background: url(../images/marker-2.gif) left 2px no-repeat;
    padding: 0 0 0 24px;
}
.ul-1 {
    padding-left: 6px;
    margin-bottom: 12px;
}
.ul-1 li {
    font-size: 14px;
    line-height: 17px;
    background: url(../images/ul-1.png) left 8px no-repeat;
    padding: 4px 0 5px 24px;
}
.ul-1 li a {
    color: #616161;
}
.ul-1 li a:hover {
    text-decoration: underline;
}
.ul-2 li {
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    padding: 8px 0;
}
.ul-2 li a {
    color: #959595;
    background: url(../images/ul-2.png) left -91px no-repeat;
    padding-left: 24px;
}
.ul-2 li a:hover {
    color: #3e3e3e;
    background-position: left 5px;
}
.ul-3 li {
    font-size: 13px;
    line-height: 18px;
    background: url(../images/ul-3.png) left 7px no-repeat;
    padding: 4px 0 4px 30px;
}
.ul-3 li a {
    color: #959595;
}
.ul-3 li a:hover {
    text-decoration: underline;
}
.ul-4 li {
    font-size: 13px;
    line-height: 16px;
    color: #959595;
    overflow: hidden;
    display: block;
    padding: 6px 0;
}
.ul-4 li a {
    color: #959595;
    display: block;
    float: left;
}
.ul-4 li a:hover {
    text-decoration: underline;
}
.ul-4 li span {
    display: block;
    float: right;
}
.ul-4 li strong {
    background: url(../images/ul-4.png) left 11px repeat-x;
    overflow: hidden;
    display: block;
}
.dl-1 dt {
    font-size: 15px;
    line-height: 22px;
    color: #2b2b2b;
    margin-bottom: 19px;
}
.dl-1 dd {
    overflow: hidden;
}
.dl-1 dd span {
    display: block;
    float: left;
    width: 80px;
}
h3 {
    color: #454545;
    display: block;
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
}
h4 {
    display: block;
    color: #2b2b2b;
    font-size: 22px;
    line-height: 27px;
}
h5 {
    display: block;
    color: #8e8e8e;
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
}
.size-1 {
    font-size: 24px;
    line-height: 29px;
}
.size-2 {
    font-size: 46px;
    line-height: 56px;
}
.size-3 {
    font-size: 76px;
    line-height: 92px;
}
.size-4 {
    font-size: 36px;
    line-height: 44px;
}
.size-5 {
    font-size: 15px;
    line-height: 22px;
}
.size-6 {
    font-size: 18px;
    line-height: 22px;
}
.size-7 {
    font-size: 32px;
    line-height: 39px;
}
.size-8 {
    font-size: 21px;
    line-height: 26px;
}
.color-1 {
    color: #2b2b2b;
}
.color-2 {
    color: #fff;
}
.color-3 {
    color: #dedede;
}
.color-4 {
    color: #8d8d8d;
}
.color-5 {
    color: #434343;
}
.color-6 {
    color: #3e3e3e;
}
.body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 20px;
}
a {
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: deepskyblue;
}
.testimonial-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.testimonial {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    background-color: #fff;
    flex: 1 1 250px;
    max-width: 40%;
}
.check-mark {
    width: 26px;
    height: auto;
    margin-left: 5px;
    vertical-align: middle;
}
.testimonial-author {
    font-weight: bold;
}
.testimonial-rating {
    margin-top: 10px;
}
.testimonial-stars {
    color: gold;
}
.testimonial-verified {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.review-date {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}
.brand-section-image {
    float: right;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 2px 0 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    position: relative;
}
.brand-section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
@media (max-width: 992px) {
    .brand-section-image {
        max-width: 220px;
        margin: 2px 0 8px 12px;
    }
}
@media (max-width: 768px) {
    .brand-section-image {
        float: none;
        display: block;
        max-width: 260px;
        width: 100%;
        height: auto;
        margin: 16px auto;
        padding: 4px;
        background: #f8fafc;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    .brand-section-image:hover {
        transform: none;
    }
}
@media (max-width: 480px) {
    .brand-section-image {
        max-width: 200px;
        margin: 12px auto;
    }
}
#TABLE-PRICING-AREA.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #ddd;
}
.table .table {
    background-color: #fff;
}
.table-condensed > tbody > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > thead > tr > th {
    padding: 5px;
}
.table-bordered {
    border: 1px solid #ddd;
}
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border: 1px solid #ddd;
}
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}
table col[class*=col-] {
    position: static;
    display: table-column;
    float: none;
}
table td[class*=col-],
table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none;
}
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
    background-color: #f5f5f5;
}
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover {
    background-color: #e8e8e8;
}
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
    background-color: #dff0d8;
}
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover {
    background-color: #d0e9c6;
}
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > thead > tr > td.info,
.table > thead > tr > th.info {
    background-color: #d9edf7;
}
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover {
    background-color: #c4e3f3;
}
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > thead > tr > td.warning,
.table > thead > tr > th.warning {
    background-color: #fcf8e3;
}
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover {
    background-color: #faf2cc;
}
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > thead > tr > td.danger,
.table > thead > tr > th.danger {
    background-color: #f2dede;
}
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover {
    background-color: #ebcccc;
}
.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .table-responsive > .table {
        margin-bottom: 0;
    }
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > td,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > thead > tr > th {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > thead > tr > th:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > thead > tr > th:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input[type=checkbox],
input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}
input[type=file] {
    display: block;
}
input[type=range] {
    display: block;
    width: 100%;
}
select[multiple],
select[size] {
    height: auto;
}
input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
}
#slideshow {
    width: 700px !important;
    height: 270px !important;
    overflow: hidden !important;
    background: none !important;
}
#slideshow .wrapper {
    padding-top: 76px;
    background: none !important;
}
#slideshow strong {
    letter-spacing: -3px;
    margin-left: -2px;
}
.cycle_wrap {
    background: none !important;
    position: relative;
}
.cycle_wrap #nav a {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 10px;
    float: left;
    margin-right: 10px;
    background: url(../images/cycle.png) right top no-repeat;
}
.cycle_wrap #nav a.activeSlide {
    background-position: left top;
    cursor: default;
}
.cycle_wrap #nav {
    position: absolute;
    left: 445px;
    top: 315px;
    z-index: 999;
}
#form1 fieldset {
    border: none;
    padding: 0;
}
#form1 label {
    display: block;
    min-height: 54px;
}
#form1 label.message {
    height: 195px;
}
.inp {
    display: block;
    width: 204px;
    height: 33px;
    padding: 0 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e4e4e4;
}
#form1 input {
    width: 204px;
    padding: 7px 0 8px;
    margin: 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #959595;
    border: none;
    background: none;
    outline: none;
}
#form1 .area .error {
    float: none;
}
.text_a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 442px;
    height: 193px;
    padding: 0 8px;
    border: 1px solid #e4e4e4;
}
#form1 textarea {
    height: 178px;
    margin: 0;
    width: 442px;
    padding: 7px 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #959595;
    border: none;
    background: none;
    overflow: auto;
    outline: none;
}
#form1 a {
    cursor: pointer;
}
#form1 .success {
    display: none;
    margin-bottom: 20px;
}
#form1 .error,
#form1 .empty {
    position: absolute;
    right: 85px;
    top: 3px;
    color: #f00;
    font-size: 11px;
    line-height: 16px;
    display: none;
    overflow: hidden;
}
#form1 .message .error,
#form1 .message .empty {
    top: 195px;
    left: 5px;
}
.buttons-wrapper {
    text-align: left;
    padding-top: 30px;
    position: relative;
}
.buttons-wrapper a {
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
.map {
    width: 340px;
    height: 286px;
    margin-bottom: 24px;
}
/* ===== 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; }
        }

footer {
    color: #c4c4c4;
    width: 100%;
    padding: 38px 0;
    background: url(../images/footer.gif) left top repeat-x #fdfdfd;
}
footer a {
    color: #c4c4c4;
    margin-left: 17px;
}
footer nav {
    margin-bottom: 13px;
}
footer nav ul {
    overflow: hidden;
}
footer nav ul li {
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
    float: left;
    margin: 0 24px 0 0;
}
footer nav ul li a {
    color: #5e5e5e;
    margin: 0;
}
footer nav ul li a:hover,
footer nav ul li a.active {
    text-decoration: underline;
}
footer {
    text-align: center;
}
footer > * {
    margin-left: auto;
    margin-right: auto;
}
.tola {
    display: inline-block;
    text-align: left;
}
.bot1 {
    width: 930px;
    height: 84px;
    background: url(../images/bot1.png) 0 0 no-repeat;
    position: absolute;
    left: 35px;
    bottom: 60px;
    z-index: 9;
}
.bot2 {
    width: 271px;
    height: 207px;
    background: url(../images/bot2.png) 0 0 no-repeat;
    position: absolute;
    right: 23px;
    top: -26px;
    z-index: 9;
}
div.horizontal_scroller {
    position: absolute;
    left: 41px;
    top: 3px;
    z-index: 1;
    height: 68px;
    width: 850px;
    display: block;
    overflow: hidden;
}
div.scrollingtext {
    position: absolute;
    white-space: nowrap;
    font-family: 'lcdnormal';
    font-size: 60px;
    line-height: 68px;
    color: #fff;
    text-shadow: 0px 0px 5px #fff;
}
.CCRSWrapper {
    padding: 30px;
    background: #fff;
    float: left;
    width: 80%;
    box-sizing: border-box;
    margin: 10%;
    box-shadow: 0 1.5em 85px 0 rgba(0, 0, 0, 0.2);
}
.CCRSItem {
    float: left;
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.CCRSItemHeading {
    cursor: pointer;
    margin: 0px 0px 10px 0px;
    padding: 10px;
    background: #2980b9;
    color: #fff;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
}
.close .CCRSItemContent {
    height: 0px;
    transition: height 1s ease-out;
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    float: left;
    display: block;
}
.open .CCRSItemContent {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    margin: 0px 0px 10px 0px;
    display: block;
    -webkit-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    -o-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease;
    -ms-transition: -ms-transform 0.4s ease;
    transition: transform 0.4s ease;
    box-sizing: border-box;
}
.open .CCRSItemHeading {
    margin: 0px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #d8dbdd;
    color: #363a3a;
}
.product-list {
    list-style-type: disc;
    padding-left: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}
.product-list li {
    font-weight: normal;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    list-style-position: inside;
}
.state-name {
    display: inline;
    color: rgb(49, 115, 165);
    font-size: 13px;
}
.state2-name:hover {
    color: rgb(0, 191, 255);
}
.state-name:hover {
    color: rgb(0, 191, 255);
}
.separator {
    display: inline;
    color: rgb(49, 115, 165);
    font-size: 15px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
table,
th,
td {
    border: 1px solid #ccc;
}
th,
td {
    padding: 10px;
    text-align: center;
}
th {
    background-color: #f9f9f9;
}
th.company,
td.company {
    width: 200px;
}
th.price,
td.price,
th.turnaround,
td.turnaround,
th.parts,
td.parts,
th.inhome,
td.inhome,
th.rating,
td.rating {
    width: 150px;
}
.services-container {
    padding: 20px;
}
.services-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.services-column {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.services-container ul {
    list-style-type: disc;
    padding-left: 20px;
}
.services-container h2 {
    text-align: center;
}
.services-container hr {
    margin: 20px 0;
}
li {
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 0px 0;
}
li:hover {
    color: #333333;
}
.wide-screen-image {
    display: none;
    position: absolute;
    left: 925px;
    top: 35px;
    z-index: 1000;
}
@media (min-width: 1024px) {
    .wide-screen-image {
        display: block;
    }
}
@media (max-width: 1024px) {
    .wide-screen-image {
        display: none;
    }
}
@media (min-width: 1440px) {
    .wide-screen-image {
        left: 1024px;
        top: 50px;
    }
}

/* ============================================================
   MOBILE RESPONSIVE FIXES - ADDED AT THE BOTTOM
   ============================================================ */

@media screen and (max-width: 1024px) {
    body {
        min-width: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    .main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        min-width: auto !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .container_12,
    .container_15 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        min-width: auto !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    /* ===== FIX: 3-SQUARE LAYOUT - KEEP THEM IN A ROW ON TABLET ===== */
    .wrapper.margin-bot1 > .grid_4,
    .wrapper.margin-bot1 .grid_4 {
        width: 31.333% !important;
        float: left !important;
        display: inline-block !important;
        margin: 0 1% 15px 1% !important;
        clear: none !important;
        min-width: auto !important;
    }
    /* ===== HEADER - LOGO AND PHONE SIDE BY SIDE ===== */
    header .grid_6 {
        width: 48% !important;
        float: left !important;
        display: inline-block !important;
        margin: 0 1% 10px 1% !important;
        clear: none !important;
    }
    /* ===== ALL OTHER GRID ELEMENTS ===== */
    .grid_1,
    .grid_2,
    .grid_3,
    .grid_5,
    .grid_6,
    .grid_7,
    .grid_8,
    .grid_9,
    .grid_10,
    .grid_11,
    .grid_12,
    .grid_4:not(.wrapper.margin-bot1 .grid_4) {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        display: block !important;
        clear: both !important;
        min-width: auto !important;
        box-sizing: border-box !important;
    }
    .prefix_1,
    .prefix_2,
    .prefix_3,
    .prefix_4,
    .prefix_5,
    .prefix_6,
    .prefix_7,
    .prefix_8,
    .prefix_9,
    .prefix_10,
    .prefix_11 {
        padding-left: 0 !important;
    }
    .suffix_1,
    .suffix_2,
    .suffix_3,
    .suffix_4,
    .suffix_5,
    .suffix_6,
    .suffix_7,
    .suffix_8,
    .suffix_9,
    .suffix_10,
    .suffix_11 {
        padding-right: 0 !important;
    }
    .push_1,
    .push_2,
    .push_3,
    .push_4,
    .push_5,
    .push_6,
    .push_7,
    .push_8,
    .push_9,
    .push_10,
    .push_11,
    .pull_1,
    .pull_2,
    .pull_3,
    .pull_4,
    .pull_5,
    .pull_6,
    .pull_7,
    .pull_8,
    .pull_9,
    .pull_10,
    .pull_11 {
        left: auto !important;
    }
    .wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        float: none !important;
    }
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    .fleft,
    .fright,
    .img-indent-l,
    .img-indent-2 {
        float: none !important;
        margin: 0 0 10px 0 !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    hgroup {
        padding-left: 65px !important;
        background-size: 45px auto !important;
        padding-top: 5px !important;
        padding-bottom: 15px !important;
        margin-left: 0 !important;
    }
    h1 {
        font-size: 24px !important;
        line-height: 30px !important;
        letter-spacing: -1px !important;
        word-spacing: normal !important;
    }
    h1 a {
        font-size: 24px !important;
        line-height: 30px !important;
    }
    h2 {
        font-size: 12px !important;
        line-height: 15px !important;
    }
    header nav {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        border-radius: 4px !important;
        overflow: visible !important;
        border: 1px solid #c9c9c9 !important;
        box-sizing: border-box !important;
        margin: 10px 0 !important;
        position: relative !important;
        z-index: 999 !important;
    }
    .menu {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 999 !important;
    }
    .menu > li {
        float: none !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border: none !important;
        box-sizing: border-box !important;
        position: relative !important;
        border-bottom: 1px solid #ddd !important;
        z-index: 999 !important;
    }
    .menu > li:last-child {
        border-bottom: none !important;
    }
    .menu > li > a {
        padding: 10px 15px !important;
        font-size: 14px !important;
        border: none !important;
        border-radius: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
        color: #333 !important;
        background: #f5f5f5 !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
    }
    .menu > li > a:hover {
        color: #fff !important;
        background: #2980b9 !important;
    }
    .menu ul {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        display: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: #444 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1000 !important;
    }
    .menu li.open > ul,
    .menu li:hover > ul {
        display: block !important;
    }
    .menu ul li {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #555 !important;
    }
    .menu ul li:last-child {
        border-bottom: none !important;
    }
    .menu ul li a {
        padding: 8px 15px 8px 30px !important;
        font-size: 13px !important;
        border: none !important;
        color: #fff !important;
        background: #444 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
        text-transform: none !important;
    }
    .menu ul li a:hover {
        background: #666 !important;
        color: #fff !important;
    }
    .menu ul ul li a {
        padding-left: 45px !important;
        background: #555 !important;
    }
    .menu ul ul li a:hover {
        background: #777 !important;
    }
    .bg-1 {
        height: auto !important;
        min-height: 180px !important;
        padding: 10px 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .bg-2 {
        height: auto !important;
        min-height: 180px !important;
        padding: 10px 0 !important;
        background-size: cover !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    #slideshow {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 120px !important;
        box-sizing: border-box !important;
    }
    #slideshow .wrapper {
        padding-top: 15px !important;
    }
    .cycle_wrap #nav {
        position: static !important;
        text-align: center !important;
        padding: 10px 0 !important;
        left: auto !important;
        top: auto !important;
    }
    .img,
    .img2,
    .img3,
    .img4,
    .img5,
    .img6,
    .img7,
    .img8,
    .img10,
    .img11,
    .img12 {
        display: none !important;
    }
    .bg-3 {
        height: auto !important;
        min-height: 150px !important;
        padding: 15px !important;
        overflow: visible !important;
        background-size: cover !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .indent {
        padding: 15px !important;
        box-sizing: border-box !important;
    }
    .button-1,
    .button-2 {
        display: inline-block !important;
        margin: 5px 5px 5px 0 !important;
        padding: 6px 14px !important;
        font-size: 13px !important;
        box-sizing: border-box !important;
    }
    .button-1.margin-left,
    .button-2.margin-left {
        display: block !important;
        width: 100% !important;
        margin: 5px 0 !important;
        text-align: center !important;
    }
    footer .container_12 {
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    footer nav ul {
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    footer nav ul li {
        float: none !important;
        display: inline-block !important;
        margin: 3px 10px 3px 0 !important;
    }
    footer nav ul li a {
        font-size: 12px !important;
        margin: 0 !important;
    }
    footer a {
        margin-left: 0 !important;
    }
    .testimonial {
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 1 100% !important;
        margin: 5px 0 !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }
    .testimonial-container {
        flex-direction: column !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .wide-screen-image {
        display: none !important;
    }
    img[style*="position:absolute"],
    img[style*="position: absolute"] {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 310px !important;
        display: block !important;
        margin: 10px auto !important;
    }
    .services-row {
        flex-direction: column !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .services-column {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
        padding: 12px !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .CCRSWrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
        padding: 15px !important;
        float: none !important;
        box-sizing: border-box !important;
        display: block !important;
        background: #ffffff !important;
        box-shadow: 0 1.5em 85px 0 rgba(0, 0, 0, 0.2) !important;
        border-radius: 5px !important;
        overflow: visible !important;
        clear: both !important;
    }
    .CCRSItem {
        float: none !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        clear: both !important;
        overflow: visible !important;
    }
    .CCRSItemHeading {
        cursor: pointer !important;
        margin: 0px 0px 10px 0px !important;
        padding: 10px 14px !important;
        background: #2980b9 !important;
        color: #ffffff !important;
        width: 100% !important;
        border-radius: 3px !important;
        box-sizing: border-box !important;
        display: block !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-align: left !important;
        font-family: Arial, Helvetica, sans-serif !important;
    }
    .CCRSItemHeading strong {
        color: #ffffff !important;
        font-weight: 700 !important;
    }
    .CCRSItemHeading:hover {
        background: #1a6e9e !important;
    }
    .close .CCRSItemContent {
        height: 0px !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        transform: scaleY(0) !important;
        transform-origin: top !important;
        transition: transform 0.3s ease !important;
    }
    .open .CCRSItemContent {
        padding: 12px 15px !important;
        background-color: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        border-top: none !important;
        width: 100% !important;
        margin: 0px 0px 10px 0px !important;
        display: block !important;
        transform: scaleY(1) !important;
        transform-origin: top !important;
        transition: transform 0.3s ease !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        border-radius: 0 0 3px 3px !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #555 !important;
    }
    .open .CCRSItemContent p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #555 !important;
        margin-bottom: 10px !important;
    }
    .open .CCRSItemContent ul,
    .open .CCRSItemContent ol {
        padding-left: 20px !important;
    }
    .open .CCRSItemContent li {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #555 !important;
        padding: 2px 0 !important;
    }
    .open .CCRSItemHeading {
        margin: 0px !important;
        border-radius: 3px 3px 0 0 !important;
        background-color: #1a6e9e !important;
        color: #ffffff !important;
    }
    table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 400px !important;
        box-sizing: border-box !important;
    }
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .product-list {
        flex-wrap: wrap !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        gap: 5px !important;
        padding-left: 2px !important;
    }
    .product-list li {
        white-space: normal !important;
        font-size: 13px !important;
        padding: 2px 0 !important;
    }
    .state-name,
    .state2-name {
        display: inline-block !important;
        font-size: 12px !important;
    }
    .separator {
        font-size: 12px !important;
    }
    h3 {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    h4 {
        font-size: 18px !important;
        line-height: 23px !important;
    }
    h5 {
        font-size: 16px !important;
        line-height: 20px !important;
    }
    .size-1 {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    .size-2 {
        font-size: 28px !important;
        line-height: 34px !important;
    }
    .size-3 {
        font-size: 32px !important;
        line-height: 38px !important;
    }
    .size-4 {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    .size-5 {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    .size-6 {
        font-size: 16px !important;
        line-height: 20px !important;
    }
    .map {
        width: 100% !important;
        height: 250px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .map-container iframe,
    .map iframe {
        width: 100% !important;
        height: 250px !important;
        max-width: 100% !important;
    }
    .border-1 {
        border-bottom: none !important;
    }
    .bot1,
    .bot2 {
        display: none !important;
    }
    .margin-bot2 a {
        display: inline-block !important;
        font-size: 12px !important;
        padding: 1px 3px !important;
    }
    .ul-1 li,
    .ul-2 li,
    .ul-3 li {
        font-size: 14px !important;
        padding: 4px 0 4px 24px !important;
    }
    #share-buttons {
        text-align: center !important;
    }
    #share-buttons a img {
        width: 28px !important;
        height: 28px !important;
        padding: 3px !important;
    }
    .aligncenter {
        text-align: center !important;
    }
    img[src*="broken screen"],
    img[src*="broken screen.gif"] {
        max-width: 80% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        float: none !important;
        clear: both !important;
    }
    img[src*="gaming-motherboard-repair.png"] {
        max-width: 80% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
    }
    img[src*="computer_install.jpg"] {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
        float: none !important;
    }
    img[style*="position:absolute;left:646px;top:1488px;"] {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 80% !important;
        max-width: 280px !important;
        display: block !important;
        margin: 10px auto !important;
        float: none !important;
        clear: both !important;
    }
    .onsite-highlight {
        padding: 12px !important;
        overflow: visible !important;
    }
    .onsite-highlight .image-left {
        float: none !important;
        max-width: 100% !important;
        margin: 0 0 10px 0 !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    .trust-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 12px !important;
    }
    .trust-item .number {
        font-size: 22px !important;
    }
    .trust-item .label {
        font-size: 12px !important;
    }
    .rating-display {
        padding: 10px !important;
    }
    .rating-row {
        flex-wrap: wrap !important;
        gap: 4px 8px !important;
        font-size: 13px !important;
    }
    .rating-stars {
        font-size: 14px !important;
    }
    .rating-score {
        font-size: 1rem !important;
    }
    .rating-link {
        font-size: 0.7rem !important;
        padding: 2px 8px !important;
        margin-left: 0 !important;
    }
    .why-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        padding: 0 !important;
    }
    .why-list li {
        font-size: 13px !important;
        padding: 4px 0 4px 22px !important;
    }
    .brand-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4px 8px !important;
        padding: 0 !important;
    }
    .brand-grid li {
        font-size: 13px !important;
        padding: 3px 0 !important;
    }
    .image-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)) !important;
        gap: 6px !important;
    }
    .image-grid img {
        width: 100% !important;
        height: auto !important;
        max-width: 80px !important;
        margin: 0 auto !important;
    }
    .city-cards-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .city-card {
        padding: 8px !important;
    }
    .city-card h3 {
        font-size: 14px !important;
    }
    .city-card p {
        font-size: 12px !important;
    }
    .service-area-grid {
        gap: 4px !important;
    }
    .service-area-grid span {
        font-size: 12px !important;
        padding: 3px 10px !important;
    }
    .top-banner {
        font-size: 13px !important;
        padding: 8px 12px !important;
        gap: 4px 8px !important;
    }
    .intro-box {
        padding: 12px 15px !important;
    }
    .intro-box p {
        font-size: 14px !important;
    }
    .service-options-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .service-option-card {
        padding: 12px !important;
    }
    .service-option-card .icon {
        font-size: 24px !important;
    }
    .service-option-card h3 {
        font-size: 15px !important;
        margin: 4px 0 !important;
    }
    .service-option-card p {
        font-size: 12px !important;
    }
    .service-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .service-card {
        padding: 12px !important;
    }
    .service-card h3 {
        font-size: 14px !important;
    }
    .service-card p {
        font-size: 12px !important;
    }
    .reviews-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .review-card {
        padding: 12px !important;
    }
    .review-card .stars {
        font-size: 14px !important;
    }
    .review-card .review-text {
        font-size: 13px !important;
    }
    .city-section {
        padding: 10px 14px !important;
        margin: 10px 0 !important;
    }
    .city-section h2 {
        font-size: 17px !important;
        margin-top: 0 !important;
    }
    .city-section p {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .container_12,
    .container_15 {
        padding: 0 8px !important;
    }
    .main {
        padding: 0 8px !important;
    }
    /* ===== 3 SQUARES STACK ON PHONE ===== */
    .wrapper.margin-bot1 > .grid_4,
    .wrapper.margin-bot1 .grid_4 {
        width: 100% !important;
        float: none !important;
        display: block !important;
        margin: 0 0 15px 0 !important;
        clear: both !important;
    }
    /* ===== HEADER STACKS ON PHONE ===== */
    header .grid_6 {
        width: 100% !important;
        float: none !important;
        display: block !important;
        margin: 0 0 10px 0 !important;
        clear: both !important;
        text-align: center !important;
    }
    header .grid_6 .fright {
        float: none !important;
        text-align: center !important;
        display: block !important;
    }
    header form {
        text-align: center !important;
    }
    hgroup {
        padding-left: 50px !important;
        background-size: 35px auto !important;
        padding-top: 3px !important;
        padding-bottom: 10px !important;
        min-height: 40px !important;
        text-align: left !important;
    }
    h1 {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    h1 a {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    h2 {
        font-size: 11px !important;
        line-height: 14px !important;
    }
    h3 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    h4 {
        font-size: 16px !important;
        line-height: 21px !important;
    }
    .size-1 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    .size-2 {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    .size-3 {
        font-size: 26px !important;
        line-height: 32px !important;
    }
    .size-4 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    .size-5 {
        font-size: 13px !important;
        line-height: 19px !important;
    }
    .size-6 {
        font-size: 14px !important;
        line-height: 19px !important;
    }
    .service-options-grid {
        grid-template-columns: 1fr !important;
    }
    .service-grid {
        grid-template-columns: 1fr !important;
    }
    .city-cards-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .brand-grid {
        grid-template-columns: 1fr !important;
    }
    .trust-bar {
        grid-template-columns: 1fr 1fr !important;
    }
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)) !important;
    }
    .image-grid img {
        max-width: 60px !important;
    }
    img[src*="broken screen"],
    img[src*="broken screen.gif"] {
        max-width: 70% !important;
    }
    img[src*="gaming-motherboard-repair.png"] {
        max-width: 70% !important;
    }
    img[style*="position:absolute;left:646px;top:1488px;"] {
        width: 70% !important;
        max-width: 200px !important;
    }
    .button-1,
    .button-2 {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 5px 0 !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }
    .indent {
        padding: 8px !important;
    }
    .menu > li > a {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }
    .menu ul li a {
        font-size: 13px !important;
        padding: 8px 12px 8px 25px !important;
    }
    .menu ul ul li a {
        padding-left: 35px !important;
    }
    .map {
        height: 180px !important;
    }
    .map-container iframe,
    .map iframe {
        height: 180px !important;
    }
    .services-column {
        padding: 8px !important;
    }
    .CCRSWrapper {
        padding: 8px !important;
        margin: 5px 0 !important;
    }
    .CCRSItemHeading {
        font-size: 14px !important;
        padding: 6px !important;
    }
    .open .CCRSItemContent {
        padding: 8px !important;
    }
    table {
        font-size: 11px !important;
        min-width: 280px !important;
    }
    th,
    td {
        padding: 4px 5px !important;
    }
    .product-list li {
        font-size: 12px !important;
        padding: 2px 0 !important;
    }
    .state-name,
    .state2-name {
        font-size: 10px !important;
    }
    .separator {
        font-size: 10px !important;
    }
    footer nav ul li {
        display: block !important;
        margin: 3px 0 !important;
    }
    footer nav ul li a {
        font-size: 12px !important;
    }
    .ul-1 li,
    .ul-2 li,
    .ul-3 li {
        font-size: 13px !important;
        padding: 3px 0 3px 20px !important;
    }
    .testimonial {
        padding: 10px !important;
    }
    .testimonial-author {
        font-size: 13px !important;
    }
    .testimonial-stars {
        font-size: 13px !important;
    }
    .review-card {
        padding: 10px !important;
    }
    .review-card .stars {
        font-size: 13px !important;
    }
    .review-card .review-text {
        font-size: 13px !important;
    }
    header .grid_6 .fright {
        font-size: 17px !important;
    }
    header .grid_6 .fright .color-1 {
        font-size: 17px !important;
    }
}
/* ============================================================
   RESPONSIVE OVERRIDES FOR MOBILE & TABLET
   ============================================================ */

@media screen and (max-width: 1024px) {
    body {
        min-width: auto !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    .main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        min-width: auto !important;
    }
    .container_12, .container_15 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    /* Keep header logo and phone side by side on tablet */
    header .grid_6 {
        width: 48% !important;
        float: left !important;
        display: inline-block !important;
        margin: 0 1% 10px 1% !important;
        clear: none !important;
    }
    /* Keep 3-square boxes in a row on tablet */
    .wrapper.margin-bot1 .grid_4,
    .wrapper.margin-bot1 > .grid_4,
    .wrapper.margin-bot3 .grid_3,
    .wrapper.margin-bot12 .grid_3 {
        width: 48% !important;
        float: left !important;
        display: inline-block !important;
        clear: none !important;
        margin: 0 1% 15px 1% !important;
        min-width: auto !important;
    }
    /* All other grid elements become full width */
    .grid_1, .grid_2, .grid_3:not(.wrapper.margin-bot3 .grid_3):not(.wrapper.margin-bot12 .grid_3),
    .grid_5, .grid_6:not(header .grid_6), .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12,
    .grid_4:not(.wrapper.margin-bot1 .grid_4) {
        width: 100% !important;
        float: none !important;
        display: block !important;
        clear: both !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    img[style*="position:absolute"] {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        display: block !important;
        margin: 15px auto !important;
        float: none !important;
    }
    /* Fix floats */
    .fleft, .fright, .img-indent-l, .img-indent-2 {
        float: none !important;
        margin: 0 0 10px 0 !important;
        display: block !important;
        width: 100% !important;
    }
    /* Header nav adjustments */
    header nav {
        width: 100% !important;
        float: none !important;
        margin: 10px 0 !important;
        border-radius: 4px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
}

@media screen and (max-width: 768px) {
    /* Stack everything – override the exceptions */
    .grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8,
    .grid_9, .grid_10, .grid_11, .grid_12,
    header .grid_6,
    .wrapper.margin-bot1 .grid_4,
    .wrapper.margin-bot1 > .grid_4,
    .wrapper.margin-bot3 .grid_3,
    .wrapper.margin-bot12 .grid_3 {
        width: 100% !important;
        float: none !important;
        display: block !important;
        clear: both !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
    }
    /* … other mobile tweaks (e.g. font sizes, buttons, etc.) can be added here */
}

@media screen and (max-width: 480px) {
    /* Extra small screens – further adjustments if needed */
}
@media screen and (max-width: 768px) {
    .wrapper.margin-bot3,
    .wrapper.margin-bot12 {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
    }
    .wrapper.margin-bot3 .grid_3,
    .wrapper.margin-bot12 .grid_3 {
        width: 48% !important;
        float: none !important;
        margin: 0 0 15px 0 !important;
        flex: 0 0 48% !important;
        max-width: 48% !important;
        clear: none !important;
    }
}
/* ============================================================
   2x2 SERVICE BOXES – LARGER & FULLY VISIBLE ON MOBILE
   ============================================================ */

@media screen and (max-width: 768px) {

    /* Make the wrappers use flexbox with a gap */
    .wrapper.margin-bot3,
    .wrapper.margin-bot12 {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    /* Each box takes exactly half the width minus the gap */
    .wrapper.margin-bot3 .grid_3,
    .wrapper.margin-bot12 .grid_3 {
        width: calc(50% - 5px) !important;
        flex: 0 0 calc(50% - 5px) !important;
        max-width: calc(50% - 5px) !important;
        margin: 0 !important;
        padding: 0 !important;
        clear: none !important;
        float: none !important;
        box-sizing: border-box !important;
    }

    /* Remove the fixed height on the background divs so text isn't cut off */
    .wrapper.margin-bot3 .grid_3 .bg-6,
    .wrapper.margin-bot12 .grid_3 .bg-6 {
        height: auto !important;
        min-height: 140px !important;
        overflow: visible !important;
        background-size: cover !important; /* keeps the gradient looking good */
    }

    /* Reduce inner padding to maximise space for text */
    .wrapper.margin-bot3 .grid_3 .indent2,
    .wrapper.margin-bot12 .grid_3 .indent2 {
        padding: 14px 10px 12px 12px !important;
    }

    /* Make the title (e.g. "Virus Removal") fit nicely */
    .wrapper.margin-bot3 .grid_3 strong,
    .wrapper.margin-bot12 .grid_3 strong {
        font-size: 15px !important;
        line-height: 1.2 !important;
        display: block !important;
        margin-bottom: 6px !important;
        word-break: break-word !important;
    }

    /* Bullet points – slightly smaller font, tighter spacing */
    .wrapper.margin-bot3 .grid_3 .ul-3 li,
    .wrapper.margin-bot12 .grid_3 .ul-3 li {
        font-size: 12px !important;
        line-height: 1.4 !important;
        padding: 2px 0 2px 20px !important;
        background-size: 8px !important;
        background-position: left 5px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    /* Ensure the second row (Remote / Malware) behaves the same */
    .wrapper.margin-bot12 .grid_3 {
        margin-top: 0 !important;
    }
}

/* ===== EXTRA TINY PHONES (= 400px) ===== */
@media screen and (max-width: 400px) {
    .wrapper.margin-bot3 .grid_3 .indent2,
    .wrapper.margin-bot12 .grid_3 .indent2 {
        padding: 10px 6px 10px 8px !important;
    }
    .wrapper.margin-bot3 .grid_3 strong,
    .wrapper.margin-bot12 .grid_3 strong {
        font-size: 13px !important;
    }
    .wrapper.margin-bot3 .grid_3 .ul-3 li,
    .wrapper.margin-bot12 .grid_3 .ul-3 li {
        font-size: 11px !important;
        padding: 1px 0 1px 16px !important;
    }
}
/* ============================================================
   RSS WIDGET – FULLY SCOPED (NO GLOBAL STYLES)
   ============================================================ */

#rss-feed-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    width: 100%;
    height: 450px;  /* CHANGED from 100px → 450px */
    background-color: #F6F8FF;
    border: none;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#rss-feed-widget * {
    box-sizing: border-box;
}
#rss-feed-widget .rss-widget-title {
    background-color: #4682b4;
    color: #fff;
    padding: 4px 8px;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#rss-feed-widget .rss-content-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-color: #F6F8FF;
}
#rss-feed-widget .rss-content {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background-color: #F6F8FF;
}
#rss-feed-widget .rss-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
#rss-feed-widget .rss-content {
    scrollbar-width: none;
}
#rss-feed-widget .rss-item {
    height: 100%;
    scroll-snap-align: start;
    padding: 4px 32px 4px 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
#rss-feed-widget .rss-item-title {
    color: #4682b4;
    font-weight: bold;
    margin-bottom: 1px;
    font-size: 13px;
    line-height: 1.3;
}
#rss-feed-widget .rss-item-title a {
    color: inherit;
    text-decoration: none;
}
#rss-feed-widget .rss-item-title a:hover {
    text-decoration: underline;
}
#rss-feed-widget .rss-item-description {
    color: #665675;
    font-size: 12px;
    line-height: 1.4;
    margin: 1px 0;
    text-align: justify;
}
#rss-feed-widget .rss-item-date {
    color: #888;
    font-size: 11px;
    display: block;
    margin-top: 1px;
}
#rss-feed-widget .nav-btn {
    position: absolute;
    right: 4px;
    background: rgba(70,130,180,0.85);
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 22px;
    height: 22px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
#rss-feed-widget .nav-btn:hover {
    opacity: 1;
}
#rss-feed-widget .nav-btn.prev {
    top: 6px;
}
#rss-feed-widget .nav-btn.next {
    bottom: 6px;
}
#rss-feed-widget .nav-btn.hidden {
    display: none;
}

 /* ===== 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;
}

/* ============================================================
   GOOGLE REVIEWS WIDGET
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ---------- Rating summary ---------- */
.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 .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; }

/* ---------- Wrapper — clipping only, no perspective here ---------- */
.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;
}

/* ---------- Track — the 3D stage ---------- */
.slide-track {
    position: relative;
    width: 100%;
    min-height: 150px;
    perspective: 1200px;
    -webkit-perspective: 1200px;
}

/* ---------- Idle — default entry comes from the RIGHT (+60°) ---------- */
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: rotateY(60deg) scale(0.98);
    transform-origin: center center;
    transition:
        transform 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95),
        opacity   0.5s ease 0.05s;
    pointer-events: none;
    padding: 2px 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ---------- Snapping helper — transitions off during setup ---------- */
.slide-item.pre-position {
    transition: none !important;
}

/* ---------- Entry from the LEFT (-60°) ----------
   Declared BEFORE .slide-item.active so the active rule wins. */
.slide-item.enter-left {
    transform: rotateY(-60deg) scale(0.97);
    opacity: 0;
}

/* ---------- Active — card faces the viewer ---------- */
.slide-item.active {
    position: relative;              /* drives the container height */
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    pointer-events: auto;
}

/* ---------- Exit left — outgoing card flips to -60° ---------- */
.slide-item.exit-left {
    opacity: 0;
    transform: rotateY(-60deg) scale(0.97);
    transform-origin: center center;
}

/* ---------- Exit right — outgoing card flips to +60° ---------- */
.slide-item.exit-right {
    opacity: 0;
    transform: rotateY(60deg) scale(0.97);
    transform-origin: center center;
}

/* ---------- Slide content ---------- */
.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 / dots / footer ---------- */
.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);
}

.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;
}

.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; }
}

.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; }
.debug-info {
    font-size: 0.65rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: monospace;
}
/* ===== 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;
                        }
                    }
                    /* ===== MOBILE COMPACT OVERRIDES ===== */
@media (max-width: 820px) {
    .ccrs-case-studies {
        margin-bottom: 18px;
    }

    .ccrs-carousel-wrapper {
        border-radius: 20px;
        padding: 0.25rem 0;
    }

    .ccrs-case-card-inner {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1.2rem 1rem !important;
        min-height: auto !important;
    }

    .ccrs-case-card-inner > div:first-child {
        gap: 0.6rem !important;
    }

    /* Case title */
    .ccrs-case-card-inner > div:first-child > div:nth-child(2) {
        font-size: 1.3rem !important;
    }

    /* Device pill */
    .ccrs-case-card-inner > div:first-child > div:nth-child(3) {
        font-size: 0.85rem !important;
        padding: 0.25rem 0.8rem !important;
    }

    /* Stats row */
    .ccrs-case-stats-wrap {
        flex-direction: column !important;
        gap: 0.35rem !important;
        padding: 0.6rem 0.8rem !important;
        margin: 0.5rem 0 !important;
    }

    .ccrs-case-stats-wrap span {
        font-size: 0.85rem !important;
    }

    /* Quote block */
    .ccrs-case-card-inner > div:first-child > div:last-child {
        font-size: 0.85rem !important;
        padding: 0.9rem 1rem !important;
    }

    .ccrs-case-card-inner > div:first-child > div:last-child span {
        font-size: 0.8rem !important;
    }

    /* Diagnosis / Solution / Result blocks */
    .ccrs-case-card-inner > div:last-child > div {
        padding: 0.7rem 0.9rem !important;
    }

    .ccrs-case-card-inner > div:last-child > div > div:first-child {
        font-size: 0.78rem !important;
    }

    .ccrs-case-card-inner > div:last-child > div > div:last-child {
        font-size: 0.85rem !important;
        padding-left: 1.6rem !important;
    }

    .ccrs-carousel-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    .ccrs-dot {
        width: 8px;
        height: 8px;
    }

    .ccrs-dot.active {
        width: 20px;
    }
}

@media (max-width: 500px) {
    .ccrs-case-card-inner {
        padding: 1rem 0.8rem !important;
    }

    .ccrs-carousel-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !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;
    }
}
/* ===== 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;
    }
}

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 30px 0 20px;
    margin-top: 30px;
    text-align: center;
}

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;
}

footer > * {
    margin-left: auto;
    margin-right: auto;
}
/* ============================================================
   FINAL: STACK ALL REMAINING GRIDS & WIDEN CONTAINERS
   (Liquid Damage + Motherboard pages)
   ============================================================ */

@media screen and (max-width: 600px) {

    /* ----- 1. WIDEN THE ENTIRE PAGE ----- */
    .main,
    .container_12,
    .ck-container,
    .ck-hero .ck-container,
    .ck-section .ck-container {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }



    /* ----- 3. LIQUID DAMAGE PAGE ----- */

    /* (A) STACK ALL `.ck-grid-4` grids (4‑step process + 4‑service cards) */
    .ck-grid-4 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* (B) STACK the "Additional Repairs" grid (3 cards) */
    .additional-repairs-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* (C) STACK the FAQ grid inside #how-liquids-destroy */
    #how-liquids-destroy div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* (D) STACK the 3‑column grid (Short Circuits / Residue / Corrosion) */
    #how-liquids-destroy div[style*="display:grid"][style*="grid-template-columns:1fr 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* (E) WIDEN the Quiz section */
    .ck-section div[style*="padding:24px 28px;"],
    .ck-section .ck-container > div[style*="padding:24px 28px;"],
    #how-liquids-destroy + div[style*="margin-top:30px;"] > div[style*="padding:24px 28px;"] {
        padding: 16px 10px !important;
    }

    /* (F) LIQUID TABLES – full width + scroll */
    #how-liquids-destroy div[style*="overflow-x:auto"],
    #how-liquids-destroy .table-responsive {
        padding: 10px 4px !important;
        margin: 0 -4px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    #how-liquids-destroy table {
        display: table !important;
        min-width: 100% !important;
        width: 100% !important;
        font-size: 12px !important;
    }
    #how-liquids-destroy table th,
    #how-liquids-destroy table td {
        padding: 6px 8px !important;
        white-space: normal !important;
    }


    /* ----- 4. MOTHERBOARD PAGE ----- */

    /* (G) STACK the main 2‑column grid (Why Motherboards Fail) */
    #why-motherboards-fail div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* (H) STACK the 3‑column grid (Repair Process) */
    #why-motherboards-fail div[style*="display:grid"][style*="grid-template-columns:1fr 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* (I) STACK the "8 Signs" list */
    #why-motherboards-fail div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"][style*="gap:8px 20px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    /* (J) STACK the standalone FAQ grid (gap:14px 24px) */
    #why-motherboards-fail div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"][style*="gap:14px 24px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* (K) STACK the FAQ grid inside the accordion */
    .CCRSWrapper .CCRSItemContent div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* (L) MOTHERBOARD TABLES – full width + scroll */
    #why-motherboards-fail div[style*="overflow-x:auto"] {
        padding: 10px 4px !important;
        margin: 0 -4px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    #why-motherboards-fail table {
        display: table !important;
        min-width: 100% !important;
        width: 100% !important;
        font-size: 12px !important;
    }
    #why-motherboards-fail table th,
    #why-motherboards-fail table td {
        padding: 6px 8px !important;
        white-space: normal !important;
    }
}

/* ----- VERY SMALL SCREENS (≤ 400px) ----- */
@media screen and (max-width: 400px) {
    .new-nav-brand .brand-text .brand-name {
        font-size: 12px !important;
        max-width: 100px !important;
    }
    .ck-section div[style*="padding:24px 28px;"] {
        padding: 12px 6px !important;
    }
    .main, .container_12, .ck-container {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
}
/* ============================================================
   MOBILE FIX – FAQ GRIDS & REMAINING SECTIONS (≤ 600px)
   ============================================================ */
@media screen and (max-width: 600px) {

    /* ----- LIQUID DAMAGE FAQ (gap:16px 24px) ----- */
    div[style*="margin-top:30px; background:#ffffff; border-radius:16px;"] > div[style*="display:grid; grid-template-columns:1fr 1fr; gap:16px 24px;"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* ----- MOTHERBOARD FAQ (gap:14px 24px) ----- */
    div[style*="margin-top:25px; background:#f8fafc; border-radius:14px;"] > div[style*="display:grid; grid-template-columns:1fr 1fr; gap:14px 24px;"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* ----- SAFETY NET: any other 2‑col grid with gap:14px 24px ----- */
    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:14px 24px;"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* ----- SAFETY NET: any other 2‑col grid with gap:16px 24px ----- */
    div[style*="display:grid; grid-template-columns:1fr 1fr; gap:16px 24px;"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* ----- STACK .ck-grid-4 (4‑step process & 4‑service cards) ----- */
    .ck-grid-4 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* ----- STACK .additional-repairs-grid (3 extra repair cards) ----- */
    .additional-repairs-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* ----- OPTIONAL: widen the page a bit more ----- */
    .main, .container_12, .ck-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}
/* ============================================================
   FINAL: SHOW/HIDE HEADER CTAs BASED ON ORIENTATION
   ============================================================ */

/* --- PORTRAIT (or small screens up to 480px): hide Free Quote, phone icon only --- */
@media (max-width: 480px), (orientation: portrait) and (max-width: 768px) {
    /* Hide Free Quote button completely */
    .cta-button,
    .cta-button span,
    .cta-button i {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }

    /* Phone CTA: icon only, no background, no number text */
    .cta-phone {
        display: inline-flex !important;
        background: transparent !important;
        border: none !important;
        padding: 4px 6px !important;
        font-size: 0 !important;
    }
    /* ===== RESTORE PHONE CTA HOVER EFFECT ===== */
.cta-phone:hover {
    background: #eff6ff !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
}
.cta-phone:hover i {
    color: #2563eb !important;
}
    .cta-phone i {
        font-size: 22px !important;
        color: #2563eb !important;
    }
     .cta-phone span {
        display: inline !important;
        font-size: 16px !important;
        color: #0f172a !important;
    }
}

/* --- LANDSCAPE (width ≥ 481px AND orientation: landscape): show both with full text --- */
@media (min-width: 481px) and (orientation: landscape) {
    /* Restore Free Quote button with text */
    .cta-button {
        display: inline-flex !important;
        font-size: 13px !important;
        padding: 6px 14px !important;
        min-width: auto !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        overflow: visible !important;
        background: linear-gradient(135deg, #f59e0b, #d97706) !important;
        color: #0f172a !important;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25) !important;
        border: none !important;
    }
    .cta-button span {
        display: inline !important;
        font-size: 13px !important;
        color: #0f172a !important;
    }
    .cta-button i {
        display: inline-block !important;
        font-size: 14px !important;
        margin-right: 4px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
    }

    /* Restore Phone CTA with full number */
    .cta-phone {
        font-size: 16px !important;
        padding: 6px 12px !important;
        background: #f8fafc !important;
        border: 1px solid transparent !important;
        display: inline-flex !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        color: #0f172a !important;
    }
    /* ===== RESTORE PHONE CTA HOVER EFFECT ===== */
.cta-phone:hover {
    background: #eff6ff !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
}
.cta-phone:hover i {
    color: #2563eb !important;
}
    .cta-phone span {
        display: inline !important;
        font-size: 16px !important;
        color: #0f172a !important;
    }
    .cta-phone i {
        font-size: 15px !important;
        color: #2563eb !important;
    }
}

/* --- DESKTOP (≥ 981px) – ensure everything is visible --- */
@media (min-width: 981px) {
    .cta-button {
        display: inline-flex !important;
        font-size: 13px !important;
        padding: 6px 18px !important;
    }
    .cta-button span {
        display: inline !important;
    }
    .cta-phone {
        display: inline-flex !important;
        font-size: 16px !important;
        padding: 6px 12px !important;
        background: #f8fafc !important;
    }
    /* ===== RESTORE PHONE CTA HOVER EFFECT ===== */
.cta-phone:hover {
    background: #eff6ff !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
}
.cta-phone:hover i {
    color: #2563eb !important;
}
    .cta-phone span {
        display: inline !important;
    }
}
/* ===== FIX SLIDER CUT OFF BY NAV ON MOBILE ===== */

/* Ensure the slider container has enough top padding to clear the fixed nav */
@media (max-width: 980px) {
    .bg-1 {
        padding-top: 74px !important;
        padding-bottom: 10px !important;  /* keep some bottom padding */
        height: auto !important;
        min-height: 280px !important;     /* give the slider enough room */
    }
}

/* Also make the slideshow container taller on mobile */
@media (max-width: 980px) {
    #slideshow {
        height: auto !important;
        min-height: 200px !important;     /* ensures the content isn't squashed */
    }
    #slideshow .wrapper {
        padding-top: 30px !important;     /* adjust vertical centering */
    }
}
/* ===== HUB NAVIGATION (hub-section) ===== */
.hub-section {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 28px;
    padding: 32px 28px 28px;
    margin: 24px 0 32px;
    border: 1px solid #e8edf4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}
.hub-section .hub-headline {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 6px 0;
}
.hub-section .hub-headline i {
    color: #2563eb;
    font-size: 1.8rem;
}
.hub-section .hub-sub {
    color: #475569;
    font-size: 1rem;
    margin: 0 0 22px 0;
    border-left: 4px solid #2563eb;
    padding-left: 16px;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.hub-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px 16px;
    border: 1px solid #eef2f6;
    transition: all 0.25s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}
.hub-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
    background: #fafcff;
}
.hub-card .hub-icon {
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 2px;
}
.hub-card .hub-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.3;
}
.hub-card .hub-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}
.hub-card .hub-arrow {
    margin-top: 6px;
    font-size: 0.7rem;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}
.hub-card:hover .hub-arrow {
    transform: translateX(6px);
    color: #2563eb;
}
.hub-card.highlight {
    background: #eff6ff;
    border-color: #2563eb;
}
.hub-card.highlight .hub-icon {
    color: #1d4ed8;
}

/* Mobile & tablet responsiveness for this section only */
@media (max-width: 640px) {
    .hub-section {
        padding: 20px 14px 18px;
        margin: 16px 0 24px;
    }
    .hub-section .hub-headline {
        font-size: 1.3rem;
    }
    .hub-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .hub-card {
        padding: 14px 12px 12px;
    }
    .hub-card .hub-title {
        font-size: 0.85rem;
    }
    .hub-card .hub-desc {
        font-size: 0.7rem;
    }
}
@media (max-width: 420px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== DEEP LINKS (In-Depth Guides & Resources) ===== */
.deep-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0 30px;
}
.deep-link-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px 20px 16px;
    border: 1px solid #eef2f6;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}
.deep-link-card:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
    transform: translateY(-3px);
}
.deep-link-card .dl-icon {
    font-size: 1.6rem;
    color: #2563eb;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.deep-link-card .dl-text {
    display: flex;
    flex-direction: column;
}
.deep-link-card .dl-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}
.deep-link-card .dl-desc {
    font-size: 0.78rem;
    color: #64748b;
}
.deep-link-card .dl-arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}
.deep-link-card:hover .dl-arrow {
    transform: translateX(6px);
    color: #2563eb;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .deep-links-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== STATIC FAQ (Frequently Asked Questions) ===== */
.faq-section {
    margin: 40px 0 20px;
    border-top: 2px solid #e2e8f0;
    padding-top: 28px;
}
.faq-section .faq-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-section .faq-heading i {
    color: #2563eb;
}
.faq-section .faq-sub {
    color: #475569;
    margin: 0 0 24px 0;
    font-size: 0.95rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}
.faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
}
.faq-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.faq-item h4 i {
    color: #2563eb;
    font-size: 10px;
    margin-right: 8px;
}
.faq-item p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-callout {
    margin-top: 16px;
    padding: 12px 20px;
    background: #f1f5f9;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}
.faq-callout p {
    margin: 0;
    color: #0f172a;
    font-size: 0.95rem;
}
.faq-callout p i {
    color: #2563eb;
    margin-right: 10px;
}
.faq-callout p a {
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}
.faq-callout p a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
/* ===== INTRO BANNER (hub-intro-banner) ===== */
.hub-intro-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 28px;
    padding: 40px 44px 36px;
    margin: 16px 0 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.25);
}
.hub-intro-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hub-intro-banner .intro-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

.hub-intro-banner .intro-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.25);
    color: #93c5fd;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hub-intro-banner h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}
.hub-intro-banner h1 span {
    color: #60a5fa;
}
.hub-intro-banner .intro-sub {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0 0 18px 0;
    max-width: 680px;
    line-height: 1.6;
}

.hub-intro-banner .intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hub-intro-banner .intro-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    transition: all 0.25s ease;
}
.hub-intro-banner .intro-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}
.hub-intro-banner .intro-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}
.hub-intro-banner .intro-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.hub-intro-banner .intro-stats {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hub-intro-banner .intro-stats .stat {
    display: flex;
    flex-direction: column;
}
.hub-intro-banner .intro-stats .stat .num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #60a5fa;
}
.hub-intro-banner .intro-stats .stat .label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Tablet responsive */
@media (max-width: 820px) {
    .hub-intro-banner {
        padding: 28px 24px 24px;
    }
    .hub-intro-banner .intro-content {
        max-width: 100%;
    }
    .hub-intro-banner h1 {
        font-size: 1.8rem;
    }
    .hub-intro-banner .intro-sub {
        font-size: 0.95rem;
    }
    .hub-intro-banner .intro-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .hub-intro-banner h1 {
        font-size: 1.4rem;
    }
    .hub-intro-banner .intro-actions .btn-primary,
    .hub-intro-banner .intro-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* ===== BACK TO TOP BUTTON (Raised above WhatsApp) ===== */
.back-to-top {
    position: fixed;
    bottom: 160px;  /* ← RAISED from 100px to 160px (above WhatsApp at 90px) */
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* Tablet */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;  /* ← LOWERED from 140px to 80px */
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .back-to-top {
        bottom: 70px;  /* ← LOWERED from 120px to 70px */
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}
/* ===== FLOATING WHATSAPP WIDGET (Raised) ===== */
.pts-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;  /* ← lowered from 90px to 30px */
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.pts-whatsapp-float:hover {
    transform: scale(1.10);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.pts-whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

/* Tablet */
@media (max-width: 768px) {
    .pts-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;  /* ← lowered from 80px to 20px */
        right: 20px;
    }
    .pts-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pts-whatsapp-float {
        width: 44px;
        height: 44px;
        bottom: 16px;  /* ← LOWERD from 75px to 16px */
        right: 16px;
    }
    .pts-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
/* ===== SERVICES HEADING SPACING ===== */
.services-heading-wrapper {
    padding-top: 50px;
    clear: both;
}

/* Smaller spacing on mobile */
@media (max-width: 768px) {
    .services-heading-wrapper {
        padding-top: 30px;
    }
}

/* ============================================================
   MOBILE BREAKPOINTS (≤ 980px) – VERTICALLY CENTERED
   ============================================================ */
@media (max-width: 980px) {
    .new-nav-links {
        display: none !important;
    }
    .new-nav-toggle {
        display: block !important;
        padding: 4px 6px !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        font-size: 24px !important;
    }

    /* ----- FIX: vertically center everything inside the header ----- */
    .new-nav-inner {
        height: 64px !important;
        padding: 0 14px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* ← THIS centers the top-row vertically */
    }

    .top-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px 12px !important;
        width: 100% !important;
    }

    /* Logo */
    .new-nav-brand {
        flex-shrink: 0 !important;
        margin-right: auto !important;
    }
    .new-nav-brand .brand-icon {
        width: 38px !important;
        height: 38px !important;
        background: url(../images/logo.png) left center no-repeat !important;
        background-size: contain !important;
    }
    .new-nav-brand .brand-text .brand-name {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }
    .new-nav-brand .brand-text .brand-tagline {
        display: none !important;
    }

    /* Phone CTA */
    .cta-phone {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 6px 12px !important;
        background: #eff6ff !important;
        border: 1px solid #2563eb !important;
        border-radius: 40px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        text-decoration: none !important;
        flex-shrink: 0 !important;
    }
    .cta-phone i {
        font-size: 16px !important;
        color: #2563eb !important;
    }
    .cta-phone span {
        display: inline !important;
        font-size: 14px !important;
        color: #0f172a !important;
    }

    /* Search + Quote: hidden by default (portrait) */
    .new-nav-search {
        display: none !important;
    }
    .cta-button {
        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;
    }
}


/* ============================================================
   LANDSCAPE OVERRIDE: SHOW SEARCH + QUOTE, KEEP TOGGLE AT END
   ============================================================ */
@media (orientation: landscape) and (max-width: 980px) {
    .new-nav-search {
        display: flex !important;
        flex: 0 1 auto !important;
        min-width: auto !important;
        max-width: 160px !important;
    }
    .new-nav-search input[type="text"] {
        width: 80px !important;
        padding: 4px 10px !important;
        font-size: 12px !important;
        border-radius: 30px !important;
        border: 1px solid #e2e8f0 !important;
        background: #f8fafc !important;
        transition: width 0.3s ease !important;
    }
    .new-nav-search input[type="text"]:focus {
        width: 120px !important;
        border-color: #2563eb !important;
        background: #ffffff !important;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10) !important;
    }
    .new-nav-search button {
        padding: 4px 12px !important;
        font-size: 12px !important;
        border-radius: 30px !important;
        background: #2563eb !important;
        color: #fff !important;
        border: none !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }
    .new-nav-search button:hover {
        background: #1d4ed8 !important;
    }

    .cta-button {
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 4px 12px !important;
        background: linear-gradient(135deg, #f59e0b, #d97706) !important;
        color: #0f172a !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        border: none !important;
        border-radius: 40px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25) !important;
        transition: all 0.2s ease !important;
        flex-shrink: 0 !important;
    }
    .cta-button i {
        font-size: 13px !important;
        color: #0f172a !important;
    }
    .cta-button span {
        display: inline !important;
        font-size: 12px !important;
        color: #0f172a !important;
    }
    .cta-button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35) !important;
    }

    .new-nav-toggle {
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    .top-row {
        gap: 8px 12px !important;
    }
}


/* ============================================================
   VERY SMALL SCREENS (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    /* ----- FIX: vertically center on very small screens too ----- */
    .new-nav-inner {
        height: 56px !important;
        padding: 0 10px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* ← THIS centers the top-row */
    }

    .new-nav-brand .brand-icon {
        width: 32px !important;
        height: 32px !important;
        background: url(../images/logo.png) left center no-repeat !important;
        background-size: contain !important;
    }
    .new-nav-brand .brand-text .brand-name {
        font-size: 13px !important;
    }

    .new-nav-toggle {
        font-size: 20px !important;
        padding: 4px 6px !important;
        margin-left: auto !important;
    }

    .cta-phone {
        padding: 4px 10px !important;
        font-size: 12px !important;
    }
    .cta-phone i {
        font-size: 14px !important;
    }
    .cta-phone span {
        font-size: 12px !important;
    }

    .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;
    }
}


/* ============================================================
   LANDSCAPE on VERY SMALL screens (≤ 480px)
   ============================================================ */
@media (orientation: landscape) and (max-width: 480px) {
    .new-nav-search {
        max-width: 120px !important;
    }
    .new-nav-search input[type="text"] {
        width: 60px !important;
        padding: 3px 8px !important;
        font-size: 11px !important;
    }
    .new-nav-search input[type="text"]:focus {
        width: 90px !important;
    }
    .new-nav-search button {
        padding: 3px 8px !important;
        font-size: 11px !important;
    }

    .cta-button {
        padding: 3px 8px !important;
        font-size: 11px !important;
    }
    .cta-button i {
        font-size: 12px !important;
    }
    .cta-button span {
        font-size: 11px !important;
    }

    .new-nav-toggle {
        font-size: 18px !important;
        padding: 4px 4px !important;
    }
}
/* ============================================================
   ACCORDION (Reviews Section) + Testimonial Styles
   ============================================================ */

.CCRSWrapper .CCRSItemContent {
    display: block;
}
.CCRSWrapper .CCRSItemContent.closed {
    display: none;
}
.CCRSWrapper .CCRSItem.open .CCRSItemContent.closed {
    display: block;
}

/* ----- MAIN ACCORDION WRAPPER ----- */
.CCRSWrapper .CCRSItem {
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Hover effect on header badges */
.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;
}

/* Accordion Header */
.CCRSWrapper .CCRSItemHeading {
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Accordion Content (hidden by default, opened via JS) */
.CCRSWrapper .CCRSItemContent {
    padding: 16px 16px 0 16px;
    border-top: 1px solid #ddd;
    display: none;
}
.CCRSWrapper .CCRSItem.open .CCRSItemContent {
    display: block;
}

/* Header icon + badge */
.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;
}

/* ----- NESTED DETAILS (Gaming tables inside accordion) ----- */
.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); }
}

/* ----- TABLES INSIDE ACCORDION ----- */
.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;
}


/* ============================================================
   REVIEWS INSIDE ACCORDION (Testimonial Styles)
   ============================================================ */

/* Desktop: 2-column grid */
@media (min-width: 769px) {
    .testimonial-container {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        gap: 24px;
        margin: 16px 0;
    }
    .testimonial {
        background: #ffffff;
        border-radius: 16px;
        padding: 18px 20px 16px;
        border: 1px solid #eef2f6;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        transition: border-color 0.2s;
        flex: 0 0 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
        width: auto !important;
        box-sizing: border-box;
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .testimonial-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px;
        margin: 16px 0;
    }
    .testimonial {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 15px 16px;
        box-sizing: border-box;
    }
}

/* Single testimonial card */
.testimonial {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s;
    padding: 18px 20px 16px;
}
.testimonial:hover {
    border-color: #dbeafe;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}
.testimonial-author .review-store {
    font-weight: 400;
    color: #64748b;
    font-size: 0.85rem;
}

.testimonial-name {
    font-weight: 600;
    color: #2563eb;
    font-size: 0.9rem;
    margin: 2px 0 4px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 2px;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.testimonial-stars .fa-star {
    color: #f59e0b;
}
.testimonial-stars .fa-star.far {
    color: #d1d9e6;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 10px 2px 6px;
    border-radius: 30px;
}
.testimonial-verified .check-mark {
    width: 14px;
    height: 14px;
    display: inline-block;
}
.testimonial-small-text {
    font-weight: 500;
}

.review-date {
    font-size: 0.7rem;
    color: #94a3b8;
    margin: 4px 0 8px;
}

.testimonial p {
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 6px 0 0;
}

.testimonial .review-source {
    margin-top: 6px;
    font-size: 0.7rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 6px;
}
/* Force 2‑col testimonials on screens 769px+ */
@media screen and (min-width: 769px) {
    .testimonial-container.testimonial-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 24px !important;
        justify-content: flex-start !important;
    }
    .testimonial-container .testimonial {
        flex: 0 0 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
        width: auto !important;
        float: none !important;
        clear: none !important;
        display: block !important;
        margin: 0 !important;
    }
}

