/* Click Near By - Justdial Style Theme */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --primary: #4f46e5; /* Premium Indigo */
    --primary-hover: #4338ca;
    --accent: #2563eb; /* Strong Blue for CTAs */
    --accent-hover: #1d4ed8;
    
    --bg-main: #f4f5f9;
    --bg-card: #ffffff;
    
    --text-primary: #1a1a1a;
    --text-secondary: #5e6472;
    --text-muted: #8c92a0;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --font-main: 'Open Sans', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background: var(--bg-main); color: var(--text-primary); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* Header & Nav */
.header { background: var(--bg-card); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; width: 100%; }
.logo a { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); display: flex; align-items: center; gap: 0.2rem; letter-spacing: -1px; }
.logo a span { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; align-items: center; font-size: 1rem; font-weight: 600; }
.nav-links a { position: relative; padding: 0.5rem 0; }
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.2s ease; border: none; font-size: 0.95rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: #fffaf5; }

/* Grid Layouts */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(calc(50% - 1.5rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 1.5rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(calc(25% - 1.5rem), 1fr)); }
@media(max-width: 1024px) { .grid-4 { grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 1.5rem), 1fr)); } }
@media(max-width: 768px) { .grid-3, .grid-4 { grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); } }

/* Cards */
.card { background: var(--bg-card); border-radius: 8px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); overflow: hidden; transition: box-shadow 0.2s; }
.card:hover { box-shadow: var(--shadow-md); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.form-control { width: 100%; padding: 0.85rem; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; outline: none; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1); }

