/* =====================================================
   PROFESSIONAL PROFILE — ULTRA PREMIUM v2
   ===================================================== */



:root {
    --p-primary: #2563eb;
    --p-primary-dark: #1d4ed8;
    --p-primary-light: #eff6ff;
    --p-accent: #f97316;
    --p-accent-dark: #ea580c;
    --p-green: #0E9A2E;
    --p-green-light: #EAFCF1;
    --p-green-dark: #0b7a23;
    --p-gold: #f59e0b;
    --p-dark: #212427;
    --p-text: #334155;
    --p-muted: #697E9A;
    --p-light: #FCFCFF;
    --p-border: #DBDFE6;
    --p-white: #ffffff;
    --p-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --p-card-shadow-lg: 0 1px 3px rgba(0, 0, 0, 0.06);
    --p-glow-green: 0 2px 8px rgba(14,154,46,.15);
    --p-glow-orange: 0 2px 8px rgba(249,115,22,.15);
    --p-radius: 10px;
    --p-radius-sm: 8px;
    --p-radius-xs: 6px;
    --p-font: 'Montserrat-Regular', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── Base ─── */
body.prof-body-session {
    background: var(--p-light);
    font-family: var(--p-font);
    color: var(--p-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-fluid.p-container-bg { padding: 0; background: transparent; }

/* ─── Header Banner ─── */
.profile-header-banner {
    display: none;
}

/* ─── Layout ─── */
.row.row-profile {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 20px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}

.profile-main-col {
    flex: 0 0 63%;
    max-width: 63%;
    padding-right: 28px;
}

.profile-sidebar-col {
    flex: 0 0 37%;
    max-width: 37%;
}

/* ─── Hero Card ─── */
.profile-hero-card {
    background: var(--p-white);
    border-radius: var(--p-radius);
    box-shadow: var(--p-card-shadow);
    padding: 28px;
    margin-bottom: 20px;
}

.profile-hero-top {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* Avatar */
.profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    object-fit: cover;
    border: none;
}

.profile-superpro-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 30px;
    height: 30px;
    background: #f59e0b;
    border-radius: 8px;
    border: 2px solid var(--p-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-superpro-badge svg { width: 16px; height: 16px; fill: #fff; }

/* Name & Info */
.profile-hero-info { flex: 1; min-width: 0; }

.profile-hero-info h1 {
    font-family: 'Montserrat-SemiBold';
    font-size: 24px;
    color: var(--p-dark);
    margin: 0 0 8px;
    line-height: 1.3;
}

/* Rating */
.profile-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.profile-rating-score {
    font-family: 'Montserrat-SemiBold';
    font-size: 16px;
    color: var(--p-green);
}

/* Cooperation Badge */
.profile-badges-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.profile-coop-text {
    display: block;
    font-family: 'Montserrat-Medium';
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
}
.profile-coop-text.independent {
    color: #6b7280;
    background: #f3f4f6;
}

/* Managed Cooperation Badge */
.profile-coop-badge.managed {
    margin-top: 6px;
}

.coop-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-family: 'Montserrat-SemiBold';
    font-size: 12px;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: default;
}

.coop-badge-main svg:first-child {
    flex-shrink: 0;
}

.coop-info-icon {
    color: #9ca3af;
    cursor: help;
    flex-shrink: 0;
    transition: color .2s;
}

.coop-badge-main:hover .coop-info-icon {
    color: #15803d;
}

.coop-tooltip {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 280px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 100;
}

.coop-badge-main:hover .coop-tooltip {
    display: block;
}

.coop-tooltip-title {
    font-family: 'Montserrat-Bold';
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 6px;
}

.coop-tooltip-text {
    font-family: 'Montserrat-Regular';
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.coop-badge-sub {
    margin-top: 4px;
    font-family: 'Montserrat-Medium';
    font-size: 11px;
    color: #16a34a;
    padding-left: 2px;
}

.profile-rating-stars { display: flex; gap: 2px; align-items: center; }
.profile-rating-stars svg { width: 16px; height: 16px; }
.profile-reviews-summary .profile-rating-stars svg { width: 20px; height: 20px; }

.profile-rating-count {
    font-size: 14px;
    color: var(--p-primary);
    font-family: 'Montserrat-Medium';
    text-decoration: none;
    border-bottom: 1px dashed var(--p-primary);
    padding-bottom: 1px;
    transition: all .2s;
}

.profile-rating-count:hover { color: var(--p-primary-dark); border-bottom-style: solid; }

/* Open Badge */
.profile-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--p-green-light);
    color: var(--p-green);
    font-family: 'Montserrat-SemiBold';
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 24px;
    border: 1px solid rgba(5,150,105,.15);
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--p-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

.profile-closed-badge { background: #fef2f2; color: #dc2626; border-color: rgba(220,38,38,.15); }
.profile-closed-badge .pulse-dot { background: #dc2626; animation: none; }

.profile-open-badge.sidebar-open {
    justify-content: center;
    margin-bottom: 10px;
}

@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
    50% { opacity:.7; transform:scale(.85); box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

/* Stats Grid */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.profile-stats-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.profile-stat-item {
    text-align: center;
    padding: 10px 4px;
}

.profile-stat-num {
    font-family: 'Montserrat-Bold';
    font-size: 22px;
    /*color: var(--p-dark);*/
    line-height: 1.2;
    color:rgb(37, 99, 235);
}

.profile-stat-label {
    font-size: 12px;
    color: var(--p-muted);
    margin-top: 2px;
}

.profile-stat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Badges */
.profile-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.profile-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Montserrat-Medium';
}

.profile-badge-chip.verified { background: #EAFCF1; color: #167A41; }
.profile-badge-chip.truck { background: #F8F1FF; color: #432AAE; }
.profile-badge-chip.insured { background: #FFF1FF; color: #842AAE; }

/* ─── Section Cards ─── */
.profile-section-card {
    background: var(--p-white);
    border-radius: var(--p-radius);
    box-shadow: var(--p-card-shadow);
    padding: 24px;
    margin-bottom: 20px;
}

.profile-section-title {
    font-family: 'Montserrat-SemiBold';
    font-size: 16px;
    color: var(--p-dark);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-section-title svg {
    width: 20px; height: 20px;
    color: var(--p-primary);
    flex-shrink: 0;
}

/* About */
.profile-about-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--p-text);
}

/* Services */
.profile-service-item {
    padding: 16px 4px;
    border-bottom: 1px solid var(--p-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .15s;
    border-radius: 4px;
    margin: 0 -4px;
    padding-left: 8px;
    padding-right: 8px;
}

.profile-service-item:last-of-type { border-bottom: none; }
.profile-service-item:hover { background: var(--p-light); color: var(--p-primary); }

.profile-service-item .chevron {
    transition: transform .25s ease;
    width: 18px; height: 18px;
    color: var(--p-muted);
    flex-shrink: 0;
}

.profile-service-name { font-family: 'Montserrat-Medium'; font-size: 15px; flex: 1; }
.profile-service-price {
    font-family: 'Montserrat-SemiBold';
    font-size: 13px;
    color: #059669;
    background: #ecfdf5;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: 8px;
    flex-shrink: 0;
}

/* Gallery */
.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.profile-gallery-item {
    aspect-ratio: 1;
    border-radius: var(--p-radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.profile-gallery-item img,
.profile-gallery-item .lightbox-side-bar-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    border-radius: var(--p-radius-sm);
}

.profile-gallery-item:hover img,
.profile-gallery-item:hover .lightbox-side-bar-img {
    transform: scale(1.08);
}

.profile-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s;
    border-radius: var(--p-radius-sm);
    pointer-events: none;
}
.profile-gallery-item:hover::after {
    background: rgba(0,0,0,.12);
}

/* Working Hours */
.profile-hours-list { list-style: none; padding: 0; margin: 0; }

.profile-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--p-radius-xs);
    font-size: 14px;
    transition: background .15s;
}

.profile-hours-item:nth-child(odd) { background: var(--p-light); }

.profile-hours-item.is-today {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid rgba(37,99,235,.15);
    font-family: 'Montserrat-SemiBold';
    position: relative;
}

.profile-hours-item.is-today::before {
    content: 'Σήμερα';
    position: absolute;
    right: 14px;
    top: -8px;
    font-size: 10px;
    background: var(--p-primary);
    color: #fff;
    padding: 1px 8px;
    border-radius: 10px;
    font-family: 'Montserrat-SemiBold';
    letter-spacing: .3px;
}

.profile-hours-day { color: var(--p-text); }
.profile-hours-time { font-family: 'Montserrat-SemiBold'; color: var(--p-dark); }

/* Reviews */
.profile-reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--p-light);
    border-radius: var(--p-radius-sm);
}

.profile-reviews-big-score {
    font-family: 'Montserrat-SemiBold';
    font-size: 44px;
    color: var(--p-dark);
    line-height: 1;
}

.profile-reviews-meta { flex: 1; }

.profile-review-bars { display: flex; flex-direction: column; gap: 10px; }

.profile-review-bar-row { display: flex; align-items: center; gap: 12px; }
.profile-review-bar-label { width: 110px; font-size: 13px; color: var(--p-text); flex-shrink: 0; font-family: 'Montserrat-Medium'; }

.profile-review-bar-track {
    flex: 1; height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.profile-review-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--p-green), #34d399);
    transition: width .8s cubic-bezier(.25,.46,.45,.94);
}

.profile-review-bar-pct {
    width: 44px; text-align: right;
    font-family: 'Montserrat-Bold'; font-size: 13px; color: var(--p-dark);
}

/* Review Card */
.profile-review-card {
    padding: 16px 20px;
    border-bottom: 1px solid var(--p-border);
}

.profile-review-card:last-child { border-bottom: none; }

.profile-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.profile-review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--p-primary-light);
    color: var(--p-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat-SemiBold';
    font-size: 15px;
    flex-shrink: 0;
}

.profile-review-name { font-family: 'Montserrat-SemiBold'; font-size: 14px; color: var(--p-dark); }

.profile-review-date {
    font-size: 13px;
    color: var(--p-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-review-date .verified-badge {
    position: relative;
    cursor: help;
}
.profile-review-date .verified-badge::after {
    content: 'Επαληθευμένη αξιολόγηση';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: #fff;
    font-size: 11px;
    font-family: 'Montserrat-Medium';
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.profile-review-date .verified-badge:hover::after {
    opacity: 1;
}

.profile-review-stars { display: inline-flex; align-items: center; gap: 1px; }
.profile-review-stars svg { width: 16px; height: 16px; }

.profile-review-text { font-size: 14px; line-height: 1.7; color: var(--p-text); margin: 8px 0 0; }

/* Old review cards inside premium container */
#reviews-premium-list .row-review-new {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}
#reviews-premium-list .row-review-new:last-child { border-bottom: none; }
#reviews-premium-list .p-cust-name {
    font-family: 'Montserrat-SemiBold';
    font-size: 14px;
    color: var(--p-dark);
    margin: 0;
    display: inline-block;
}
#reviews-premium-list .directoryStarsOuter {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
#reviews-premium-list .row-name-c,
#reviews-premium-list .row-stars {
    display: inline;
}
#reviews-premium-list .name-and-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
#reviews-premium-list .p-review-comment {
    font-size: 14px;
    line-height: 1.7;
    color: var(--p-text);
    margin: 0;
}
#reviews-premium-list .review-date {
    font-size: 13px;
    color: var(--p-muted);
    margin-top: 6px;
}
#reviews-premium-list .review-date .green-check {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}
#reviews-premium-list .verified-badge {
    position: relative;
    cursor: help;
    margin-left: 4px;
}
#reviews-premium-list .verified-badge::after {
    content: 'Επαληθευμένη αξιολόγηση';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: #fff;
    font-size: 11px;
    font-family: 'Montserrat-Medium';
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
#reviews-premium-list .verified-badge:hover::after {
    opacity: 1;
}
#reviews-premium-list .seperator-rev { display: none; }
#reviews-premium-list .col-rev-overlay { padding: 0; }

