 .header-custom{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 12;
}
/* ===============================================
    1. GRID LAYOUT & STICKY POSITIONING
    =============================================== */

/* ===== PARENT CONTAINER FIX FOR STICKY ===== */
.plans-section {
    overflow: visible !important;
    position: relative !important;
}

.plans-section .container-fluid {
    overflow: visible !important;
    position: relative !important;
}

/* ===== GRID LAYOUT FOR STICKY POSITIONING ===== */
.plans-grid-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    align-items: start;
    overflow: visible !important;
    position: relative !important;
}

.plans-grid-content {
    overflow: visible !important;
    position: relative !important;
    min-width: 0;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .plans-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 1400px) {
    .plans-grid-container {
        grid-template-columns: 380px 1fr;
        gap: 28px;
    }
}

/* ===============================================
    2. HERO SECTION STYLES
    =============================================== */

/* ===============================================
    2. STICKY SEARCH & SORT BAR IN HEADER
    =============================================== */

.sticky-search-sort-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px 0;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-height: 77px;
    z-index: 9999;
}

.sticky-search-sort-bar.show {
    transform: translateY(0) !important;
}

.sticky-search-input-box {
    position: relative;
    background: #f9fafb;
    border-radius: 50px;
    padding: 6px 12px 6px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 500px
}

.sticky-search-input-box:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
    border-color: #c7d2fe;
    background: white;
}

.sticky-search-input-box .ri-map-pin-2-fill {
    font-size: 1rem;
    color: #667eea;
    flex-shrink: 0;
    line-height: 1;
}

.sticky-search-input-box .google-search-input {
    font-size: 14px;
}

.sticky-search-input-box .search-type-radio-group {
    padding: 2px;
}

.sticky-search-input-box .search-radio-icon-label {
    width: 28px;
    height: 28px;
}

.sticky-search-input-box .address-search-action-btn {
    width: 30px;
    height: 30px;
}

.sticky-search-input-box .google-clear-btn {
    width: 24px;
    height: 24px;
}

.sticky-sort-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.sticky-sort-label {
    font-size: 0.6875rem;
    color: #6B7280;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sticky-sort-label i {
    font-size: 0.875rem;
    color: #667eea;
}

.sticky-sort-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-sort-buttons .filter-btn {
    padding: 8px 12px;
    font-size: 0.625rem;
}

@media (max-width: 991px) {
    .sticky-search-sort-bar {
        padding: 10px 0;
    }

    .sticky-sort-controls {
        justify-content: center;
        margin-top: 8px;
    }

    .sticky-sort-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sticky-sort-buttons .filter-btn {
        flex: 1;
        min-width: 100px;
    }
}

/* Hero Section Location Value Override */
.address-search-text-area .location-value {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

/* Hero Section Styles */
.search-hero-area.bifm-search-banner {
    height: auto;
    min-height: auto;
    padding: 140px 0 60px;
    position: relative;
    overflow: visible;
}

/* Radio Button Styles - Removed (defined in main styles below) */

.search-hero-content-wrapper {
    height: auto;
    min-height: auto;
}

.search-hero-main-heading {
    font-size: 2.1rem !important;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.search-hero-description-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Credibility Badges */
.credibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.credibility-badge i {
    font-size: 1rem;
    color: #10B981;
}

.address-search-container {
    max-width: 580px;
    margin: 0 auto;
}

.google-search-container {
    position: relative;
}

/* Suggestions Dropdown */
.google-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
/* border-top-left-radius: 0px;
border-top-right-radius: 0px; */
}

.suggestions-list {
    padding: 8px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.suggestion-icon,
.sample-icon {
    font-size: 1.25rem;
    color: #667eea;
    flex-shrink: 0;
}

.suggestion-content,
.sample-content {
    flex: 1;
}

.suggestion-main,
.sample-main {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.suggestion-sub,
.sample-sub {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Sample Locations Container */
.sample-locations-container {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    padding: 12px;
/* border-top-left-radius: 0px;
border-top-right-radius: 0px; */
}


.sample-location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}

.sample-location-item:last-child {
    margin-bottom: 0;
}

.sample-location-item:hover {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    transform: translateX(4px);
}

/* Scrollbar styling */
.google-suggestions-dropdown::-webkit-scrollbar,
.sample-locations-container::-webkit-scrollbar {
    width: 6px;
}

.google-suggestions-dropdown::-webkit-scrollbar-track,
.sample-locations-container::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.google-suggestions-dropdown::-webkit-scrollbar-thumb,
.sample-locations-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.google-suggestions-dropdown::-webkit-scrollbar-thumb:hover,
.sample-locations-container::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

.address-search-input-box {
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 8px 16px 8px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px;
    backdrop-filter: blur(10px);
    border:5px solid #292e93;
}

.address-search-input-box:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(102, 126, 234, 0.3);
    /* border-color: rgba(102, 126, 234, 0.5); */
    /* transform: translateY(-2px); */
}

.address-search-input-box .ri-map-pin-2-fill {
    font-size: 1.125rem;
    color: #667eea;
    flex-shrink: 0;
    line-height: 1;
}

.address-search-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 0;
}

.address-search-action-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 50%;
    padding: 0;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
}

