/* =================================================================
   PREMIUM GLASSMORPHIC LIGHT UI THEME - JUSTLOOKON (Functionality Preserved)
   Style: Elegant Light Glassmorphism, Neon Accents, Fluid Motion
   Font: Plus Jakarta Sans
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* --- COLOR PALETTE --- */
    --bg-color: #f8fafc;
    --surface-color: rgba(255, 255, 255, 0.7); /* Translucent base for Glassmorphism */
    --primary-color: #6366f1; /* Modern Indigo */
    --primary-hover: #4f46e5;
    --accent-color: #d946ef; /* Fuchsia for glow highlight */
    
    /* Text Colors */
    --text-main: #0f172a;         /* Deep Slate */
    --text-body: #334155;         /* Medium Slate */
    --text-light: #64748b;        /* Muted Slate */
    --border-color: rgba(226, 232, 240, 0.8);
    --glass-border: rgba(255, 255, 255, 0.75);
    
    /* Shadows & Shapes */
    --shadow-sm: 0 2px 8px rgba(99, 102, 241, 0.03);
    --shadow-md: 0 8px 30px rgba(99, 102, 241, 0.06);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 10px 30px rgba(99, 102, 241, 0.18), 0 4px 15px rgba(217, 70, 239, 0.1); 

    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    background-attachment: fixed;
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { 
    color: var(--text-main); 
    font-weight: 800; 
    letter-spacing: -0.03em; 
    line-height: 1.25; 
}
a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
ul { list-style: none; }

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
    border: 2px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* --- HEADER & NAVBAR --- */
.main-header {
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    pointer-events: none;
}

.navbar {
    pointer-events: auto;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
    border-color: rgba(255, 255, 255, 0.95);
}

.logo { 
    font-size: 1.6rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px; 
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}

#loggedInState, #loggedOutState { display: flex; align-items: center; gap: 1.2rem; }

.nav-action-btn {
    background: transparent; color: var(--text-main);
    padding: 0.6rem 1.4rem; border-radius: var(--radius-full);
    font-weight: 700; font-size: 0.9rem; border: 1px solid transparent; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-action-btn:hover { 
    background-color: rgba(99, 102, 241, 0.08); 
    color: var(--primary-color); 
}

/* Primary Action Buttons - Gradient + Glow */
#signInBtn, #ctaListBusinessBtn, .submit-btn, .cta-btn, .select-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); 
    color: white !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25); 
    border: none; 
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#signInBtn:hover, #ctaListBusinessBtn:hover, .submit-btn:hover, .cta-btn:hover, .select-btn:hover {
    box-shadow: var(--shadow-glow); 
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.05);
}
#signInBtn:active, #ctaListBusinessBtn:active, .submit-btn:active, .cta-btn:active, .select-btn:active {
    transform: translateY(-1px) scale(0.99);
}

#visitor-location { 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: var(--text-light); 
    display: flex; 
    align-items: center; 
    gap: 0.6rem; 
}
#visitor-location i {
    color: var(--primary-color);
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0.2rem;
}
.menu-toggle-btn:hover {
    color: var(--primary-color);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative; 
    padding-top: 180px; 
    padding-bottom: 6rem;
    text-align: center; 
    min-height: 65vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}
