/* Profile Container Styles */
.profile-wrapper-0001 {
    background-color: #f7fafc;
    padding: 40px 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: #2d3748;
}

/* Profile Header Section */
.profile-header-0001 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-header-left-0001 {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 300px;
}

.profile-logo-wrapper-0001 {
    width: 120px;
    height: 120px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.profile-logo-0001 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.profile-info-0001 {
    flex: 1;
}

.profile-title-row-0001 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.profile-title-0001 {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    line-height: 1.2;
}

.verified-badge-0001 {
    background-color: #ebf8ff;
    color: #2b6cb0;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #bee3f8;
}

.verified-badge-0001 i {
    color: #3182ce;
}

.rating-summary-0001 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.stars-0001 {
    color: #ecc94b;
    font-size: 15px;
    display: flex;
    gap: 2px;
}

.review-count-0001 {
    color: #4a5568;
    font-weight: 600;
}

.network-connections-0001 {
    color: #718096;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.network-connections-0001 i {
    color: #cbd5e0;
}

/* Actions in Header */
.profile-actions-0001 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-visit-0001 {
    background-color: #e53e3e;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

.btn-visit-0001:hover {
    background-color: #c53030;
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-contact-0001 {
    background-color: #ffffff;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-contact-0001:hover {
    background-color: #f7fafc;
}

.btn-shortlist-0001 {
    color: #e53e3e;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
}

.btn-shortlist-0001 i {
    font-size: 16px;
}

.btn-shortlist-0001:hover {
    text-decoration: underline;
}

/* Two Column Main Body Grid */
.main-content-row-0001 {
    display: flex;
    gap: 30px;
}

.left-col-0001 {
    flex: 0 0 65%;
    max-width: 65%;
}

.right-col-0001 {
    flex: 0 0 35%;
    max-width: 35%;
}

/* Left Column Panels */
.panel-card-0001 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #edf2f7;
    padding: 30px;
    margin-bottom: 30px;
}

.panel-title-0001 {
    font-size: 22px;
    font-weight: 800;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text-0001 {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.read-more-btn-0001 {
    background: none;
    border: none;
    color: #2b6cb0;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

.read-more-btn-0001:hover {
    text-decoration: underline;
}

/* Meta Stats Grid */
.stats-grid-0001 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #edf2f7;
}

.stat-item-0001 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stat-icon-0001 {
    font-size: 18px;
    color: #a0aec0;
    width: 24px;
    margin-top: 2px;
}

.stat-info-0001 {
    display: flex;
    flex-direction: column;
}

.stat-label-0001 {
    font-size: 12px;
    text-transform: uppercase;
    color: #a0aec0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-value-0001 {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

/* Sidebar tabbed card */
.sidebar-card-0001 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    overflow: hidden;
    position: sticky;
    top: 25px;
}

.tabs-header-0001 {
    display: flex;
    border-bottom: 1px solid #edf2f7;
    background: #f7fafc;
}

.tab-btn-0001 {
    flex: 1;
    padding: 15px 10px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    color: #718096;
    cursor: pointer;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn-0001:hover {
    color: #2d3748;
    background-color: #edf2f7;
}

.tab-btn-0001.active {
    color: #2b6cb0;
    border-bottom-color: #2b6cb0;
    background-color: #ffffff;
}

.tab-content-0001 {
    padding: 25px;
}

/* Pie chart and legends */
.chart-container-0001 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.pie-chart-0001 {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pie-chart-0001:hover {
    transform: scale(1.05);
}

.legend-list-0001 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item-0001 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.legend-left-0001 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot-0001 {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-name-0001 {
    color: #4a5568;
    font-weight: 500;
}

.legend-pct-0001 {
    font-weight: 700;
    color: #2d3748;
}

/* Pricing Snapshot Section */
.pricing-grid-0001 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.pricing-card-0001 {
    background: #f7fafc;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.pricing-lbl-0001 {
    font-size: 11px;
    color: #a0aec0;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.pricing-val-0001 {
    font-size: 16px;
    font-weight: 800;
    color: #2d3748;
}

/* Project Size Range bar */
.common-size-box-0001 {
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
    margin-bottom: 25px;
}

.common-size-title-0001 {
    font-size: 14px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.common-size-title-0001 i {
    color: #edd55d;
}

.size-range-bar-0001 {
    height: 10px;
    background-color: #edf2f7;
    border-radius: 9999px;
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}

.size-range-fill-0001 {
    position: absolute;
    height: 100%;
    background-color: #48bb78;
    /* Green progress */
    border-radius: 9999px;
}

.size-labels-0001 {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #a0aec0;
    font-weight: 600;
}

/* Service filter chips */
.service-filter-label-0001 {
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
}

.chips-container-0001 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.chip-0001 {
    font-size: 12px;
    padding: 6px 12px;
    background-color: #f7fafc;
    border: 1px solid #cbd5e0;
    color: #4a5568;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.15s ease;
}

.chip-0001:hover,
.chip-0001.active {
    background-color: #ebf8ff;
    color: #2b6cb0;
    border-color: #bee3f8;
}

/* Packages grid inside details */
.packages-grid-0001 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.package-card-0001 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.package-card-0001:hover {
    border-color: #2b6cb0;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.05);
    transform: translateY(-1px);
}

.package-info-0001 {
    display: flex;
    flex-direction: column;
}

.package-title-0001 {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.package-price-0001 {
    font-size: 12px;
    color: #718096;
}

.package-arrow-0001 {
    font-size: 14px;
    color: #a0aec0;
    transition: transform 0.2s;
}

.package-card-0001:hover .package-arrow-0001 {
    color: #2b6cb0;
    transform: translateX(3px);
}

/* Reviews Insights */
.disclaimer-box-0001 {
    background-color: #ebf8ff;
    border: 1px solid #bee3f8;
    color: #2b6cb0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.disclaimer-content-0001 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-content-0001 i {
    font-size: 16px;
}

.disclaimer-close-0001 {
    cursor: pointer;
    background: none;
    border: none;
    color: #2b6cb0;
    font-size: 16px;
    padding: 0;
}

.insights-panel-0001 {
    display: flex;
    gap: 25px;
}

.insights-left-0001 {
    flex: 1;
}

.insights-right-0001 {
    flex: 0 0 240px;
    border-left: 1px solid #edf2f7;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mentions-title-0001 {
    font-size: 13px;
    text-transform: uppercase;
    color: #a0aec0;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mentions-cloud-0001 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.mention-tag-0001 {
    font-size: 12px;
    padding: 5px 10px;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    color: #4a5568;
    font-weight: 600;
}

.highlights-title-0001 {
    font-size: 13px;
    text-transform: uppercase;
    color: #a0aec0;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.highlights-grid-0001 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item-0001 {
    background: #f7fafc;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 15px;
}

.highlight-lbl-0001 {
    font-size: 13px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.highlight-content-0001 {
    font-size: 12px;
    color: #718096;
    line-height: 1.5;
}

/* Big Rating Box */
.score-badge-large-0001 {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars-large-0001 {
    color: #ecc94b;
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    gap: 3px;
}

.rating-count-large-0001 {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
}

.btn-breakdown-0001 {
    background: none;
    border: none;
    color: #2b6cb0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-breakdown-0001:hover {
    text-decoration: underline;
}

/* Footer of Review Panel */
.insights-footer-0001 {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #718096;
}

.read-all-reviews-0001 {
    color: #2b6cb0;
    font-weight: 700;
    text-decoration: none;
}

.read-all-reviews-0001:hover {
    text-decoration: underline;
}

.was-helpful-0001 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.helpful-thumbs-0001 {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.15s;
}

.helpful-thumbs-0001:hover {
    color: #2d3748;
}

/* Mobile Tabs Toggle Button */
.tab-toggle-btn-0001 {
    width: 100%;
    background-color: #2b6cb0;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    transition: background-color 0.2s;
}

.tab-toggle-btn-0001:hover {
    background-color: #2c5282;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-content-row-0001 {
        flex-direction: column;
    }

    .left-col-0001,
    .right-col-0001 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Reorder columns on mobile: sidebar card floats to the top */
    .right-col-0001 {
        order: 1;
        margin-bottom: 30px;
    }

    .left-col-0001 {
        order: 2;
    }

    .sidebar-card-0001 {
        position: static;
        margin-top: 0;
    }

    .tab-content-wrapper-0001 {
        display: none;
        background: #ffffff;
        padding-top: 15px;
        border-top: 1px solid #edf2f7;
    }

    .tab-content-wrapper-0001.show-0001 {
        display: block;
    }
}

@media (min-width: 992px) {
    .tab-content-wrapper-0001 {
        display: block !important;
    }
}

/* Accessibility Visually-Hidden SEO text container */
.visually-hidden-seo-0001 {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden-seo-0001.show-seo-0001 {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}