/* .address-search-action-btn:hover {
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 100%);
    color: #4c1d95;
    box-shadow: 0 4px 12px rgba(165, 180, 252, 0.3);
    transform: translateY(-2px) scale(1.08);
} */

.address-search-action-btn .ri-search-line {
    font-size: 1rem;
}

.address-search-action-btn span {
    display: none;
}

.search-helper-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.search-helper-info .ri-information-line {
    font-size: 0.75rem;
}

.search-hero-float-decoration {
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.search-hero-float-decoration:nth-child(3) {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to right, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
}

.search-hero-float-decoration:nth-child(4) {
    bottom: 5rem;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    background: linear-gradient(to right, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
    animation-delay: -2s;
}

.search-hero-float-decoration:nth-child(5) {
    top: 50%;
    left: 25%;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to right, rgba(251, 146, 60, 0.1), rgba(245, 158, 11, 0.1));
    animation-delay: -4s;
}

/* Biffy Character Styles */
.biffy-character {
    position: absolute;
    bottom: -12px;
    left: calc(100% - 360px);
    z-index: 5;
    pointer-events: none;
}

.biffy-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes biffyFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@media (max-width: 1200px) {
    .biffy-character {
        right: 5%;
    }

    .biffy-img {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .biffy-character {
        display: none;
    }
}

/* ===============================================
    3. SORT & FILTER BUTTONS
    =============================================== */

/* Filter Buttons */
.filter-btn {
    padding: 10px 16px;
    border-radius: 50px;
    font-size:11px;
    font-weight: 700;
    border: 1px solid #dfe4f5;
    background:#eaefff;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.filter-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover i:first-child {
    transform: rotate(10deg) scale(1.1);
}

.filter-btn.active i:last-child {
    animation: spin 0.5s ease;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}

/* Sort Section */
.sort-section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    /* padding: 16px 20px; */
    /* background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
    position: -webkit-sticky !important;
    /* position: sticky !important; */
    top: 90px !important;
    z-index: 99 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    align-self: flex-start;
}

/* .sort-section-wrapper.scrolled {
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    border-color: #e0e7ff;
} */

.results-info {
    font-size:18px;
    color: #495057;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* .results-info::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
} */

.results-info .highlight {
    color: #667eea;
    font-weight: 900;
    margin: 0 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-label {
    font-size: 0.6875rem;
    color: #6B7280;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding-right: 0.875rem;
    border-right: 1px solid #e9ecef;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sort-label i {
    font-size: 0.8125rem;
    /* color: #667eea; */
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sort-buttons-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Sort Divider */
.sort-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, transparent 0%, #e0e7ff 20%, #e0e7ff 80%, transparent 100%);
    border-radius: 2px;
}

/* Responsive Design for Sort Section */
@media (max-width: 992px) {
    .sort-section-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 20px;
    }

    .results-info {
        justify-content: center;
        text-align: center;
        font-size: 0.875rem;
    }

    .sort-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 12px;
    }

    .sort-label {
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-right: 0;
        padding-bottom: 0.75rem;
    }

    .sort-buttons-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 576px) {
    .sort-section-wrapper {
        padding: 16px;
        gap: 1rem;
    }

    .results-info .highlight {
        font-size: 1.5rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 12px 20px;
    }
}

/* ===============================================
    4. ACTIVE FILTERS & VIEW TOGGLE
    =============================================== */

/* Active Filters Section */
.active-filters-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border: 1px solid #c7d2fe;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.08);
}

.active-filters-section.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-count {
    font-size: 0.875rem;
    color: #111827;
}

.results-count strong {
    font-weight: 700;
    color: #3B82F6;
    font-size: 1rem;
}

