/* profile-details.css — page-specific styles. Global vars/nav/footer in global.css */
body { background: #F8FAFC; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--border-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* BREADCRUMB */
.breadcrumb-custom { background: white; border-bottom: 1px solid var(--border); padding: 11px 5%; }
.bc-inner-custom { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-lighter); }
.bc-inner-custom a { color: var(--text-light); text-decoration: none; transition: color .2s; }
.bc-inner-custom a:hover { color: var(--orange); }
.bc-inner-custom span { color: var(--dark); font-weight: 500; }

/* PROFILE HERO */
.profile-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 55%, var(--dark-3) 100%); padding: 48px 5% 0; position: relative; overflow: hidden; }
.profile-hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,100,42,0.18) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.profile-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, transparent, #F8FAFC); }
.profile-hero-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }
.hero-top { display: flex; align-items: flex-start; gap: 28px; padding-bottom: 40px; }
.hero-avatar-wrap { position: relative; flex-shrink: 0; }
.hero-avatar { width: 110px; height: 110px; border-radius: 24px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; color: white; border: 3px solid rgba(255,255,255,0.15); box-shadow: 0 12px 40px rgba(232,100,42,0.4); }
.verified-badge { position: absolute; bottom: -6px; right: -6px; width: 28px; height: 28px; border-radius: 50%; background: var(--success); border: 2.5px solid var(--dark-2); display: flex; align-items: center; justify-content: center; font-size: 12px; color: white; }
.hero-info { flex: 1; padding-top: 6px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.hero-tag { padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; }
.tag-verified { background: rgba(16,185,129,0.15); color: #34D399; border: 1px solid rgba(16,185,129,0.2); }
.tag-featured { background: rgba(232,100,42,0.15); color: #FF9A6C; border: 1px solid rgba(232,100,42,0.25); }
.tag-niceic { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.hero-name { font-family: 'Sora', sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 6px; }
.hero-trade { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-weight: 300; }
.hero-trade strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-meta-item svg { color: var(--orange); flex-shrink: 0; }
.hero-meta-item strong { color: rgba(255,255,255,0.85); }
.hero-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; padding-top: 6px; min-width: 200px; }
.hero-stat-pills { display: flex; flex-direction: column; gap: 8px; }
.stat-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.stat-pill-val { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: white; }
.stat-pill-label { font-size: 11px; color: rgba(255,255,255,0.5); text-align: right; }
.stars-hero { color: var(--warning); font-size: 14px; letter-spacing: 1px; }
.hero-actions { display: flex; gap: 10px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 2; }
.btn-hero-primary { flex: 1; padding: 14px 24px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .25s; box-shadow: var(--shadow-orange); display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,100,42,0.4); }
.btn-hero-ghost { padding: 14px 20px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; display: flex; align-items: center; gap: 7px; }
.btn-hero-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* STICKY TAB NAV */
.tab-nav { background: white; border-bottom: 1px solid var(--border); padding: 0 5%; position: sticky; top: 64px; z-index: 100; }
.tab-nav-inner { max-width: 1320px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; }
.tab-btn { padding: 16px 22px; font-size: 14px; font-weight: 500; color: var(--text-light); background: none; border: none; border-bottom: 2.5px solid transparent; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: all .2s; }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); font-weight: 600; }