.hero-content h1 { 
    font-size: 4rem; 
    margin-bottom: 1.5rem; 
    background: linear-gradient(135deg, var(--text-main) 20%, var(--primary-color) 70%, var(--accent-color) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    line-height: 1.15;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-content p { 
    font-size: 1.35rem; 
    color: var(--text-body); 
    margin-bottom: 3rem; 
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* --- SEARCH BAR (Glow + Rounded Soft glass) --- */
.search-container { 
    width: 100%; 
    margin: 0 auto; 
    max-width: 820px; 
    animation: fadeInUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.main-search-bar { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.65rem; 
    border-radius: var(--radius-full); 
    box-shadow: var(--shadow-md); 
    border: 1px solid var(--border-color); 
    display: flex; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}
.main-search-bar:focus-within { 
    transform: translateY(-2px) scale(1.015); 
    border-color: rgba(99, 102, 241, 0.5); 
    box-shadow: var(--shadow-glow); 
    background: rgba(255, 255, 255, 0.95);
}
.search-input-wrapper { 
    flex-grow: 1; 
    display: flex; 
    align-items: center; 
    gap: 1.2rem; 
    padding-left: 1.8rem; 
}
.search-input-wrapper i { 
    color: var(--primary-color); 
    font-size: 1.25rem; 
}
.main-search-bar input { 
    width: 100%; 
    border: none; 
    outline: none; 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--text-main); 
    background: transparent; 
    font-family: inherit; 
}
.main-search-bar input::placeholder {
    color: var(--text-light);
    font-weight: 500;
}
.search-btn { 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); 
    color: white; 
    border: none; 
    border-radius: var(--radius-full); 
    padding: 0.8rem 2.8rem; 
    font-weight: 700; 
    font-size: 1rem; 
    cursor: pointer; 
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.025);
    filter: brightness(1.05);
}

/* --- FILTERS --- */
.filter-bar { 
    display: flex; 
    justify-content: center; 
    gap: 1rem; 
    margin-top: 1.8rem; 
    flex-wrap: wrap; 
}
.filter-select { 
    padding: 0.7rem 1.2rem; 
    border-radius: var(--radius-md); 
    border: 1px solid var(--border-color); 
    background-color: rgba(255, 255, 255, 0.8); 
    color: var(--text-body); 
    font-family: inherit; 
    font-weight: 600; 
    cursor: pointer; 
    box-shadow: var(--shadow-sm); 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}
.filter-select:hover {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* --- PAGE LAYOUT & CARDS --- */
.page-container { 
    display: grid; 
    grid-template-columns: 260px 1fr 260px; 
    gap: 1.5rem; 
    width: 100%; 
    max-width: 100%; 
    margin: 0; 
    padding: 2rem 2.5rem; 
    align-items: start; 
}
.main-content-area { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}
.page-section { 
    padding: 2.5rem 0; 
}
.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 3.5rem; 
    font-weight: 850;
    letter-spacing: -1px;
}

/* GLASSMORPHIC CARD STYLE */
.liquid-glass, .listing-card, .ad-placeholder, .stat-card-client, .content-card, .tier-card, .step-card {
    background: var(--surface-color); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md); 
    overflow: hidden; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

/* Mouse tracking back glow */
.liquid-glass::after, .listing-card::after, .ad-placeholder::after, .stat-card-client::after, .content-card::after, .tier-card::after, .step-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(99, 102, 241, 0.07), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.liquid-glass:hover::after, .listing-card:hover::after, .ad-placeholder:hover::after, .stat-card-client:hover::after, .content-card:hover::after, .tier-card:hover::after, .step-card:hover::after {
    opacity: 1;
}

.liquid-glass::before, .listing-card::before, .ad-placeholder::before { display: none; }

.listing-card:hover, .tier-card:hover, .step-card:hover, .content-card:hover { 
    transform: translateY(-8px) scale(1.01); 
    box-shadow: var(--shadow-lg); 
    border-color: rgba(99, 102, 241, 0.45); 
    background: rgba(255, 255, 255, 0.95);
}

/* --- LISTINGS GRID --- */
.listings-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 2rem; 
}
.listing-card img { 
    height: 220px; 
    width: 100%; 
    object-fit: cover; 
    border-bottom: 1px solid var(--border-color); 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.listing-card:hover img {
    transform: scale(1.04);
}
.listing-info { 
    padding: 1.8rem; 
}
.listing-category {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}
.listing-name { 
    font-size: 1.4rem; 
    margin-bottom: 0.6rem; 
    color: var(--text-main); 
    font-weight: 800;
}
.listing-location { 
    font-size: 0.95rem; 
    color: var(--text-light); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-weight: 500;
}

/* --- CATEGORIES --- */
.ad-category-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 1.8rem; 
    margin-bottom: 4.5rem; 
}
.main-ad-card, .subcategory-ad-card { 
    background: var(--surface-color); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--glass-border); 
    overflow: hidden; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: var(--shadow-md); 
}
.main-ad-card:hover, .subcategory-ad-card:hover { 
    transform: translateY(-6px); 
    box-shadow: var(--shadow-lg); 
    border-color: rgba(99, 102, 241, 0.45); 
    background: rgba(255, 255, 255, 0.95);
}
.main-ad-image { 
    height: 220px; 
    background-size: cover; 
    background-position: center; 
}
.main-ad-content, .subcategory-ad-content { 
    padding: 1.8rem; 
}
.main-ad-content ul {
    margin-bottom: 1.2rem;
}
.main-ad-content li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-weight: 500;
}
.main-ad-content li:last-child {
    border-bottom: none;
}
.view-all-btn { 
    display: inline-block; 
    font-size: 0.85rem; 
    font-weight: 800; 
    color: var(--primary-color); 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
}

/* =================================================================
   FORMS (Modern SaaS Light Style)
   ================================================================= */