/* Pagination */
.profile-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--p-border);
}

/* Premium pagination */
.profile-premium-pag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--p-border);
    font-family: 'Montserrat-SemiBold';
    font-size: 14px;
    color: var(--p-dark);
}
.profile-premium-pag a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    transition: all .15s;
    text-decoration: none;
}
.profile-premium-pag a:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.profile-pagination .pagination-button {
    width: 36px; height: 36px;
    border-radius: var(--p-radius-xs);
    background: var(--p-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Montserrat-SemiBold';
}

.profile-pagination .pagination-button:hover {
    background: var(--p-primary-light);
    border-color: var(--p-primary);
    color: var(--p-primary);
}

/* ─── SIDEBAR ─── */
.profile-sidebar-sticky {
    position: sticky;
    top: 76px;
}

/* Unified Sidebar Card */
.sidebar-card {
    background: var(--p-white);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
    padding: 0;
    overflow: hidden;
}

/* Booking Header */
.booking-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #fffbeb 100%);
    border-bottom: 1px solid #e5e7eb;
}

.availability-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
    animation: pulseGreen 2s ease infinite;
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14); }
    50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.06); }
}

.header-title {
    font-size: 16px;
    font-family: 'Montserrat-Bold';
    color: #14532d;
}

.header-subtitle {
    margin-top: 3px;
    font-size: 13px;
    color: #64748b;
    font-family: 'Montserrat-Medium';
}