/* MAIN LAYOUT */
.page-wrap { max-width: 1320px; margin: 0 auto; padding: 32px 5%; display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.left-col { display: flex; flex-direction: column; gap: 24px; }

/* Generic Card */
.card { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: box-shadow .25s; }
.card:hover { box-shadow: var(--shadow); }
.card-head { padding: 22px 24px 0; display: flex; align-items: center; justify-content: space-between; }
.card-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.card-title-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.card-body { padding: 20px 24px 24px; }

/* About */
.about-text { font-size: 14px; line-height: 1.85; color: var(--text-light); margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.highlight-item { background: var(--border-light); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.highlight-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.highlight-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.highlight-text span { font-size: 12px; color: var(--text-lighter); }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-item { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all .25s; cursor: default; position: relative; overflow: hidden; }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); opacity: 0; transition: opacity .25s; }
.service-item:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(232,100,42,0.1); transform: translateY(-2px); }
.service-item:hover::before { opacity: 1; }
.service-item-top { display: flex; align-items: flex-start; gap: 14px; }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-pale); border: 1.5px solid rgba(232,100,42,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.service-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.service-icon-fallback { font-size: 22px; line-height: 1; }
.service-item-info { flex: 1; min-width: 0; }
.service-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.service-category { font-size: 11px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.service-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-item-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border-light); }
.service-price { display: inline-flex; align-items: center; gap: 4px; background: var(--orange-pale); color: var(--orange-dark); font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(232,100,42,0.2); }
.service-price-label { font-size: 10px; font-weight: 500; color: var(--text-lighter); }
.service-delivery { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-lighter); }
.service-delivery svg { color: var(--success); flex-shrink: 0; }

/* Certifications */
.certs-list { display: flex; flex-direction: column; gap: 12px; }
.cert-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--border-light); border-radius: var(--radius-sm); border: 1.5px solid var(--border); }
.cert-logo { width: 44px; height: 44px; border-radius: 10px; background: white; display: flex; align-items: center; justify-content: center; font-size: 18px; border: 1px solid var(--border); flex-shrink: 0; }
.cert-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.cert-info span { font-size: 12px; color: var(--text-lighter); }
.cert-badge { margin-left: auto; padding: 3px 10px; background: var(--success-light); color: var(--success); border-radius: 50px; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-sm); background: var(--border-light); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; position: relative; overflow: hidden; }
.gallery-real { border: none; }
.gallery-real:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.gallery-real:hover .gallery-overlay { opacity: 1; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(232,100,42,0.65); display: flex; align-items: center; justify-content: center; color: white; font-size: 13px; font-weight: 600; letter-spacing: .3px; opacity: 0; transition: opacity .2s; }
.gallery-more-card { background: var(--border-light); border: 2px dashed var(--border); flex-direction: column; }
.gallery-more-card:hover { border-color: var(--orange); background: var(--orange-pale); }

/* Reviews */
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.rating-overview { display: flex; align-items: center; gap: 24px; }
.big-rating { text-align: center; }
.big-rating-num { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; }
.big-rating-stars { color: var(--warning); font-size: 18px; margin: 6px 0; }
.big-rating-count { font-size: 12px; color: var(--text-lighter); }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rating-bar-label { font-size: 12px; color: var(--text-light); width: 36px; text-align: right; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 7px; background: var(--border-light); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--warning), #FBBF24); }
.rating-bar-count { font-size: 11px; color: var(--text-lighter); width: 24px; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { padding: 20px; background: var(--border-light); border-radius: var(--radius-sm); border: 1.5px solid var(--border); transition: border-color .2s; }
.review-card:hover { border-color: rgba(232,100,42,0.3); }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; gap: 12px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 13px; flex-shrink: 0; }
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.reviewer-job { font-size: 12px; color: var(--text-lighter); }
.review-meta { text-align: right; flex-shrink: 0; }
.review-stars { color: var(--warning); font-size: 13px; }
.review-date { font-size: 11px; color: var(--text-lighter); margin-top: 2px; }
.review-text { font-size: 13px; line-height: 1.8; color: var(--text-light); }
.review-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.review-tag { background: white; border: 1px solid var(--border); color: var(--text-light); padding: 2px 10px; border-radius: 50px; font-size: 11px; }
.review-helpful { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; color: var(--text-lighter); }
.helpful-btn { background: none; border: 1px solid var(--border); padding: 3px 10px; border-radius: 50px; font-size: 11px; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; color: var(--text-light); }
.helpful-btn:hover { border-color: var(--orange); color: var(--orange); }
.load-more-btn { width: 100%; padding: 13px; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--text-light); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; margin-top: 16px; }
.load-more-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Map */
.map-area { height: 220px; border-radius: var(--radius-sm); background: linear-gradient(135deg, #E8EDF2, #DDE4EC); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-lighter); margin-bottom: 16px; position: relative; overflow: hidden; border: 1.5px solid var(--border); }
.map-area::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px); }
.map-pin { position: relative; z-index: 1; text-align: center; }
.map-pin-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 8px; box-shadow: 0 4px 16px rgba(232,100,42,0.4); animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.map-pin p { font-size: 12px; color: var(--text-light); background: white; padding: 4px 12px; border-radius: 50px; box-shadow: var(--shadow); }
.coverage-areas { display: flex; flex-wrap: wrap; gap: 6px; }
.coverage-tag { background: var(--border-light); border: 1px solid var(--border); padding: 4px 12px; border-radius: 50px; font-size: 12px; color: var(--text-light); }