/* Filter Badges */
.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #ddd6fe;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    margin: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.1);
}

.filter-badge:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    
}

.badge-label {
    color: #6B7280;
    font-weight: 500;
}

.badge-value {
    color: #111827;
    font-weight: 600;
}

.remove-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #DC2626;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.remove-filter:hover {
    background: #DC2626;
    color: white;
}

/* Clear All Filters Button */
.clear-all-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #DC2626;
    color: #DC2626;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-all-filters:hover {
    background: #DC2626;
    color: white;
}

/* ===============================================
    5. FILTER SIDEBAR
    =============================================== */

.filter-sidebar {
    background: linear-gradient(145deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 10px 40px rgba(102, 126, 234, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 90px !important;
    height: fit-content !important;
    max-height: calc(100vh - 110px) !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 100 !important;
    align-self: flex-start !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    overflow: visible !important;
}

/* .filter-sidebar.scrolled {
    box-shadow:
        0 20px 60px rgba(102, 126, 234, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
} */

@media (max-width: 991px) {
    .filter-sidebar {
        position: relative !important;
        top: 0 !important;
        max-height: none !important;
        height: auto !important;
    }
}

.filter-sidebar-header {
    padding: 18px 20px;
    border-bottom: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 22px 22px 0 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.filter-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.0625rem;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-sidebar-title i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.15);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-sidebar-body {
    padding: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.02) 0%, transparent 100%);
    max-height: calc(100vh - 280px);
    min-height: 0;
}

.filter-sidebar-body::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar-footer {
    padding: 12px 16px;
    border-top: 1px solid #F3F4F6;
    background: #F9FAFB;
    border-radius: 0 0 12px 12px;
}

/* Filter Section */
.filter-sidebar-body .filter-section {
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.filter-sidebar-body .filter-section:last-child {
    margin-bottom: 0;
}

.filter-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.filter-section-label i {
    font-size: 0.9375rem;
    color: #667eea;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.filter-section-label .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    height: 18px;
    margin-left: 4px;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

/* Filter Checkbox List */
.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 8px;
    background: #F9FAFB;
    border-radius: 8px;
}

.filter-checkbox-list::-webkit-scrollbar {
    width: 4px;
}

.filter-checkbox-list::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 2px;
}

.filter-checkbox-list::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 2px;
}

.filter-checkbox-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #E5E7EB;
}

.filter-checkbox-item:hover {
    background: #EFF6FF;
    border-color: #3B82F6;
}

.filter-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #3B82F6;
    flex-shrink: 0;
}

.filter-checkbox-item label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    margin: 0;
    flex: 1;
    user-select: none;
}

.filter-checkbox-item input[type="checkbox"]:checked+label {
    color: #3B82F6;
    font-weight: 600;
}

/* Filter Input Group */
.filter-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.filter-input-wrapper {
    position: relative;
}

.filter-input-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.filter-input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 10px;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.filter-section .form-control.with-icon {
    padding-left: 32px;
}

.filter-section .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 0.8125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, #fafbfc 0%, white 100%);
    font-weight: 500;
    height: 42px;
}

.filter-section .form-control::placeholder {
    color: #a8b0bd !important;
    opacity: 1;
    font-weight: 400;
}

.filter-section .form-control:hover {
    border-color: #c7d2fe;
    background: white;
    
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
}

.filter-section .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12), 0 4px 12px rgba(102, 126, 234, 0.15);
    outline: none;
    background: white;
    
}

/* Select2 Customization */
.filter-section .select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    min-height: 42px !important;
    font-size: 0.8125rem !important;
    background: linear-gradient(to bottom, #f8f9fb 0%, white 100%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.filter-section .select2-container--bootstrap-5 .select2-selection:hover {
    border-color: #c7d2fe !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12) !important;
    
}

.filter-section .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.filter-section  .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 6px 16px rgba(102, 126, 234, 0.2) !important;
    background: white !important;
    
}

/* Select2 Dropdown Menu */
.filter-section .select2-container--bootstrap-5 .select2-dropdown {
    border: 1px solid #667eea !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.25), 0 0 0 1px rgba(102, 126, 234, 0.1) !important;
    margin-top: 4px !important;
    overflow: hidden;
}

