/* #RevampBrain1 - Ultra Premium UI */
:root {
    --primary: #1a73e8;
    --primary-light: #f0f7ff;
    --success: #34a853;
    --text-main: #202124;
    --text-sub: #5f6368;
    --card-bg: #ffffff;
    --body-bg: #f8f9fa;
}

body { font-family: 'Inter', 'Segoe UI', sans-serif; background: var(--body-bg); color: var(--text-main); line-height: 1.6; }

.container { max-width: 960px; margin: 0 auto; padding: 25px; }

/* Elegant Breadcrumbs */
.breadcrumb-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 35px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}
.breadcrumb-container a { color: var(--primary); text-decoration: none; font-weight: 600; }
.breadcrumb-container .sep { color: #ccc; }

/* Premium Card Design */
.listing-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 28px;
    border-radius: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(26, 115, 232, 0.2);
}

/* Modern Business Logo/Initial */
.biz-initial {
    width: 85px; height: 85px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin-right: 30px;
    flex-shrink: 0;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

/* Text & Content Fine-Tuning */
.biz-details { flex: 1; }
.badge-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.verified-badge {
    background: #e6f4ea;
    color: #1e8e3e;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-tag { color: #f4b400; font-weight: 700; font-size: 13px; }

.biz-title { margin: 0 0 8px 0; font-size: 1.65rem; line-height: 1.2; }
.biz-title a { text-decoration: none; color: var(--text-main); font-weight: 800; }
.biz-desc { color: var(--text-sub); font-size: 15px; margin: 0; max-width: 90%; }

/* Dynamic Floating Call Button */
/* --- Ultra Modern Call Button --- */
.cta-call {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #34a853 0%, #2d944a 100%);
    color: white !important;
    border-radius: 20px; /* Modern Rounded Square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 20px rgba(52, 168, 83, 0.3), 
                inset 0 -4px 0 rgba(0,0,0,0.1); /* 3D Depth */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
}

/* Shine Effect on Hover */
.cta-call::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.cta-call:hover::before {
    left: 100%;
}

.cta-call:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 25px rgba(52, 168, 83, 0.4);
    filter: brightness(1.1);
}

/* Soft Pulse Animation */
.cta-call i {
    animation: phone-wiggle 2s infinite;
}

@keyframes phone-wiggle {
    0%, 90% { transform: rotate(0deg); }
    92% { transform: rotate(15deg); }
    94% { transform: rotate(-15deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* Button Active State */
.cta-call:active {
    transform: scale(0.95);
    box-shadow: 0 5px 10px rgba(52, 168, 83, 0.2);
}
/* Decorative Element */
.listing-card::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 100px; height: 100px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

/* --- Area & Keywords Styling --- */
.top-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.area-tag {
    background: #fff4f4; /* Light Red/Pink */
    color: #d93025; /* Google Map Red */
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.keyword-pill {
    font-size: 11px;
    color: #5f6368;
    background: #f1f3f4;
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #e8eaed;
}

.listing-card:hover .keyword-pill {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff;
}
/* Brand Label New Spot Styling */
.brand-label-tag {
    background: #f0f4ff;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 4px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-label-tag i {
    font-size: 13px;
}