/* RIGHT COLUMN */
.right-col { position: sticky; top: 136px; display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; }
.contact-card-top { background: linear-gradient(135deg, var(--dark), var(--dark-2)); padding: 22px 22px 20px; }
.contact-avail { display: inline-flex; align-items: center; gap: 6px; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.2); color: #34D399; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; margin-bottom: 12px; }
.contact-avail::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.contact-price-row { display: flex; align-items: flex-end; justify-content: space-between; }
.contact-price-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.contact-price { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; color: white; line-height: 1; }
.contact-price sup { font-size: 16px; vertical-align: top; margin-top: 4px; }
.contact-price-note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.contact-response { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.contact-card-body { padding: 18px 20px; }
.contact-btn-main { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-bottom: 10px; transition: all .25s; box-shadow: var(--shadow-orange); display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,100,42,0.4); }
.contact-btn-secondary { width: 100%; padding: 12px; background: white; border: 1.5px solid var(--border); color: var(--text); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-bottom: 10px; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.contact-btn-whatsapp { width: 100%; padding: 12px; background: #25D366; color: white; border: none; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-btn-whatsapp:hover { background: #1EBE5B; }
.contact-divider { height: 1px; background: var(--border); margin: 14px 0; }
.contact-info-list { display: flex; flex-direction: column; gap: 10px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.contact-info-item svg { color: var(--orange); flex-shrink: 0; }
.quick-stats { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 20px; }
.qs-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.qs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qs-item { background: var(--border-light); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.qs-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); }
.qs-label { font-size: 11px; color: var(--text-lighter); margin-top: 2px; }
.similar-card { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 20px; }
.similar-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.similar-list { display: flex; flex-direction: column; gap: 10px; }
.similar-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); cursor: pointer; transition: all .2s; text-decoration: none; }
.similar-item:hover { border-color: var(--orange); background: var(--orange-pale); }
.similar-avatar { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 800; color: white; flex-shrink: 0; }
.similar-info { flex: 1; min-width: 0; }
.similar-name { font-size: 13px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.similar-trade { font-size: 11px; color: var(--text-lighter); }
.similar-rating { font-size: 12px; color: var(--warning); font-weight: 600; }
.report-link { text-align: center; font-size: 12px; color: var(--text-lighter); padding-top: 8px; }
.report-link a { color: var(--text-lighter); text-decoration: underline; transition: color .2s; }
.report-link a:hover { color: var(--orange); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: var(--radius-sm); border: 1.5px solid var(--border); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(232,100,42,0.3); }
.faq-q { width: 100%; padding: 15px 18px; background: white; border: none; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 500; color: var(--dark); cursor: pointer; font-family: 'DM Sans', sans-serif; text-align: left; transition: all .2s; gap: 12px; }
.faq-q:hover, .faq-item.open .faq-q { color: var(--orange); background: var(--orange-pale); }
.faq-icon { font-size: 18px; color: var(--text-lighter); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-a { display: none; padding: 0 18px 16px; font-size: 13px; line-height: 1.8; color: var(--text-light); background: white; }
.faq-item.open .faq-a { display: block; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .page-wrap { grid-template-columns: 1fr; }
  .right-col { position: static; }
}
@media (max-width: 768px) {
  .hero-top { flex-direction: column; }
  .hero-right { width: 100%; }
  .hero-stat-pills { flex-direction: row; }
  .stat-pill { flex: 1; }
  .about-highlights { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-nav { top: 56px; }
}