/* Alert */
.alert { padding: 1rem; border-radius: 6px; margin-bottom: 1rem; font-weight: 500; font-size: 0.95rem; }
.alert-success { background: #e6fcf5; color: #087f5b; border: 1px solid #c3fae8; }
.alert-error { background: #fff5f5; color: #c92a2a; border: 1px solid #ffe3e3; }

/* UI Overrides for Listings */
.jd-pill { background: #f0f2f5; color: var(--text-secondary); padding: 0.4rem 0.8rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.hero-search-container {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}
.search-box-jd {
    position: relative;
    display: flex;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    border: 5px solid rgba(255,255,255,0.2);
    background-clip: padding-box;
}

.search-box-jd input {
    flex: 1;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    outline: none;
    background: #fff;
}
.search-box-jd select {
    width: 200px;
    border: none;
    border-right: 1px solid var(--border-light);
    padding: 1.2rem 1.5rem;
    background: #fff;
    outline: none;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}
.search-box-jd button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.search-box-jd button:hover { background: var(--primary-hover); }

/* Circular Categories list for JD style */
.jd-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.jd-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    transition: all 0.2s;
    text-align: center;
}
.jd-category-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: var(--border);
}
.jd-category-card i {
    font-size: 2rem;
    color: var(--primary);
    background: #fffaf5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.jd-category-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Listings layout (List view) */
.jd-listing-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.jd-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.jd-listing-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.jd-listing-title {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.jd-listing-rating {
    display: inline-flex;
    align-items: center;
    background: #12b76a;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
}
.jd-listing-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 4rem 2rem; margin-top: 4rem; text-align: center; }

/* Premium Business Card Grid for Homepage */
.premium-biz-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-biz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.premium-biz-img {
    height: 140px;
    background: linear-gradient(135deg, #f0f2f5 0%, #e2e4e8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3rem;
    border-bottom: 1px solid var(--border-light);
}
.rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #12b76a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    height: auto !important;
    min-width: 40px;
    justify-content: center;
}
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
}
.premium-btn {
    padding: 0.6rem 0.5rem; 
    border-radius: 8px; 
    font-size: 0.85rem; 
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}
.premium-btn i { margin-right: 4px; }
.premium-btn-icon {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.premium-biz-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.meta-tag {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.biz-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.biz-title a { color: var(--text-primary); transition: color 0.2s; }
.biz-title a:hover { color: var(--accent); }
.biz-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: auto;
}
.verified-tag {
    color: #087f5b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e6fcf5;
    padding: 2px 6px;
    border-radius: 4px;
}
.premium-biz-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.5rem;
}

/* Standardizing Footer */
.footer-wrap {
    background: #111827; 
    color: #9ca3af; 
    padding: 5rem 0 2rem; 
    margin-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #374151;
}
@media(max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-title {
    color: #f3f4f6;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #9ca3af; transition: color 0.2s; font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
@media(max-width: 768px) { .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; } }

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--primary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary-hover); text-decoration: underline; }
.breadcrumb .separator { color: #cbd5e1; font-size: 0.8rem; }
.breadcrumb .current { color: var(--text-primary); font-weight: 600; }

/* Skeleton Loading */
@keyframes skeleton-shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
.skeleton-box {
    animation: skeleton-shimmer 2s infinite linear;
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 1000px 100%;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* ===== Premium directory design system (detail / home / listing) ===== */
:root {
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #6366f1 55%, #818cf8 100%);
    --gradient-cta: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
    --surface-elevated: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 10px 24px -4px rgba(15, 23, 42, 0.08);
    --surface-hover: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
}

.section-title-premium {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.section-title-premium i { color: var(--primary); font-size: 1.1rem; }

.section-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--surface-elevated);
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    transition: box-shadow 0.25s ease;
}
.section-card:hover { box-shadow: var(--shadow-md); }

.btn-gradient {
    background: var(--gradient-cta);
    color: #fff !important;
    border: none;
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}
.btn-gradient-wa {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}
.btn-gradient-wa:hover { box-shadow: 0 8px 20px rgba(22, 163, 74, 0.45); }
.btn-gradient-outline {
    background: #fff;
    color: var(--text-primary) !important;
    border: 1px solid var(--border);
    box-shadow: none;
    font-weight: 600;
}
.btn-gradient-outline:hover { border-color: var(--primary); color: var(--primary) !important; }

/* Detail page */
.detail-page { background: var(--bg-main); }
.detail-hero {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
}
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.25) 100%);
}
.detail-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 0 2.75rem;
    color: #fff;
}
.detail-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.detail-hero .breadcrumb a:first-child { color: #a5b4fc; font-weight: 700; }
.detail-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0.75rem 0 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.detail-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-pill--cat { background: var(--primary); color: #fff; }
.badge-pill--rating { background: #059669; color: #fff; }
.badge-pill--verified { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; border: 1px solid rgba(110, 231, 183, 0.35); }
.badge-pill--featured { background: rgba(219, 39, 119, 0.85); color: #fff; }
.detail-hero-actions {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.detail-hero-actions .btn-share {
    background: #25d366;
    color: #fff;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.detail-hero-actions .btn-copy {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}
.detail-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
}
.detail-meta-line i { color: #a5b4fc; margin-right: 0.35rem; }

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0 4rem;
}
.detail-main { min-width: 0; }
.detail-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
}
.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--surface-elevated);
    margin-bottom: 1.25rem;
}
.sidebar-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.sidebar-cta-stack { display: flex; flex-direction: column; gap: 0.65rem; }
.sidebar-info-table { width: 100%; font-size: 0.9rem; border-collapse: collapse; }
.sidebar-info-table th,
.sidebar-info-table td {
    padding: 0.5rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}
.sidebar-info-table th { color: var(--text-muted); font-weight: 600; width: 42%; }
.sidebar-info-table td { color: var(--text-primary); font-weight: 600; }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.highlight-item {
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--border-light);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.highlight-item i { font-size: 1.35rem; color: var(--primary); margin-top: 2px; }
.highlight-item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.highlight-item span { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}
.service-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    color: #166534;
    font-weight: 600;
    font-size: 0.92rem;
}
.service-chip i { color: #22c55e; }

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
.gallery-grid-premium a {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}
.gallery-grid-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-grid-premium a:hover img { transform: scale(1.06); }

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.hours-table tr { border-bottom: 1px solid var(--border-light); }
.hours-table td { padding: 0.65rem 0; }
.hours-table td:first-child { font-weight: 600; color: var(--text-primary); }
.hours-table td:last-child { text-align: right; color: var(--text-secondary); font-weight: 500; }
.hours-table tr.is-today td { color: var(--primary); }
.hours-table .closed { color: #dc2626; font-weight: 600; }

.map-embed-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    min-height: 280px;
}
.map-embed-wrap iframe { width: 100%; min-height: 280px; border: 0; display: block; }

.review-card-premium {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: #fff;
    margin-bottom: 1rem;
}
.stars-inline { color: #eab308; letter-spacing: 2px; }

.faq-list details {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff;
}
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--text-primary); }
.faq-list details[open] summary { margin-bottom: 0.5rem; color: var(--primary); }
.faq-list p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.55; margin: 0; }