.form-container { 
    max-width: 820px; 
    margin: 0 auto; 
    padding: 3.5rem; 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg); 
    border: 1px solid var(--glass-border); 
    box-shadow: var(--shadow-lg); 
}
.form-section {
    margin-bottom: 2.5rem;
}
.form-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    border-bottom: 2px solid rgba(99, 102, 241, 0.15);
    padding-bottom: 0.6rem;
    letter-spacing: -0.5px;
}
.form-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.6rem; 
}
.form-group { 
    margin-bottom: 1.5rem; 
}
.form-group label { 
    display: block; 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: var(--text-main); 
    margin-bottom: 0.6rem; 
}
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; 
    padding: 0.85rem 1.2rem; 
    background-color: rgba(248, 250, 252, 0.7); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    font-family: inherit; 
    font-size: 1rem; 
    color: var(--text-main); 
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    background-color: #fff; 
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15); 
    outline: none; 
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%236366f1' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 2.5rem;
}
.required-star { color: #ef4444; margin-left: 3px; }
.submit-btn { 
    width: 100%; 
    padding: 1.1rem; 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-top: 1rem; 
    border-radius: 12px; 
    cursor: pointer; 
}

/* =================================================================
   AUTH MODAL (Sign Up / Sign In)
   ================================================================= */
.modal {
    display: none;
    position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(15, 23, 42, 0.35); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center; align-items: flex-start;
    overflow-y: auto;
    padding: 2rem 1rem;
}
.modal.active { display: flex; }

.modal-content {
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    width: 100%; 
    max-width: 480px;
    padding: 2.5rem 2rem; 
    border-radius: 28px; 
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border); 
    position: relative;
    margin: auto;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.close-btn { 
    position: absolute; 
    top: 1.6rem; 
    right: 1.6rem; 
    font-size: 1.6rem; 
    color: var(--text-light); 
    cursor: pointer; 
    line-height: 1; 
    transition: color 0.2s;
}
.close-btn:hover { color: #ef4444; }

/* Modern Pill Tabs */
.tab-switcher {
    display: flex; 
    background: #f1f5f9; 
    padding: 0.4rem; 
    border-radius: 50px; 
    margin-bottom: 2.5rem;
}
.tab-btn {
    flex: 1; 
    padding: 0.8rem; 
    border: none; 
    background: transparent; 
    border-radius: 50px;
    font-weight: 700; 
    color: var(--text-light); 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    text-align: center;
}
.tab-btn.active { 
    background: var(--surface-color); 
    color: var(--primary-color); 
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05); 
}

/* Auth Form Visibility */
.auth-form { display: none; flex-direction: column; gap: 1.5rem; }
.auth-form.active { display: flex; }
.auth-form h2 { 
    text-align: center; 
    margin-bottom: 0.5rem; 
    font-size: 1.85rem; 
    color: var(--text-main); 
    letter-spacing: -0.8px; 
    font-weight: 850;
}

/* Enhanced Inputs for Auth */
.input-group { position: relative; }
.input-group i { 
    position: absolute; 
    left: 1.25rem; 
    top: 50%; 
    transform: translateY(-50%); 
    color: var(--primary-color); 
    opacity: 0.9; 
    pointer-events: none; 
    font-size: 1.15rem; 
}
.input-group input {
    width: 100%; 
    padding: 1.1rem 1.1rem 1.1rem 3.4rem; 
    background-color: rgba(248, 250, 252, 0.7); 
    border: 1px solid var(--border-color); 
    border-radius: 14px;
    font-size: 1.05rem; 
    color: var(--text-main); 
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.input-group input:focus { 
    border-color: var(--primary-color); 
    background-color: #fff; 
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15); 
    outline: none; 
}
.name-fields { display: flex; gap: 1rem; }

/* --- SEARCH INTELLISENSE DROPDOWN --- */
.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 18px; 
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    padding: 0.5rem;
}