.select2-container--bootstrap-5 .select2-search--dropdown {
    padding: 12px !important;
    background: linear-gradient(135deg, #f8f9ff 0%, #f3f4f6 100%) !important;
    border-bottom: 1px solid #e0e7ff !important;
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 0.8125rem !important;
    transition: all 0.3s ease !important;
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field:focus {
    border-color: #667eea !important;
    outline: none !important;
    /* box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important; */
}


.select2-container--bootstrap-5 .select2-results__options {
    max-height: 280px !important;
    padding: 6px !important;
}

.select2-container--bootstrap-5 .select2-results__option {
    padding: 10px 14px !important;
    font-size: 0.8125rem !important;
    border-radius: 8px !important;
    margin-bottom: 3px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.select2-container--bootstrap-5 .select2-results__option:hover {
    background: linear-gradient(135deg, rgba(238, 242, 255, 0.7) 0%, rgba(224, 231, 255, 0.7) 100%) !important;
    color: #667eea !important;
    /* transform: translateX(4px); */
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    /* transform: translateX(6px); */
    /* box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important; */
}

.select2-container--bootstrap-5 .select2-results__option--selected {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%) !important;
    color: #667eea !important;
    font-weight: 600 !important;
    position: relative;
}

.select2-container--bootstrap-5 .select2-results__option--selected::after {
    content: '\2713';
    position: absolute;
    right: 12px;
    font-weight: 700;
    color: #667eea;
}

/* Selected Tags/Chips */
.select2-container--bootstrap-5 .select2-selection__choice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 5px 10px 5px 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25) !important;
    margin: 3px 4px 3px 0 !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.select2-container--bootstrap-5 .select2-selection__choice:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35) !important;
}

.select2-container--bootstrap-5 .select2-selection__choice__remove {
    color: transparent !important;
    font-weight: 700 !important;
    margin-right: 0 !important;
    margin-left: 6px !important;
    font-size: 1.125rem !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
    padding: 0 !important;
    order: 2 !important;
    position: relative !important;
    flex-shrink: 0 !important;
    font-family: 'remixicon' !important;
}

.select2-container--bootstrap-5 .select2-selection__choice__remove::before {
    content: '\eb99' !important;
    font-family: 'remixicon' !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    position: absolute !important;
    top: 9px !important;
    left: -5px !important;
    transform: translate(-50%, -50%) !important;
}

.select2-container--bootstrap-5 .select2-selection__choice__remove:hover {
    background: #ef4444 !important;
    transform: scale(1.15);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4) !important;
}

.select2-container--bootstrap-5 .select2-selection__choice__remove:hover::before {
    color: white !important;
}

.select2-container--bootstrap-5 .select2-selection__choice__display {
    order: 1 !important;
    padding-right: 0 !important;
}

/* Placeholder */
.select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #a8b0bd !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__placeholder {
    color: #a8b0bd !important;
    font-weight: 400 !important;
}

.select2-container--bootstrap-5 .select2-search__field::placeholder {
    color: #a8b0bd !important;
    font-weight: 400 !important;
}

/* Rendered placeholder text in the selection */
.select2-container--bootstrap-5 .select2-selection__rendered {
    color: #a8b0bd !important;
    font-weight: 400 !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0 !important;
}

/* When items are selected, override placeholder color */
.select2-container--bootstrap-5 .select2-selection--multiple:has(.select2-selection__choice) .select2-selection__rendered {
    color: inherit !important;
}

/* Clear button */
.select2-container--bootstrap-5 .select2-selection__clear {
    color: white !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: absolute !important;
    bottom: 0px !important;
    right: 16px !important;
    top: auto !important;
    background: #fee2e2 !important;
    border-radius: 8px !important;
    padding: 0px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    line-height: 1 !important;
    z-index: 10 !important;
    text-indent:inherit !important;
    width: 24px !important;
    height: 24px !important;

}

.select2-container--bootstrap-5 .select2-selection__clear::before {
    content: '\eb99' !important;
    font-family: 'remixicon' !important;
    font-size: 1rem !important;
    color: #ef4444 !important;
}



.select2-container--bootstrap-5 .select2-selection__clear:hover {
    background: #fecaca;
color: #dc2626;
}

.select2-container--bootstrap-5 .select2-selection__clear:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.25) !important;
}

/* Scrollbar for dropdown */
.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.select2-container--bootstrap-5 .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

.filter-sidebar-footer {
    padding: 14px 16px;
    border-top: none;
    background: linear-gradient(to top, #fafbfc 0%, white 100%);
    border-radius: 0 0 22px 22px;
    position: relative;
    flex-shrink: 0;
}

.filter-sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e7ff, transparent);
}