.similar-slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.25rem;
    padding-bottom: 0.5rem;
}
.similar-slider {
    display: flex;
    gap: 1rem;
    padding: 0.25rem;
}
.similar-card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.similar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.similar-card-img { height: 120px; background: #e5e7eb; }
.similar-card-img img { width: 100%; height: 100%; object-fit: cover; }
.similar-card-body { padding: 1rem; }
.similar-card-body h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.35rem; line-height: 1.3; }
.similar-card-body h4 a { color: inherit; }
.similar-card-body h4 a:hover { color: var(--accent); }

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.report-link:hover { color: #dc2626; }

.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
    gap: 0.65rem;
    justify-content: center;
}
.mobile-cta-bar a {
    flex: 1;
    max-width: 160px;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.mobile-cta-bar .m-call { background: var(--gradient-cta); color: #fff; }
.mobile-cta-bar .m-wa { background: #25d366; color: #fff; }

@media (max-width: 1024px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar-sticky { position: static; }
}
@media (max-width: 768px) {
    .detail-hero-inner { padding-bottom: 2rem; }
    .detail-hero-actions { width: 100%; margin-left: 0; margin-top: 0.75rem; }
    .mobile-cta-bar { display: flex; }
    body.detail-page { padding-bottom: 5rem; }
}

/* Listing horizontal premium cards */
.listing-page-wrap { padding: 2.5rem 0 4rem; }
.listing-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.listing-filters-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 5rem;
    box-shadow: var(--surface-elevated);
}
.listing-horizontal-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.listing-horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--surface-hover);
}
.listing-horizontal-card .lh-media {
    width: 240px;
    flex-shrink: 0;
    min-height: 200px;
    position: relative;
    background: #e5e7eb;
}
.listing-horizontal-card .lh-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
}
.listing-horizontal-card .lh-body {
    flex: 1;
    padding: 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.listing-horizontal-card .lh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}
.listing-horizontal-card .lh-actions > a.btn-primary.premium-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #4338ca 100%);
    border: none;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.28);
    border-radius: 11px;
    padding: 0.55rem 1rem;
}
.listing-horizontal-card .lh-actions > a.btn-primary.premium-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
    color: #fff !important;
}
@media (max-width: 768px) {
    .listing-layout { flex-direction: column; }
    .listing-filters-sidebar { width: 100%; position: static; }
    .listing-horizontal-card { flex-direction: column; }
    .listing-horizontal-card .lh-media { width: 100%; min-height: 180px; }
}

/* Homepage: stats, cities, pills */
.popular-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.popular-pills a {
    padding: 0.4rem 0.9rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
}
.popular-pills a:hover { background: rgba(255,255,255,0.22); }

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.stat-box {
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.stat-box .num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.stat-box .label { font-size: 0.95rem; color: var(--text-secondary); font-weight: 600; margin-top: 0.35rem; }

.city-card-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.city-card-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, transparent 65%);
}
.city-card-premium:hover { transform: translateY(-4px); box-shadow: var(--surface-hover); }
.city-card-premium .city-card-inner {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
    color: #fff;
}
.city-card-premium h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.25rem; }
.city-card-premium p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

.search-box-jd select.category-select {
    width: 190px;
    border-right: 2px solid var(--border-light);
}
@media (max-width: 900px) {
    .search-box-jd { flex-direction: column; border-radius: var(--radius-lg); }
    .search-box-jd select,
    .search-box-jd select.category-select { width: 100%; border-right: none; border-bottom: 1px solid var(--border-light); }
    .search-box-jd button { width: 100%; padding: 1rem; border-radius: 0 0 var(--radius-md) var(--radius-md); }
}