.activity-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Montserrat-SemiBold';
    color: var(--p-dark);
    margin-bottom: 12px;
}

.activity-pill svg {
    color: #f59e0b;
    flex-shrink: 0;
}

/* CTA Section */
.sidebar-cta-section {
    padding: 20px 20px 0;
}

.sidebar-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat-Bold';
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 2px 8px rgba(22,163,74,0.25);

    background: linear-gradient(135deg, #0E9A2E 0%, #1db954 50%, #0E9A2E 100%);
    background-size: 200% 100%;
    color: white;
    font-family: 'Montserrat-Bold';
    width: 100%;
    min-width: 200px;
    height: 50px;
    font-size: 17px;
    letter-spacing: 0.5px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(14, 154, 46, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}



.sidebar-call-btn:hover {
    /*background: linear-gradient(135deg, #15803d, #166534);*/
    /*color: #fff;*/
    text-decoration: none;
    /*box-shadow: 0 4px 16px rgba(22,163,74,0.35);*/
    /*transform: translateY(-1px);*/
    color: white;
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 154, 46, 0.4);
}

.sidebar-call-btn img {
    transition: transform 0.3s ease;
}

.sidebar-call-btn:hover img {
    transform: scale(1.15);
}

.sidebar-call-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(14, 154, 46, 0.3);
}