.suggestion-item {
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    color: var(--text-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: rgba(99, 102, 241, 0.06);
    color: var(--primary-color);
}

.suggestion-type {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* =================================================================
   MY ACCOUNT DASHBOARD
   ================================================================= */
.dashboard-main { max-width: 1200px; margin: 0 auto; padding: 150px 2.5rem 4rem 2.5rem; }
.dashboard-header { margin-bottom: 3.5rem; text-align: left; }
.dashboard-header h1 { font-size: 2.8rem; margin-bottom: 0.6rem; font-weight: 850; letter-spacing: -1px; }

/* Modern Stats Cards */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem; margin-bottom: 3.5rem; }
.stat-card-client {
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.8rem; 
    border-radius: 20px;
    border: 1px solid var(--glass-border); 
    box-shadow: var(--shadow-md);
    display: flex; 
    align-items: center; 
    gap: 1.5rem;
}
.stat-icon {
    width: 60px; 
    height: 60px; 
    border-radius: 16px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 1.6rem; 
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}
.stat-icon.listings { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.stat-icon.views { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.stat-icon.ads { background: linear-gradient(135deg, #10b981, #34d399); }
.stat-info p { font-size: 0.85rem; color: var(--text-light); margin: 0; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-info h2 { font-size: 2.25rem; font-weight: 800; color: var(--text-main); line-height: 1; margin-top: 0.3rem; }

/* Dashboard Tabs */
.tab-container { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px; 
    border: 1px solid var(--glass-border); 
    box-shadow: var(--shadow-md); 
    overflow: hidden; 
}
.tab-buttons { 
    display: flex; 
    background: rgba(248, 250, 252, 0.5); 
    border-bottom: 2px solid var(--border-color); 
    padding: 0 1.5rem; 
    gap: 1.5rem; 
}
.tab-buttons .tab-btn {
    flex: none; 
    padding: 1.1rem 0; 
    background: transparent !important; 
    border: none !important; 
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    font-weight: 750; 
    color: var(--text-light); 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem; 
    display: flex; 
    align-items: center; 
    gap: 0.6rem;
    box-shadow: none !important;
    margin-bottom: -2px;
}
.tab-buttons .tab-btn:hover { 
    color: var(--primary-color); 
    background: transparent !important;
}
.tab-buttons .tab-btn.active { 
    color: var(--primary-color) !important; 
    border-bottom: 2px solid var(--primary-color) !important; 
    background: transparent !important;
    box-shadow: none !important;
    z-index: 1;
}

.tab-content { padding: 2.5rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Listing Rows */
.item-list { display: flex; flex-direction: column; gap: 0; }
.list-item {
    display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0;
    border-bottom: 1px solid var(--border-color); 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.list-item:hover { 
    background: rgba(99, 102, 241, 0.03); 
    padding-left: 1.2rem; 
    padding-right: 1.2rem; 
    margin: 0 -1.2rem; 
    border-radius: 12px; 
}
.list-item:last-child { border-bottom: none; }

.item-info { display: flex; flex-direction: column; gap: 0.4rem; }
.item-info strong { font-size: 1.2rem; color: var(--text-main); font-weight: 800; }
.item-info small { color: var(--text-light); font-weight: 500; }

.item-actions { display: flex; align-items: center; gap: 0.8rem; }
.status-badge { padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.status-badge.status-active { color: #065f46; background-color: #d1fae5; }
.status-badge.status-inactive { color: #991b1b; background-color: #fee2e2; }
.status-badge.status-pending { color: #92400e; background-color: #fef3c7; }

.action-btn-client {
    width: 38px; height: 38px; border-radius: 12px; border: 1px solid var(--border-color);
    background: white; color: var(--text-body); display: flex; justify-content: center; align-items: center; cursor: pointer; transition: all 0.3s ease;
}
.action-btn-client:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.upgrade-btn {
    background: #f59e0b; color: white !important; padding: 0.6rem 1.2rem; border-radius: 10px; font-size: 0.85rem; font-weight: 750; text-decoration: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.upgrade-btn:hover { background: #d97706; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3); }

/* =================================================================
   HOW IT WORKS SECTION
   ================================================================= */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
    padding-bottom: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.45);
}

.step-number {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0 auto 2rem auto;
    box-shadow: var(--shadow-glow);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-card:hover .step-number::after {
    border-color: var(--accent-color);
    transform: scale(1.05);
    opacity: 0.6;
}

.step-card h3 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.step-card p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 500;
}

/* =================================================================
   CTA SECTION
   ================================================================= */
.cta-section {
    text-align: center;
    padding: 5rem 3rem;
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
}
.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.cta-section p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* =================================================================
   FOOTER
   ================================================================= */
.main-footer {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 2.5rem 2.5rem 2.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 7rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 1.6rem;
}

.footer-column p {
    margin-bottom: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 500;
}

.footer-column p i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-column ul li {
    margin-bottom: 0.9rem;
}

.footer-column ul li a {
    color: var(--text-body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-body);
    font-weight: 600;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links i {
    font-size: 1.15rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.visitor-counts {
    display: flex;
    gap: 1.8rem;
    font-size: 0.85rem;
}

.visitor-counts div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visitor-counts strong {
    color: var(--text-main);
    font-weight: 800;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
}

.powered-by img {
    height: 34px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.4s ease;
}

.powered-by:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1200px) { 
    .page-container { grid-template-columns: 1fr; padding: 2rem 1.5rem; } 
    .ad-sidebar { display: none; } 
    .main-content-area { padding: 0 ; } 
}
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .main-header { padding: 0.8rem 1rem; }
    .navbar { 
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: space-between; 
        padding: 0.8rem 1.2rem; 
        border-radius: 24px; 
        align-items: center;
    }
    .menu-toggle-btn {
        display: block !important;
    }
    #loggedInState, #loggedOutState, #visitor-location {
        display: none !important;
        width: 100%;
    }
    /* When navbar is open on mobile */
    .navbar.mobile-open {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar.mobile-open #visitor-location {
        display: flex !important;
        order: 2;
        padding-top: 0.8rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.8rem;
        width: 100%;
    }
    .navbar.mobile-open #loggedInState.has-token {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        order: 3;
        width: 100%;
        padding-top: 0.8rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.8rem;
    }
    .navbar.mobile-open #loggedOutState.no-token {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        order: 3;
        width: 100%;
        padding-top: 0.8rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.8rem;
    }
    .navbar.mobile-open #loggedInState.has-token .nav-action-btn,
    .navbar.mobile-open #loggedOutState.no-token .nav-action-btn {
        width: 100%;
        text-align: left;
    }
    .hero-section { padding-top: 200px; }
    .hero-content h1 { font-size: 2.8rem; }
    .main-search-bar { flex-direction: column; padding: 1rem; gap: 1rem; border-radius: 24px; }
    .search-input-wrapper { padding: 0; }
    .search-btn { width: 100%; }
    .name-fields { flex-direction: column; }
    .list-item { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .item-actions { width: 100%; justify-content: space-between; }
    .form-container { padding: 2rem; }
    .cta-section { padding: 3rem 1.5rem; }
}

/* --- SUB-CATEGORY MULTI-SELECT POPUP --- */
.sc-modal-overlay {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.35); z-index: 9999;
    justify-content: center; align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sc-modal-content {
    background: rgba(255, 255, 255, 0.95); 
    width: 95%; 
    max-width: 520px;
    border-radius: 24px; 
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    display: flex; flex-direction: column; gap: 18px;
    max-height: 85vh; 
    animation: scFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scFadeIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

.sc-modal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(226, 232, 240, 0.8); padding-bottom: 14px; }
.sc-modal-title { font-weight: 850; font-size: 1.3rem; color: var(--text-main); margin: 0; letter-spacing: -0.5px; }
.sc-close-btn { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-light); line-height: 1; transition: color 0.2s; }
.sc-close-btn:hover { color: #ef4444; }

/* Selected Items Area */
.sc-selected-area {
    background: rgba(99, 102, 241, 0.05); 
    border: 1px dashed rgba(99, 102, 241, 0.3); 
    border-radius: 14px;
    padding: 14px; 
    min-height: 64px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px;
    align-content: flex-start;
}

/* Tag Pill Style */
.sc-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); 
    color: white; 
    padding: 6px 14px; 
    border-radius: 50px;
    font-size: 0.85rem; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 8px;
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}
.sc-tag:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); filter: brightness(1.05); }
.sc-tag i { font-size: 0.8rem; opacity: 0.9; }

/* Available List Area */
.sc-available-list {
    border: 1px solid var(--border-color); 
    border-radius: 14px; 
    overflow-y: auto; 
    flex-grow: 1;
    padding: 0.5rem; 
    margin: 0; 
    list-style: none; 
    max-height: 320px;
    background: rgba(255, 255, 255, 0.4);
}
.sc-list-item {
    padding: 12px 18px; 
    border-bottom: 1px solid rgba(226, 232, 240, 0.4); 
    cursor: pointer;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 0.95rem; 
    color: var(--text-body); 
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
}
.sc-list-item:hover { background-color: rgba(99, 102, 241, 0.05); color: var(--primary-color); }
.sc-list-item:last-child { border-bottom: none; }
.sc-list-item.sc-is-active { background-color: rgba(226, 232, 240, 0.3); color: var(--text-light); pointer-events: none; }

/* Main Form Trigger Box */
.sc-trigger-box {
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    padding: 10px 16px; 
    min-height: 52px;
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    cursor: pointer; 
    background: rgba(248, 250, 252, 0.7);
    align-items: center; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-trigger-box:hover { border-color: var(--primary-color); background: #fff; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05); }
.sc-trigger-tag {
    background: rgba(99, 102, 241, 0.1); 
    color: var(--primary-color); 
    padding: 4px 12px; 
    border-radius: 8px; 
    font-size: 0.85rem; 
    font-weight: 700;
}

/* =================================================================
   GLASSMORPHIC PAGE CARD STYLING FOR REMAINING PAGES
   ================================================================= */
.about-container, .contact-container, .content-container, .services-container, .details-container {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 3.5rem 2.8rem !important;
    margin: 140px auto 4rem auto !important;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-container, .content-container, .details-container {
    max-width: 900px !important;
}
.contact-container {
    max-width: 1100px !important;
}
.services-container {
    max-width: 1000px !important;
}

.about-container h2, .contact-container h2, .content-container h2, .services-container h2, .details-container h2, .service-section h2 {
    font-size: 1.8rem !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.2rem !important;
    padding-bottom: 0.6rem !important;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2) !important;
    color: var(--primary-color) !important;
    font-weight: 850 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.about-container ul, .content-container ul, .services-container ul {
    margin-bottom: 1.5rem !important;
}
.about-container li, .content-container li, .services-container li {
    margin-bottom: 0.8rem !important;
    font-size: 1.05rem !important;
    color: var(--text-body) !important;
}

.contact-grid {
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    backdrop-filter: blur(10px) !important;
}
.map-section {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    color: var(--text-main) !important;
    font-weight: 700 !important;
    backdrop-filter: blur(10px) !important;
}

.service-section, .contact-section, .cta-section {
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    backdrop-filter: blur(10px) !important;
}

.steps-list li::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.25) !important;
}

.highlight-box {
    background-color: rgba(99, 102, 241, 0.05) !important;
    border-left: 5px solid var(--primary-color) !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    color: var(--text-body) !important;
}

.rating-steps li .step-icon {
    color: var(--primary-color) !important;
}

.tier-grid {
    padding: 1rem !important;
}
.tier-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 2.5rem 2rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.tier-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: var(--shadow-glow) !important;
    border-color: var(--primary-color) !important;
}
.tier-card h2 {
    color: var(--primary-color) !important;
    font-weight: 850 !important;
    margin-bottom: 0.5rem !important;
}
.tier-card .price {
    font-size: 2.4rem !important;
    font-weight: 850 !important;
    color: var(--text-main) !important;
}
.tier-card .price span {
    color: var(--text-light) !important;
    font-weight: 500 !important;
}
.tier-card li i {
    color: #10b981 !important;
}

.payment-box {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-container button, .contact-container button, .content-container button, .services-container button, .details-container button {
    color: var(--text-main) !important;
    transition: all 0.3s ease !important;
}
.about-container button:hover, .contact-container button:hover, .content-container button:hover, .services-container button:hover, .details-container button:hover {
    color: var(--primary-color) !important;
    transform: translateX(-4px) !important;
}

/* --- MY ACCOUNT SETTINGS CARDS & GRIDS (ENFORCED PADDING) --- */
.content-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 1.5rem !important;
}
.content-card {
    padding: 2.2rem 2.5rem !important;
}

/* =================================================================
   VERTICAL CENTERING & 5-COLUMN PRICING GRID FOR DESKTOP VIEWPORTS
   ================================================================= */
@media (min-width: 1025px) {
    /* Vertical viewport centering */
    .page-section-pricing {
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding-top: 80px !important;
        padding-bottom: 2rem !important;
    }
    
    .page-section-pricing .section-title {
        margin-bottom: 1.5rem !important;
        font-size: 2.2rem !important;
    }
    
    /* 5-Column Pricing Grid */
    .five-plans {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 0.75rem !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }
    
    /* Compact Pricing Card styling */
    .five-plans .tier-card {
        padding: 1.25rem 0.85rem !important;
        border-radius: 16px !important;
        min-height: 380px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .five-plans .tier-card h2 {
        font-size: 1.15rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .five-plans .tier-card .price {
        font-size: 1.6rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .five-plans .tier-card .price span {
        font-size: 0.75rem !important;
    }
    
    .five-plans .tier-card ul {
        margin-bottom: 0.8rem !important;
        padding-left: 0 !important;
    }
    
    .five-plans .tier-card li {
        font-size: 0.78rem !important;
        margin-bottom: 0.35rem !important;
        line-height: 1.35 !important;
    }
    
    .five-plans .tier-card li i {
        font-size: 0.75rem !important;
        margin-right: 0.25rem !important;
    }
    
    .five-plans .tier-card .select-btn {
        padding: 0.55rem !important;
        font-size: 0.82rem !important;
        border-radius: 8px !important;
        margin-top: auto !important;
    }
}

/* =================================================================
   RESPONSIVE MY ACCOUNT DASHBOARD UPDATES
   ================================================================= */
@media (max-width: 768px) {
    .tab-buttons {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        scrollbar-width: none !important; /* Firefox */
        padding-bottom: 2px !important;
    }
    .tab-buttons::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari/Edge */
    }
    .tab-buttons .tab-btn {
        flex: none !important;
        padding: 0.8rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    .tab-content {
        padding: 1.2rem !important;
    }
    .list-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.2rem !important;
        padding: 1.2rem 0 !important;
    }
    .item-info {
        width: 100% !important;
    }
    .item-info img {
        max-width: 100% !important;
        height: auto !important;
    }
    .item-actions {
        width: 100% !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 0.6rem !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* --- STEPPER PROGRESS WIZARD --- */
.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    padding: 0 1rem;
    width: 100%;
}
.stepper-progress-bar {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 4px;
    background: var(--border-color);
    width: 80%;
    z-index: 1;
}
.stepper-progress-line {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
.step-item {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}
.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid var(--border-color);
    color: var(--text-light);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    font-size: 0.95rem;
}
.step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.4s ease;
    text-align: center;
}
.step-item.active .step-indicator {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}
.step-item.active .step-label {
    color: var(--primary-color);
}
.step-item.completed .step-indicator {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}
.step-item.completed .step-label {
    color: var(--text-main);
}

/* Wizard Steps display states */
.form-step {
    display: none;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.form-step.active {
    display: block;
}

/* Navigation button container */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}
.step-nav-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-weight: 750;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}
.step-nav-btn.prev {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-main);
}
.step-nav-btn.prev:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.step-nav-btn.next {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.step-nav-btn.next:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .step-label {
        font-size: 0.75rem;
    }
    .step-indicator {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .stepper-progress-bar, .stepper-progress-line {
        top: 16px;
    }
}

/* --- PREMIUM GLOWING EMPTY STATES --- */
.empty-state-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1.5rem;
    text-align: center;
    width: 100%;
    animation: fadeInUp 0.5s ease both;
}
.empty-state-svg {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(99, 102, 241, 0.15));
}
.empty-state-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}
.empty-state-text {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 380px;
    margin: 0 auto;
}

/* =================================================================
   LISTING DETAILS PAGE — SINGLE-SCROLL PREMIUM LAYOUT
   ================================================================= */

/* --- HERO SECTION --- */
.ld-hero {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
    overflow: hidden;
}
.ld-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
.ld-hero-logo {
    width: 110px;
    height: 110px;
    min-width: 110px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12);
}
.ld-hero-info {
    flex: 1;
    min-width: 0;
}
.ld-badges {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.ld-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.ld-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.ld-tier-badge.tier-free {
    background: rgba(100, 116, 139, 0.08);
    color: #64748b;
}
.ld-tier-badge.tier-verified {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
}
.ld-tier-badge.tier-premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 70, 239, 0.08));
    color: #d97706;
}
.ld-hero-name {
    font-size: 2rem;
    font-weight: 850;
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.ld-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}
.ld-hero-meta .ld-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--text-main);
}
.ld-hero-meta .ld-rating-summary .stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.ld-hero-meta .ld-rating-summary .count {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.85rem;
}
.ld-hero-meta .ld-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-color);
}
.ld-hero-meta .ld-year-est {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.ld-hero-meta .ld-year-est i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* --- QUICK ACTIONS BAR --- */
.ld-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 1.2rem 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.ld-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    font-family: inherit;
    border: 1.5px solid;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.ld-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.ld-action-btn.act-call {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.2);
}
.ld-action-btn.act-call:hover {
    background: rgba(37, 99, 235, 0.06);
    border-color: #2563eb;
}
.ld-action-btn.act-whatsapp {
    color: #16a34a;
    border-color: rgba(22, 163, 74, 0.2);
}
.ld-action-btn.act-whatsapp:hover {
    background: rgba(22, 163, 74, 0.06);
    border-color: #16a34a;
}
.ld-action-btn.act-website {
    color: var(--primary-color);
    border-color: rgba(99, 102, 241, 0.2);
}
.ld-action-btn.act-website:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: var(--primary-color);
}
.ld-action-btn.act-email {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.2);
}
.ld-action-btn.act-email:hover {
    background: rgba(220, 38, 38, 0.06);
    border-color: #dc2626;
}
.ld-action-btn.act-directions {
    color: #ea580c;
    border-color: rgba(234, 88, 12, 0.2);
}
.ld-action-btn.act-directions:hover {
    background: rgba(234, 88, 12, 0.06);
    border-color: #ea580c;
}
.ld-action-btn i {
    font-size: 1rem;
}