/* ========== Premium: Popular categories (homepage) ========== */
.cat-section-premium {
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-light);
}
.cat-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.cat-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}
.cat-section-head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 4px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--primary), #a855f7);
}
.cat-section-head p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}
.cat-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
    gap: 1.15rem;
}
@media (min-width: 1100px) {
    .cat-grid-premium { gap: 1.35rem; }
}
.cat-card-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 1.4rem 1rem 1.25rem;
    min-height: 188px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(79, 70, 229, 0.09);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}
.cat-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow:
        0 4px 12px rgba(79, 70, 229, 0.08),
        0 22px 44px rgba(15, 23, 42, 0.1);
}
.cat-card-premium__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.14), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.cat-card-premium:hover .cat-card-premium__glow {
    opacity: 1;
}
.cat-card-premium__icon-wrap {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 55%, #ddd6fe 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 10px 22px rgba(79, 70, 229, 0.18);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.cat-card-premium:hover .cat-card-premium__icon-wrap {
    transform: scale(1.06) translateY(-2px);
}
.cat-card-premium__icon-wrap i {
    font-size: 1.65rem;
    color: #4f46e5;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}
.cat-card-premium__label {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.35;
    max-width: 100%;
}
.cat-card-premium__hint {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6366f1;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.cat-card-premium__hint i {
    margin-left: 0.25rem;
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}
.cat-card-premium:hover .cat-card-premium__hint {
    opacity: 1;
    transform: translateY(0);
}
.cat-card-premium:hover .cat-card-premium__hint i {
    transform: translateX(4px);
}
.cat-card-premium:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
@media (max-width: 480px) {
    .cat-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-card-premium { min-height: 170px; }
}

/* ========== Premium: Business listing cards (homepage grid) ========== */
.biz-card-pro-grid .biz-card-pro {
    height: 100%;
}
.biz-card-pro {
    border-radius: 24px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    background: linear-gradient(170deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08), inset 0 2px 0 rgba(255, 255, 255, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.biz-card-pro:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4) !important;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15), inset 0 2px 0 rgba(255, 255, 255, 1);
}
.biz-card-pro .premium-biz-img,
a.biz-card-pro__media.premium-biz-img {
    display: block;
    height: 196px;
    padding: 0;
    margin: 0;
    border: none;
    border-bottom: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.biz-card-pro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.biz-card-pro:hover .biz-card-pro__media img {
    transform: scale(1.06);
}
.biz-card-pro__media-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.55) 100%);
    opacity: 0.85;
}
.rating-badge--pro {
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 999px;
    color: #059669;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.featured-badge--pro {
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 999px;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.biz-card-pro__body {
    padding: 1.35rem 1.35rem 1.1rem !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.meta-tag--pro {
    align-self: flex-start;
    margin-bottom: 0.65rem !important;
    padding: 5px 11px !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.14em !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%) !important;
    color: #5b21b6 !important;
    border: 1px solid rgba(91, 33, 182, 0.12) !important;
}
.biz-title--pro {
    font-size: 1.18rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.32 !important;
    margin: 0 0 0.85rem !important;
}
.biz-title--pro a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.biz-title--pro a:hover {
    color: var(--primary);
}
.biz-info--pro {
    margin-top: auto !important;
    padding-top: 0.25rem;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.biz-info--pro__loc {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}
.biz-info--pro__loc i {
    color: #6366f1;
    margin-right: 0.35rem;
}
.verified-tag--pro {
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    border: 1px solid #a7f3d0 !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
}
.biz-card-pro__footer {
    padding: 0 1.35rem 1.35rem !important;
    margin: 0;
    border-top: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}
.biz-card-pro__primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.72rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.biz-card-pro__primary:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.biz-card-pro__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}
.biz-card-pro__enquiry {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    font-weight: 700;
    color: #334155;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.biz-card-pro__enquiry:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.biz-card-pro__quick {
    display: flex;
    gap: 0.45rem;
    flex-shrink: 0;
}
.biz-card-pro__icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    color: #475569;
    text-decoration: none;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.biz-card-pro__icon-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background: #eef2ff;
    transform: translateY(-1px);
}
.biz-card-pro__icon-btn--wa {
    border-color: #bbf7d0;
    color: #16a34a;
    background: #f0fdf4;
}
.biz-card-pro__icon-btn--wa:hover {
    border-color: #22c55e;
    background: #dcfce7;
    color: #15803d;
}