.sidebar-cta-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
    font-family: 'Montserrat-Medium';
}

.sidebar-cta-micro svg {
    color: #16a34a;
    flex-shrink: 0;
}

/* Divider */
.sidebar-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
}

.sidebar-divider::before,
.sidebar-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.sidebar-divider span {
    font-size: 12px;
    color: #9ca3af;
    font-family: 'Montserrat-Medium';
}

/* Secondary CTA */
.sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 20px 20px;
    padding: 12px 16px;
    background: var(--p-white);
    color: var(--p-primary);
    border: 1.5px solid var(--p-primary);
    border-radius: 10px;
    font-family: 'Montserrat-SemiBold';
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.sidebar-contact-btn:hover {
    background: var(--p-primary);
    color: #fff;
    text-decoration: none;
}

.sidebar-contact-btn svg {
    stroke: currentColor;
}

/* Booking Section */
.sidebar-booking-section {
    border-top: 1px solid #f1f5f9;
    padding: 16px 20px 20px;
}

.sidebar-booking-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Montserrat-SemiBold';
    color: var(--p-dark);
    margin-bottom: 12px;
}

.sidebar-booking-header svg {
    color: var(--p-accent);
    flex-shrink: 0;
}

.sidebar-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: transparent;
    color: var(--p-accent);
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Montserrat-SemiBold';
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.sidebar-booking-btn:hover {
    border-color: var(--p-accent);
    background: rgba(255,152,0,0.04);
    color: var(--p-accent);
    text-decoration: none;
}

.sidebar-booking-btn svg {
    flex-shrink: 0;
}

.sidebar-payment-strip {
    text-align: center;
    padding-top: 12px;
}

.sidebar-payment-strip img {
    max-width: 140px;
    height: auto;
}

/* Support */
.sidebar-support {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    padding: 14px 16px;
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    font-family: 'Montserrat-Medium';
}

.sidebar-support a {
    color: var(--p-primary);
    font-family: 'Montserrat-Bold';
    font-size: 14px;
    text-decoration: none;
}

.sidebar-support a:hover {
    text-decoration: underline;
}

.sidebar-support-hours {
    width: 100%;
    font-size: 11px;
    color: #9ca3af;
}

/* ─── Show More ─── */
button#showMore, .show-all-apps, .hide-all-apps {
    border: none;
    background: none;
    padding: 8px 0;
    color: var(--p-primary);
    font-family: 'Montserrat-SemiBold';
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all .2s;
}

button#showMore:hover, .show-all-apps:hover, .hide-all-apps:hover {
    color: var(--p-primary-dark);
    text-decoration: underline;
}

/* ─── Hide old elements ─── */
.call-us-outer, .call-us-outer-2, #row-area-services, .super-pro-prof, .aposmob, .call-static, #aposservemob {
    display: none !important;
}

.hideCard, .hideReview { display: none; }

/* Mobile Inline CTAs */
.mobile-cta-inline {
    display: none;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    margin-top: 16px;
}