/* --- SECTION CARDS (About, Contact, Reviews) --- */
.ld-section {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.2rem 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ld-section:nth-child(3) { animation-delay: 0.15s; }
.ld-section:nth-child(4) { animation-delay: 0.25s; }
.ld-section:nth-child(5) { animation-delay: 0.35s; }

.ld-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.ld-section-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 10px;
}

/* --- ABOUT SECTION --- */
.ld-description {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
}
.ld-description.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ld-description.expanded {
    -webkit-line-clamp: unset;
}
.ld-read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    font-family: inherit;
    transition: color 0.2s;
}
.ld-read-more-btn:hover {
    color: var(--primary-hover);
}

/* --- CONTACT GRID --- */
.ld-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ld-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}
.ld-contact-item:hover {
    background: rgba(248, 250, 252, 0.9);
    border-color: rgba(99, 102, 241, 0.15);
}
.ld-contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.95rem;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
}
.ld-contact-icon.icon-phone { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.ld-contact-icon.icon-whatsapp { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.ld-contact-icon.icon-email { background: rgba(220, 38, 38, 0.08); color: #dc2626; }
.ld-contact-icon.icon-address { background: rgba(234, 88, 12, 0.08); color: #ea580c; }
.ld-contact-icon.icon-building { background: rgba(99, 102, 241, 0.08); color: var(--primary-color); }
.ld-contact-icon.icon-landmark { background: rgba(16, 185, 129, 0.08); color: #059669; }
.ld-contact-icon.icon-landline { background: rgba(107, 114, 128, 0.08); color: #6b7280; }
.ld-contact-icon.icon-tollfree { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }
.ld-contact-icon.icon-website { background: rgba(99, 102, 241, 0.08); color: var(--primary-color); }

.ld-contact-text {
    flex: 1;
    min-width: 0;
}
.ld-contact-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}
.ld-contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    word-break: break-word;
}
.ld-contact-value a {
    color: var(--primary-color);
    font-weight: 700;
}
.ld-contact-value a:hover {
    text-decoration: underline;
}

/* --- REVIEWS SECTION --- */
.ld-reviews-header {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.ld-rating-big {
    text-align: center;
    min-width: 100px;
}
.ld-rating-big .number {
    font-size: 3.2rem;
    font-weight: 850;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.04em;
}
.ld-rating-big .stars {
    color: #fbbf24;
    font-size: 1.05rem;
    margin: 0.35rem 0;
    letter-spacing: 2px;
}
.ld-rating-big .total {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Rating Distribution Bars */
.ld-rating-dist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.ld-dist-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.ld-dist-row .label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
    min-width: 20px;
    text-align: right;
}
.ld-dist-row .bar-track {
    flex: 1;
    height: 8px;
    background: rgba(226, 232, 240, 0.5);
    border-radius: var(--radius-full);
    overflow: hidden;
}
.ld-dist-row .bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ld-dist-row .count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 18px;
}

/* Individual Review Cards */
.ld-review-card {
    display: flex;
    gap: 1rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}
.ld-review-card:last-child {
    border-bottom: none;
}
.ld-review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-transform: uppercase;
    flex-shrink: 0;
}
.ld-review-body {
    flex: 1;
    min-width: 0;
}
.ld-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.ld-review-username {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}
.ld-review-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}
.ld-review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}
.ld-review-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
}
.ld-owner-response {
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
    background: rgba(99, 102, 241, 0.04);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
}
.ld-owner-response-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.82rem;
    margin-bottom: 0.25rem;
}
.ld-owner-response p {
    margin: 0;
    color: var(--text-body);
    line-height: 1.6;
}