.filter-sidebar-footer .btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.filter-sidebar-footer .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.filter-sidebar-footer .btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-sidebar-footer .btn:hover {
    
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.filter-sidebar-footer .btn-outline-danger {
    border: 1px solid #e5e7eb;
    color: #6b7280;
    background: #f9fafb;
}

.filter-sidebar-footer .btn-outline-danger:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
    box-shadow: 0 8px 24px rgba(107, 114, 128, 0.15);
}

.filter-sidebar-footer .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.filter-sidebar-footer .btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.filter-sidebar-footer .btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.filter-sidebar-footer .btn:hover i {
    transform: scale(1.2);
}

/* ===============================================
    6. PROVIDER CARDS DESIGN
    =============================================== */
.provider-list-card-wrapper {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.provider-list-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* overflow: hidden; */
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.provider-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.provider-list-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.provider-list-card:hover {
    
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15), 0 0 0 1px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.provider-list-card.selected {
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.compare-tick-badge {
    position: absolute;
top: -1px;
right: -1px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
width: 30px;
height: 30px;
display: none;
align-items: center;
justify-content: center;
font-size: 18px;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.35);
z-index: 10;
animation: tickFadeIn 0.3s ease;
transition: all 0.2s ease;
border-bottom-right-radius: 0px;
border-top-left-radius: 0px;
}

.compare-tick-badge i {
    font-weight: 700;
    line-height: 1;
}

.compare-tick-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.45);
}

.provider-list-card.selected .compare-tick-badge {
    display: flex;
}

.provider-list-card.selected {
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25);
    
}

/* .provider-list-card.selected::before {
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.provider-list-card.selected::after {
    background: linear-gradient(90deg, transparent 0%, #764ba2 50%, transparent 100%);
} */

@keyframes tickFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fiber-badge-corner {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #D97706;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 3px 8px 3px 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 6px;
    overflow: visible;
}

.fiber-badge-corner i {
    font-size: 0.75rem;
    color: #F59E0B;
    animation: fiberGlow 2s ease-in-out infinite;
}

@keyframes fiberGlow {

    0%,
    100% {
        filter: brightness(1);
        transform: scale(1);
    }

    50% {
        filter: brightness(1.3);
        transform: scale(1.1);
    }
}

/* Card Header Badges Section */
.provider-card-header-badges {
    padding: 8px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
}

.provider-badges-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Card Body - Improved Structure */
.provider-list-card-body {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    width: 100%;
    padding: 0;
    gap: 0;
    align-items: stretch;
}

/* Left Section - Logo & Name */
.provider-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0px;
    border-right: 1px solid #f3f4f6;
    min-width: 180px;
    flex-shrink: 0;
    position: relative;
}


.provider-logo-wrapper-box {
    background: white;
    padding: 0px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    transition: all 0.3s ease;
}

/* .provider-logo-section img:hover {
    transform: scale(1.05);
} */

.provider-name-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.provider-logo-section .provider-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.2px;
}

.provider-name-subtitle {
    font-size: 0.625rem;
    font-weight: 500;
    color: #9CA3AF;
    text-align: center;
    line-height: 1.2;
}

/* Middle Section - Details Grid */
.provider-details-section {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.provider-details-section>.provider-card-header-badges {
    width: 100%;
}

.provider-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    flex: 1;
}

.provider-detail-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 16px 20px;
    border-right: 1px solid #f3f4f6;
    position: relative;
    text-align: center;
}

.provider-detail-item:last-child {
    border-right: none;
}



/* Right Section - Actions */
.provider-actions-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    gap: 10px;
    min-width: 170px;
    /* background: #fafbfc; */
    border-left: 1px solid #f3f4f6;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Compare Checkbox - Redesigned */
.compare-checkbox-wrapper {

    cursor: pointer;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
        border-radius: 8px;
}

.compare-checkbox-wrapper.show {
    display: flex; /* Show when active */
}

.compare-checkbox-wrapper:hover {
        color: #667eea;
        background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    
}

.compare-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #3B82F6;
    visibility: hidden; /* Hide the default checkbox */
        
}

.compare-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.compare-label {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    margin: 0;
    user-select: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
        background: transparent;
    border: 1.5px solid transparent;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
}
    .compare-label:hover{
    color: #667eea;
    background: transparent;
    border: 1.5px solid transparent;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    }

.provider-badges-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
}