.mobile-cta-inline .sidebar-contact-btn {
    margin: 0;
    flex: 1;
}

.mobile-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.mobile-cta-row .sidebar-contact-btn,
.mobile-cta-row .sidebar-booking-btn {
    flex: 1;
    margin: 0;
    font-size: 12px;
    padding: 10px 8px;
}

@media (max-width: 991px) {
    .profile-main-col { flex: 0 0 100%; max-width: 100%; padding-right: 0; }
    .profile-sidebar-col { display: none; }
    .profile-header-banner { height: 140px; }
    .row.row-profile { margin-top: 0; padding-top: 20px; }
    .mobile-cta-inline { display: block !important; }
}

@media (max-width: 600px) {
    .profile-hero-top { flex-direction: column; align-items: center; text-align: center; }
    .profile-rating-row { justify-content: center; }
    .profile-hero-info h1 { font-size: 22px; }
    .profile-avatar { width: 120px; height: 120px; }
    .profile-stats-grid { gap: 8px; }
    .profile-stat-num { font-size: 20px; }
    .profile-section-card, .profile-hero-card { padding: 20px; border-radius: 14px; }
    .profile-reviews-big-score { font-size: 40px; }
    .row.row-profile { padding: 0 12px 30px; }
    .sidebar-call-btn { font-size: 15px; padding: 13px; }
    .profile-header-banner { height: 100px; }
    .profile-hero-ctas { justify-content: center; }

    .col-lg-8.profile-main-col{
        padding-left: 0px;
        margin-top: 25px;
    }
    .row.row-q-titles {
        margin-top: 35px;
    }
}

/* ─── Hero Inline CTAs ─── */
.profile-hero-ctas {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.profile-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--p-radius-sm);
    font-family: 'Montserrat-SemiBold';
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    border: none;
}

.profile-hero-cta-btn.primary {
    background: var(--p-green);
    color: #fff;
}
.profile-hero-cta-btn.primary:hover {
    background: var(--p-green-dark);
    color: #fff;
    text-decoration: none;
}

.profile-hero-cta-btn.secondary {
    background: transparent;
    color: var(--p-accent);
    border: 1.5px solid var(--p-accent);
}
.profile-hero-cta-btn.secondary:hover {
    background: var(--p-accent);
    color: #fff;
    text-decoration: none;
}

/* ─── CTA Microcopy ─── */
.profile-cta-microcopy {
    text-align: center;
    font-size: 12px;
    color: var(--p-muted);
    margin-top: 10px;
    font-family: 'Montserrat-Regular';
}

/* ─── Mobile Sticky Bar ─── */
.profile-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--p-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    padding: 10px 16px;
    gap: 10px;
}

.profile-mobile-sticky.visible {
    display: flex;
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--p-radius-sm);
    font-family: 'Montserrat-SemiBold';
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all .2s;
}