/* Review Form Card */
.ld-review-form-card {
    margin-top: 1.5rem;
    padding: 1.8rem 2rem;
    background: rgba(248, 250, 252, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: var(--radius-md);
}
.ld-review-form-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.ld-review-form-card .star-rating-input {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    cursor: pointer;
}
.ld-review-form-card .star-rating-input .rating-star {
    color: #fbbf24;
    transition: transform 0.2s;
}
.ld-review-form-card .star-rating-input .rating-star:hover {
    transform: scale(1.2);
}
.ld-review-form-card textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    resize: vertical;
    min-height: 90px;
    transition: all 0.3s ease;
}
.ld-review-form-card textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: #fff;
}
.ld-review-form-card .submit-btn {
    margin-top: 1rem;
}

/* Back Button */
.ld-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.4rem 0;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}
.ld-back-btn:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

/* Login prompt for reviews */
.ld-login-prompt {
    text-align: center;
    padding: 2rem;
    background: rgba(248, 250, 252, 0.7);
    border: 1.5px dashed rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}
.ld-login-prompt p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
    .ld-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .ld-hero-logo {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }
    .ld-badges {
        justify-content: center;
    }
    .ld-hero-name {
        font-size: 1.6rem;
    }
    .ld-hero-meta {
        justify-content: center;
        font-size: 0.85rem;
    }
    .ld-actions {
        justify-content: center;
    }
    .ld-action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }
    .ld-action-btn span {
        display: none;
    }
    .ld-section {
        padding: 1.5rem 1.2rem;
    }
    .ld-contact-grid {
        grid-template-columns: 1fr;
    }
    .ld-reviews-header {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .ld-rating-big {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .ld-rating-big .number {
        font-size: 2.5rem;
    }
    .ld-review-form-card {
        padding: 1.2rem;
    }
}