/* assets/css/homepage_v3.css - Premium Rebuild Styles */

:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F9E2AF;
    --color-gold-dark: #996515;
    --color-dark-bg: #050505;
    --color-dark-card: #0a0a0a;
    --color-glass: rgba(255, 255, 255, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--color-dark-bg);
    color: #ffffff;
    font-family: var(--font-body);
    overflow-x: hidden;
}

.font-heading { font-family: var(--font-heading); }

/* Section Overrides */
.revamp-section {
    padding: 120px 0;
    position: relative;
}

.text-gradient-gold {
    background: linear-gradient(90deg, #D4AF37, #FFF, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

/* Sharp Premium Glass Card Design */
.glass-card-premium {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Top Highlight for Depth */
    border-radius: 25px; /* Premium Sharpness */
    padding: 45px 30px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.glass-card-premium:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(15, 15, 15, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
}

.cat-icon-premium {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    color: var(--color-gold);
    transition: all 0.4s ease;
}

.glass-card-premium:hover .cat-icon-premium {
    transform: translateY(-5px);
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section Refinement */
.hero-v3 {
    min-height: 80vh;
    padding-top: 150px;
    padding-bottom: 150px;
}

.search-capsule-v3 {
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-capsule-v3:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4) !important;
}

.choice-cards-section {
    padding-bottom: 0 !important;
}

.active-glow {
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

/* WOW Community Hub V3 - Condensed */
.community-hub-v3 {
    background: linear-gradient(145deg, #0f0f0f 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 35px; /* Condensed */
    position: relative;
    overflow: hidden;
}

/* Reverting News Design to Circular Premium Style */
.news-feed-v3 {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 35px; /* Condensed */
}

/* WOW News Marquee V3 */
.news-marquee-container {
    height: 400px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.news-marquee-content {
    animation: verticalMarquee 30s linear infinite;
    display: flex;
    flex-direction: column;
}

.news-marquee-container:hover .news-marquee-content {
    animation-play-state: paused;
}

@keyframes verticalMarquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.news-capsule-card-v3 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 12px 15px;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.news-capsule-card-v3:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-gold);
    transform: scale(1.02);
}

.news-avatar-wrapper-v3 {
    position: relative;
    flex-shrink: 0;
    margin-right: 15px;
}

.news-avatar-img-v3 {
    width: 50px; /* Smaller */
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.news-badge-mini-v3 {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    border: 2px solid #000;
}

.news-tag-v3 {
    font-size: 9px;
    color: var(--color-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    display: block;
}

.news-title-v3 {
    color: #eee;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Sleek Trust Strip V3 - Compact & Attractive */
.stats-strip-v3 {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
    margin-top: 30px;
}

.stat-item-v3 {
    transition: all 0.3s ease;
}

.stat-num-v3 {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
}

.stat-label-v3 {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
}

.stat-icon-v3 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

/* WOW Feature Grid V3 */
.feature-card-v3 {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card-v3:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(15, 15, 15, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.feature-card-v3:hover::before {
    opacity: 1;
}

.feature-icon-v3 {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.feature-card-v3:hover .feature-icon-v3 {
    background: var(--color-gold);
    color: #000;
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-card-v3 h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.feature-card-v3 p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

/* .agent-card-v3 {
    padding: 40px;
    text-align: center;
} */

.agent-img-v3 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    margin-bottom: 20px;
}

/* Pricing */
/* Liquid Dash Path How It Works V3 */
.how-it-works-section {
    position: relative;
    background: #050505;
    padding-bottom: 50px;
}

.flow-container-v3 {
    position: relative;
    padding: 80px 0;
}

/* Glowing Connective Path */
.flow-container-v3::before {
    content: '';
    position: absolute;
    top: 115px; /* Precision Centered: 80px padding + 35px (half of 70px number) */
    left: 10%;
    right: 10%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--color-gold) 70%, transparent 30%);
    background-size: 30px 2px;
    background-repeat: repeat-x;
    opacity: 0.5;
    z-index: 1;
    animation: flowDash 2s linear infinite;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
}

@keyframes flowDash {
    from { background-position: 0 0; }
    to { background-position: 120px 0; }
}

.step-item-v3 {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-number-v3 {
    width: 70px;
    height: 70px;
    background: #0d0d0d;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    margin: 0 auto 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    position: relative;
}

/* Stunning Halo Glow Around Number */
.step-number-v3::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.step-item-v3:hover .step-number-v3 {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.step-item-v3:hover .step-number-v3::after {
    transform: scale(1.2);
    border-color: var(--color-gold);
    opacity: 1;
}

.step-item-v3 h5 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.step-item-v3 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 15px;
}

@media (max-width: 767px) {
    .flow-container-v3::before { display: none; }
    .step-item-v3 { margin-bottom: 40px; }
}

/* Premium Pill Buttons */
.btn-premium-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    border-radius: 50px !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-premium-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #F9E2AF 0%, #D4AF37 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #000 !important;
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 28px;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
}

.btn-premium-outline:hover {
    background: #fff;
    color: #000 !important;
    border-color: #fff;
}

/* Search Suggestions Box V3 */
.suggestions-box-v3 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 15px;
    z-index: 99999;
    max-height: 500px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestion-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.suggestion-img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.suggestion-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Premium Navigation Arrows Fix */
.premium-nav-prev-v3, .premium-nav-next-v3,
.agent-nav-prev-v3, .agent-nav-next-v3 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.premium-nav-prev-v3:hover, .premium-nav-next-v3:hover,
.agent-nav-prev-v3:hover, .agent-nav-next-v3:hover {
    background: var(--color-gold);
    color: #000;
}

/* Responsiveness */
@media (max-width: 991px) {
    .search-capsule-v3 { border-radius: 30px; margin-bottom: 30px; }
    .btn-premium-gold { margin-top: 10px; width: 100%; border-radius: 30px !important; }
}

@media (max-width: 767px) {
    .revamp-section { padding: 80px 0; }
    .hero-v3 h1 { font-size: 2.5rem; }
    .hero-v3 { padding-top: 100px; padding-bottom: 100px; }
}

/* Premium Business Card V3 - Targeted Design Rebuild */
.biz-card-v3 {
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.biz-card-v3:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* Image Wrapper Badges */
.biz-image-wrap {
    height: 220px;
    margin: 15px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Image Wrapper Badges - Stackable */
.biz-badge-stack {
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 10;
}

.biz-badge-premium {
    background: #D4AF37;
    color: #000;
    padding: 2.5px 8.5px;
    border-radius: 4px;
    font-size: 8.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: none;
    text-transform: uppercase;
}

.biz-badge-sponsored {
    background: #FF4B5C;
    color: #fff;
    padding: 2.5px 8.5px;
    border-radius: 4px;
    font-size: 8.5px;
    font-weight: 800;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.biz-badge-verified, .biz-badge-licensed {
    background: #B8860B;
    color: #000;
    padding: 2.5px 8.5px;
    border-radius: 4px;
    font-size: 8.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.biz-badge-score {
    background: #008B74;
    color: #fff;
    padding: 2.5px 8.5px;
    border-radius: 4px;
    font-size: 8.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.biz-badge-location {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

.biz-badge-initials {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.btn-favorite-biz {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-favorite-biz:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Status Pills */
.status-pill-target {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.status-pill-target.open {
    color: #fff;
    background: rgba(40, 167, 69, 0.2);
}

.status-pill-target.closed {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.status-dot.open { background: #28a745; }
.status-dot.closed { background: #dc3545; }

.rating-pill-target {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-pill-target i {
    color: #FFD700;
}

/* 3-Button Layout from Reference - Refined Size */
.biz-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}

.btn-target-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    padding: 9px 0; /* Smaller */
    border-radius: 50px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-target-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #000 !important;
}

.btn-target-compare {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--color-gold) !important;
}

.btn-target-compare:hover {
    background: var(--color-gold);
    color: #000 !important;
    border-color: var(--color-gold);
}

.btn-target-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #FDB931 100%);
    color: #000 !important;
    border: none;
    padding: 9px 0; /* Smaller */
    border-radius: 50px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elite Agent Card V3 - Premium Redesign */
.agent-card-v3 {
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: visible; /* Changed to visible for logo overlap */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.agent-card-v3:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.agent-cover-wrap {
    height: 140px;
    position: relative;
    /* NO overflow:hidden — avatar must extend below */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 40%, #2a1f00 70%, #0a0a0a 100%);
}

.agent-cover-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Badges must be above the overlay */
.agent-cover-wrap .biz-badge-stack { z-index: 2; }

.agent-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.agent-avatar-overlap {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 3.5px solid #fff;
    background: #0d0d0d;
    position: absolute;
    bottom: -47px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.agent-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.agent-company-logo-overlap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    border: 1.5px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

.agent-company-logo-overlap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.agent-verified-badge {
    color: #3897f0; /* Instagram/Verified Blue */
    font-size: 14px;
    margin-left: 5px;
}

.agent-stats-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.agent-stat-pill {
    background: #1a1a00;
    border: 1.5px solid #2a2a00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 85px;
    justify-content: center;
}

.agent-stat-pill i {
    color: #D4AF37;
    font-size: 16px;
}

.agent-details-v3 {
    padding: 55px 15px 15px; /* Avatar is -47px, so 55px gives enough gap */
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: 18px;
}

.agent-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.agent-btn-group .btn-target-outline,
.agent-btn-group .btn-target-gold {
    padding: 8px 0;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 50px !important;
    transition: all 0.3s ease;
}

.agent-btn-group .btn-target-outline {
    background: transparent;
    border: 1.5px solid #2a2a00;
    color: #D4AF37 !important;
}

.agent-btn-group .btn-target-outline:hover {
    background: #D4AF37;
    color: #000 !important;
    border-color: #D4AF37;
}

.agent-btn-group .btn-target-gold {
    background: #D4AF37;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.agent-btn-group .btn-target-gold:hover {
    background: #FDB931;
    transform: scale(1.02);
}

/* Why Choose Us Redesign Styles */
.benefit-card-v3 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card-v3:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.benefit-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.benefit-card-v3:hover .benefit-icon-box {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.feature-list-v3 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list-v3 li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.feature-list-v3 li i {
    width: 22px;
    height: 22px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #D4AF37;
}

.benefit-card-stagger {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .benefit-card-stagger {
        margin-top: 0;
    }
}

.btn-premium-gold {
    background: linear-gradient(90deg, #D4AF37, #FDB931);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-premium-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: #000;
}

.text-gradient-gold {
    background: linear-gradient(90deg, #D4AF37, #FFF, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Testimonials Redesign Styles */
.testimonials-slider-v3 {
    padding: 20px 0 60px;
}

.testimonial-card-v3 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.testimonial-card-v3:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
}

.quote-icon-v3 {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: rgba(212, 175, 55, 0.15);
}

.testimonial-text-v3 {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-avatar-v3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 2px;
}

.testimonial-avatar-v3 img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info-v3 h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.testimonial-info-v3 span {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Marketplace & Leads Redesign */
.marketplace-console-v3 {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.console-header-v3 {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-card-v3 {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.lead-card-v3:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(212, 175, 55, 0.2);
}

.lead-category-v3 {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D4AF37;
    margin-bottom: 8px;
    display: block;
}

.lead-value-v3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.metric-tile-v3 {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.live-feed-scroll::-webkit-scrollbar {
    display: none;
}
.live-feed-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Lead Widget Redesign */
.lead-widget-v3 {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.lead-input-v3 {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.lead-input-v3:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    outline: none;
}

.ai-match-visual-v3 {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.floating-cta-v3 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #D4AF37;
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.floating-cta-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: #000;
}