.mobile-sticky-btn.phone {
    background: var(--p-green);
    color: #fff;
}
.mobile-sticky-btn.phone:hover { background: var(--p-green-dark); color: #fff; text-decoration: none; }

.mobile-sticky-btn.book {
    background: var(--p-accent);
    color: #fff;
}
.mobile-sticky-btn.book:hover { background: var(--p-accent-dark); color: #fff; }

@media (min-width: 992px) {
    .profile-mobile-sticky { display: none !important; }
}

.profile-mobile-sticky .sidebar-call-btn {
    flex: 1;
    min-width: 0;
    height: auto;
    font-size: 15px;
    padding: 12px 10px;
}

.profile-mobile-sticky .sidebar-contact-btn {
    flex: 1;
    margin: 0;
    min-width: 0;
    font-size: 13px;
    padding: 12px 10px;
}

/* =====================================================
   DRAWER / QUESTIONS OVERLAY — PREMIUM OVERRIDES
   ===================================================== */

/* --- Close Button --- */
.drawer-close-btn {
    position: sticky;
    top: 8px;
    float: right;
    z-index: 10;
    background: #fff;
    /*border: 1px solid #e2e8f0;*/
    color: #64748b;
    padding: 8px;
    margin: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    border: 0px solid;
    /*box-shadow: 0 1px 3px rgba(0,0,0,.06);*/
}
.drawer-close-btn:hover { color: #1e293b; background: #f1f5f9; border-color: #cbd5e1; }

/* --- Overlay body --- */
.overlay-body {
    border-radius: 16px 0 0 16px !important;
    box-shadow: -8px 0 40px rgba(0,0,0,.12) !important;
    padding: 24px 32px 100px !important;
}

/* --- Title area --- */
.overlay-questions h4.online-title {
    font-family: 'Montserrat-Bold' !important;
    font-size: 22px !important;
    color: #1e293b !important;
    margin-bottom: 2px !important;
}
.overlay-questions p.online-subtitle {
    color: var(--p-accent) !important;
    font-family: 'Montserrat-Medium' !important;
    font-size: 14px !important;
    margin-bottom: 24px !important;
}

/* --- Service selector --- */
.overlay-questions p.choose-service {
    font-family: 'Montserrat-SemiBold' !important;
    font-size: 13px !important;
    color: #475569 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
}
.overlay-questions .select-service-outer {
    border-bottom: 1px solid #e2e8f0 !important;
    padding-bottom: 20px !important;
}
.overlay-questions .select-service .dropdown-toggle,
.overlay-questions select#selectCategoryProfile {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-family: 'Montserrat-Regular' !important;
    font-size: 14px !important;
    color: #1e293b !important;
    transition: border-color .2s !important;
    background: #fff !important;
}
.overlay-questions .select-service .dropdown-toggle:focus,
.overlay-questions select#selectCategoryProfile:focus {
    border-color: var(--p-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.08) !important;
}

/* --- Question titles --- */
.overlay-questions p.quest {
    font-family: 'Montserrat-SemiBold' !important;
    font-size: 15px !important;
    color: #1e293b !important;
    margin-top: 20px !important;
}
.overlay-questions .blockTitle.qTitleStyle {
    font-family: 'Montserrat-SemiBold' !important;
    color: #64748b !important;
    font-size: 16px !important;
}

/* --- Radio / Checkbox — keep original styles --- */

/* --- Info box --- */
.overlay-questions .alert.alert-info,
.overlay-questions .blockDescription {
    background: #eff6ff !important;
    border: 1px solid #dbeafe !important;
    border-radius: 10px !important;
    color: #1e40af !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    font-family: 'Montserrat-Regular' !important;
    padding: 14px 16px !important;
}

/* --- Date / Postcode inputs --- */
.overlay-questions .outer-postcode,
.overlay-questions .outer-date {
    margin-bottom: 8px;
}
.overlay-questions input#userDate,
.overlay-questions input#here-input1 {
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    height: 46px !important;
    font-family: 'Montserrat-Regular' !important;
    font-size: 14px !important;
    color: #1e293b !important;
    padding-left: 40px !important;
    transition: border-color .2s !important;
}
.overlay-questions input#userDate:focus,
.overlay-questions input#here-input1:focus {
    border-color: var(--p-accent) !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.08) !important;
    outline: none !important;
}
.overlay-questions .row.row-date-postcode {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}
.overlay-questions .row.row-inner-questions {
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 24px !important;
    padding-bottom: 16px !important;
}

/* --- CTA Button --- */
.overlay-questions button.btn-calc-q.btn.btn-danger.btn-lg {
    background: var(--p-accent) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 17px !important;
    padding: 14px !important;
    box-shadow: 0 4px 14px rgba(37,99,235,.25) !important;
    transition: all .25s ease !important;
}
.overlay-questions button.btn-calc-q.btn.btn-danger.btn-lg:hover {
    background: var(--p-accent-dark, #1d4ed8) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,.35) !important;
}
.overlay-questions button.btn-calc-q.btn.btn-danger.btn-lg div {
    font-family: 'Montserrat-SemiBold' !important;
    font-size: 16px !important;
}

/* --- Payment methods image --- */
.overlay-questions .payment-methods {
    margin-top: 20px !important;
    opacity: .7;
}

/* =====================================================
   PREMIUM LOADER
   ===================================================== */
.loader-outer-1.loader-profile {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.loader-inner-premium {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}
.loader-pulse {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--p-accent, #2563eb);
    opacity: .3;
    animation: loaderPulseRing 1.5s ease-out infinite;
}
@keyframes loaderPulseRing {
    0% { transform: scale(.8); opacity: .5; }
    100% { transform: scale(1.6); opacity: 0; }
}
.loader-pulse-icon {
    animation: loaderPulseIcon 1.5s ease-in-out infinite;
}
@keyframes loaderPulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: .7; }
}
.loader-text-premium {
    margin-top: 18px;
    font-family: 'Montserrat-Medium';
    font-size: 15px;
    color: #64748b;
    letter-spacing: 0.3px;
    animation: loaderTextFade 1.5s ease-in-out infinite;
}
@keyframes loaderTextFade {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