.tech-icon-display {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tech-icon-display.tech-fiber {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.tech-icon-display.tech-cable {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #6366F1;
}

.tech-icon-display.tech-wireless {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #3B82F6;
}

.tech-icon-display.tech-dsl {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #A855F7;
}

/* Tech Badges */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.tech-badge.tech-fiber {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border: 1px solid #F59E0B;
}

.tech-badge.tech-wireless {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
    border: 1px solid #3B82F6;
}

.tech-badge.tech-cable {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #3730A3;
    border: 1px solid #6366F1;
}

.tech-badge.tech-dsl {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #6B21A8;
    border: 1px solid #A855F7;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Info Tooltip */
.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: help;
    transition: transform 0.2s ease;
}

.info-tooltip:hover {
    transform: scale(1.2);
}

.info-tooltip i {
    font-size: 0.75rem;
    color: #667eea;
    transition: color 0.2s ease;
}

.info-tooltip:hover i {
    color: #764ba2;
}

.info-tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background: #1f2937;
    color: white;
    text-align: left;
    border-radius: 6px;
    padding: 8px 10px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size:10px;
    font-weight: 400;
    line-height:16px;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.info-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.stat-icon {
    font-size: .85rem;
    color: #667eea;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.stat-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.speed-number {
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.speed-unit {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6B7280;
}

.price-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-value .price-currency {
    font-size: 1rem;
    color: #111827;
    font-weight: 700;
}

.price-value .price-amount {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-value .price-period {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6B7280;
    margin-left: 2px;
}

.stat-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #4f46e5;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    padding: 6px 14px 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 3px 12px rgba(99, 102, 241, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 6px 0 0 6px;
    border: 1px solid #C7D2FE;
    border-right: none;
    overflow: visible;
}

.stat-badge::before {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 0 13px 12px;
    border-color: transparent transparent transparent #E0E7FF;
    filter: drop-shadow(2px 0 3px rgba(99, 102, 241, 0.15));
    z-index: 2;
}

.stat-badge::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 14px;
    border-color: transparent transparent transparent #C7D2FE;
    z-index: 1;
}

.stat-badge i {
    font-size: 0.75rem;
    color: #6366f1;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Usage Type Radio Group */
.usage-type-radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    /* padding: 6px; */
    background: #F9FAFB;
    border-radius: 8px;
}

.usage-radio-item {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.usage-radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.usage-radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6B7280;
    text-align: center;
}

.usage-radio-content i {
    font-size: 1.125rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.usage-radio-item:hover .usage-radio-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.usage-radio-item:hover .usage-radio-content i {
    color: #667eea;
    transform: scale(1.1);
}

.usage-radio-item input[type="radio"]:checked+.usage-radio-content {
    border-color: #667eea;
    color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    
    position: relative;
}

.usage-radio-item input[type="radio"]:checked+.usage-radio-content::after {
    content: '\eb7a';
    font-family: 'remixicon';
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    border-radius: 50%;
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.usage-radio-item input[type="radio"]:checked+.usage-radio-content i {
    color: #667eea;
    animation: iconPop 0.3s ease;
}

@keyframes iconPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1.1);
    }
}

.usage-radio-item input[type="radio"]:focus+.usage-radio-content {
    outline: none;
    /* box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2); */
}

.stat-footnote {
    font-size: 0.625rem;
    color: #6B7280;
    margin-top: 2px;
    font-style: italic;
}

.btn-check-availability {
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.6875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    min-height: 38px;
    position: relative;
    overflow: hidden;
}

.btn-check-availability::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.5s;
    z-index: -1;
}

.btn-check-availability:hover::before {
    left: 0;
}

.btn-check-availability:hover {
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-check-availability i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-check-availability:hover i {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .provider-list-card-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .provider-logo-section {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 24px;
    }

    .provider-logo-section::before {
        display: none;
    }

    .provider-details-section {
        grid-template-columns: 1fr;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .provider-detail-item {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
        padding: 18px 24px;
    }

    .provider-detail-item:last-child {
        border-bottom: none;
    }

    .provider-actions-section {
        min-width: 100%;
        padding: 24px;
        flex-direction: row;
        gap: 12px;
    }

    .compare-checkbox-wrapper,
    .btn-check-availability {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .provider-logo-section {
        padding: 20px 16px;
    }

    .provider-logo-wrapper-box {
        padding: 14px 16px;
        min-height: 60px;
    }

    .provider-logo-section img {
        max-width: 110px;
        max-height: 32px;
    }

    .provider-logo-section .provider-name {
        font-size: 0.75rem;
    }

    .provider-name-subtitle {
        font-size: 0.625rem;
    }

    .provider-detail-item {
        padding: 16px 20px;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .tech-value {
        font-size: 0.875rem;
    }

    .tech-icon-display {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .provider-actions-section {
        padding: 16px;
        flex-direction: column;
    }

    .compare-checkbox-wrapper,
    .btn-check-availability {
        width: 100%;
        flex: none;
    }

    .stat-badge {
        font-size: 0.5625rem;
        padding: 3px 8px;
    }

    .fiber-badge-corner {
        font-size: 0.625rem;
        padding: 3px 8px;
    }
}

@media (min-width: 1400px) {
    .provider-list-card-body {
        grid-template-columns: 200px 1fr 180px;
    }

    .provider-logo-section {
        min-width: 200px;
        padding: 16px 20px;
    }

    .provider-logo-section img {
        max-width: 125px;
        max-height: 32px;
    }

    .provider-actions-section {
        min-width: 180px;
        padding: 18px 20px;
    }
}

.bestSellerRgt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    /* background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); */
    color: #6366f1;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 5px;
    /* box-shadow: 0 1px 4px rgba(99, 102, 241, 0.12); */
    position: relative;
    overflow: hidden;
    /* border: 1px solid #C7D2FE; */
    transition: all 0.3s ease;
    line-height: 1.2;
    margin-top: 4px;
}

.bestSellerRgt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

/* .bestSellerRgt:hover::before {
    left: 100%;
} */

/* .bestSellerRgt:hover {
    
    box-shadow: 0 3px 8px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
} */

.bestSellerRgt i {
    font-size: 0.6875rem;
    color: #6366f1;
    animation: badgeIconPulse 2s ease-in-out infinite;
}

@keyframes badgeIconPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ===============================================
    7. SEARCH & LOCATION FUNCTIONALITY
    =============================================== */

/* Search Type Radio Group */
.search-type-radio-group {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #f3f4f6;
    border-radius: 10px;
}

.search-radio-icon-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    margin: 0px;
}

.search-radio-icon-label:hover {
    background: rgba(102, 126, 234, 0.1);
}

.search-radio-icon-label:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.search-radio-icon-label input[type="radio"] {
    display: none;
}

.search-radio-icon-label .radio-icon {
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.search-radio-icon-label input[type="radio"]:checked + .radio-icon {
    color: white;
}

/* Radio Button Tooltip */
.search-radio-icon-label .radio-tooltip {
    visibility: hidden;
    width: 110px;
    background: #1f2937;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 6px 8px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -55px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.search-radio-icon-label .radio-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.search-radio-icon-label:hover .radio-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Google Search Input */
.google-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0px !important;
    font-weight: 500;
    color: #111827 !important;
    background: transparent;
}

.google-search-input::placeholder {
    font-size: 14px;
    font-weight: 500;
}

/* Google Clear Button */
.google-clear-btn {
    background: #fee2e2;
     color: #ef4444;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink:0;
    transition: all 0.3s ease;
    font-size: 0.875rem;
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s 
ease;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    padding: 0;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s 
ease;
    cursor: pointer;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}

.google-clear-btn:hover {
    background: #fecaca;
    color: #dc2626;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-overlay.show {
    display: flex;
    opacity: 1;
}

.loading-content {
    background: white;
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Close Button in Compare Modal */
.compare-modal .btn-close {
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

/* Compare Table Feature Column */
.compare-table th:first-child {
    width: 200px;
}

/* Compare Value Highlight */
.compare-value-highlight {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
}

/* Speed Unit in Compare */
.compare-table .speed-unit {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Compare Tech Badge */
.tech-badge-compare {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4f46e5;
    border: 1px solid #C7D2FE;
}

/* Compare Provider Logo */
.compare-provider-logo {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* Compare Provider Name */
.compare-provider-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* Compare Text Muted */
.compare-table .text-muted {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Footer Z-Index */
.footer-section .container-fluid {
    z-index: 10;
}

/* Toast Container */
.toast-container {
    z-index: 9999;
}

/* Provider Detail Price Promo */
.provider-detail-item .price-value > div:last-child {
    font-size: 0.5625rem;
    color: #7c3aed;
    font-weight: 600;
    margin-top: 4px;
}

.bifm-search-container .address-search-input-box{
    border-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

}

/* ===============================================
    8. HERO BACKGROUND & ANIMATIONS
    =============================================== */
.search-hero-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bifm-search-banner {
    min-height: 400px;
}

.search-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.search-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.search-hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(30, 58, 138, 0.85), 
        rgba(67, 56, 202, 0.8), 
        rgba(51, 65, 85, 0.85));
    z-index: 2;
}

.search-hero-float-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(60px);
    z-index: 3;
}

.search-hero-content-wrapper {
    position: relative;
    z-index: 10;
}

.search-hero-main-heading {
    font-family: 'Lexend Deca', sans-serif;
    letter-spacing: -0.02em;
}

.search-hero-description-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.address-search-container {
    position: relative;
    z-index: 10;
}

.address-search-input-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.address-search-text-area {
    transition: all 0.3s ease;
}

.search-helper-info {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.search-helper-info:hover {
    opacity: 1;
}

/* Hero Responsive */
@media (max-width: 768px) {
.search-hero-area {
    padding: 32px 0 48px !important;
}

.search-hero-main-heading {
    font-size: 1.5rem !important;
}

.search-hero-description-text {
    font-size: 0.9375rem !important;
}

.address-search-input-box {
    padding: 10px 10px 10px 20px !important;
            min-height: 64px !important;
        }
        
        .address-search-action-btn {
            padding: 12px 20px !important;
            font-size: 0.875rem !important;
            height: 44px !important;
        }
    }

    /* ===============================================
        END OF STYLES
        =============================================== */

        #toggleCompareBtn{
        min-width: 154px;
        }

/* ===============================================
        9. SKELETON LOADERS & LOAD MORE BUTTON
        =============================================== */
    
    /* Skeleton Loader */
    .provider-skeleton {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid #f1f5f9;
        padding: 0;
        margin-bottom: 20px;
        overflow: hidden;
        animation: skeletonPulse 1.5s ease-in-out infinite;
    }

    @keyframes skeletonPulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.7;
        }
    }

    .provider-skeleton-body {
        display: grid;
        grid-template-columns: 180px 1fr auto;
        gap: 0;
        align-items: stretch;
    }

    .skeleton-logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 24px;
        border-right: 1px solid #e5e7eb;
    }

    .skeleton-logo {
        width: 120px;
        height: 36px;
        background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 8px;
    }

    .skeleton-name {
        width: 100px;
        height: 12px;
        background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 6px;
    }

    @keyframes shimmer {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }

    .skeleton-details-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        flex: 1;
    }

    .skeleton-detail-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px;
        border-right: 1px solid #f3f4f6;
        gap: 12px;
    }

    .skeleton-detail-item:last-child {
        border-right: none;
    }

    .skeleton-label {
        width: 80px;
        height: 10px;
        background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 5px;
    }

    .skeleton-value {
        width: 60px;
        height: 24px;
        background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 6px;
    }

    .skeleton-actions-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px;
        gap: 12px;
        min-width: 170px;
        border-left: 1px solid #e5e7eb;
    }

    .skeleton-button {
        width: 100%;
        height: 38px;
        background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 8px;
    }

    /* Load More Button */
    .btn-load-more {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        
    }

    .btn-load-more::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-load-more:hover::before {
        left: 100%;
    }

    .btn-load-more:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
        color: #fff;
    }

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

    .btn-load-more:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .load-more-spinner {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .load-more-icon {
        font-size: 1.125rem;
        transition: transform 0.3s ease;
    }

    .btn-load-more:hover .load-more-icon {
        transform: translateY(3px);
    }

    .load-more-info {
        margin-top: 16px;
        font-size: 0.875rem;
        color: #6b7280;
        font-weight: 500;
    }

    .load-more-info strong {
        color: #667eea;
        font-weight: 700;
    }

    /* Responsive for skeleton */
    @media (max-width: 1200px) {
        .provider-skeleton-body {
            grid-template-columns: 1fr;
        }

        .skeleton-logo-section {
            border-right: none;
            border-bottom: 1px solid #e5e7eb;
        }

        .skeleton-details-section {
            grid-template-columns: 1fr;
        }

        .skeleton-detail-item {
            border-right: none;
            border-bottom: 1px solid #f3f4f6;
        }

        .skeleton-detail-item:last-child {
            border-bottom: none;
        }

        .skeleton-actions-section {
            min-width: 100%;
            flex-direction: row;
        }
    }