/* ============================================================
   Firma Rehberi v4 Premium — Modern Business Directory Script
   Theme: Deep Navy + Gold  (Premium Glassmorphism)
   Version: 2.0
   Made by: SNRSOFT — snrsoft.com.tr
   ============================================================ */

:root {
    --gold: #c9a227;
    --gold-dark: #a8841e;
    --gold-light: #e8c04a;
    --gold-xlight: rgba(201, 162, 39, 0.12);
    --gold-glow: rgba(201, 162, 39, 0.25);

    --bg-deep: #060a13;
    --bg-body: #0a0e1a;
    --bg-card: rgba(15, 22, 40, 0.65);
    --bg-card2: rgba(20, 28, 53, 0.8);
    --bg-card-hover: rgba(22, 31, 58, 0.9);
    --bg-elevated: rgba(26, 39, 68, 0.9);
    --bg-input: rgba(10, 14, 26, 0.9);

    --text-white: #ffffff;
    --text-primary: #e4ecf7;
    --text-secondary: #9fb3d4;
    --text-muted: #5e7499;
    --text-gold: #c9a227;

    --border: rgba(201, 162, 39, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-card: rgba(255, 255, 255, 0.06);
    --border-card-hover: rgba(201, 162, 39, 0.35);

    --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.25);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.65);
    --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.3);

    --r-xs: 4px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 9999px;

    --t: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --t-fast: all 0.18s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.py-5 {
    padding: 3rem 0;
}

/* ================================================================
   TICKER BAR
   ================================================================ */
.ticker-bar {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: #000;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 1.5rem 0 1rem;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.ticker-track {
    display: inline-block;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
    padding-left: 100%;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0 2.5rem;
    border-right: 1px solid var(--border-subtle);
}

.ticker-item i {
    color: var(--gold);
    font-size: 0.7rem;
}

.ticker-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-xlight);
    border-left: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0 1.4rem;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--t);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-cta:hover {
    background: var(--gold);
    color: #000;
}

.ticker-cta i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.ticker-cta:hover i {
    transform: translateX(4px);
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
    background: rgba(6, 10, 19, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* ================================================================
   LOGO
   ================================================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    flex: 1;
    justify-content: flex-start;
}

.logo-fallback {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
    transition: var(--t);
}

.logo:hover .logo-fallback {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.45);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-brand span {
    color: var(--gold);
}

.logo-tagline {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 6rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--r-sm);
    transition: var(--t);
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: var(--r-full);
    transition: var(--t);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    padding: 0.4rem;
}

/* ================================================================
   NOTIFICATION BELL DROPDOWN
   ================================================================ */
.header-notif-wrap {
    position: relative;
}

.header-notif-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    position: relative;
}

.header-notif-btn:hover {
    background: var(--gold-xlight);
    color: var(--gold);
    border-color: var(--border);
}

.notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid var(--bg-body);
    animation: pulse-gold 2s infinite;
}

.header-notif-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 320px;
    background: rgba(10, 15, 28, 0.97);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--t);
    z-index: 1200;
    overflow: hidden;
}

.header-notif-wrap.open .header-notif-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.notif-dropdown-header i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--t-fast);
    cursor: pointer;
}

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

.notif-item:hover {
    background: rgba(201, 162, 39, 0.05);
}

.notif-icon {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 20px;
    text-align: center;
}

.notif-content p {
    font-size: 0.82rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.notif-content small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.notif-empty {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--text-muted);
}

.notif-empty i {
    font-size: 1.8rem;
    color: #4ade80;
    margin-bottom: 0.5rem;
    display: block;
}

.notif-empty p {
    font-size: 0.82rem;
}

/* ================================================================
   USER AVATAR DROPDOWN
   ================================================================ */
.user-menu-wrap {
    position: relative;
}

.user-avatar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.4);
    overflow: hidden;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-xlight);
}

.user-avatar-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.user-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar-initials {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.user-msg-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-body);
    animation: dot-pulse 1.5s infinite;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 260px;
    background: rgba(10, 15, 28, 0.97);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--t);
    z-index: 1200;
    overflow: hidden;
}

.user-menu-wrap.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--gold-xlight);
}

.user-dropdown-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}

.user-dropdown-email {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.user-plan-badge {
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.user-plan-badge i {
    font-size: 0.65rem;
}

.user-dropdown-menu {
    padding: 0.5rem;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
    cursor: pointer;
    position: relative;
}

.user-menu-item i {
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    transition: var(--t-fast);
}

.user-menu-item:hover {
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold);
}

.user-menu-item:hover i {
    color: var(--gold);
}

.user-menu-logout {
    color: #f87171 !important;
}

.user-menu-logout i {
    color: #f87171 !important;
}

.user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.08) !important;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 0.35rem 0;
}

.menu-badge {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.1rem 0.45rem;
    border-radius: var(--r-full);
    min-width: 18px;
    text-align: center;
}

/* ================================================================
   MEMBER AREA — Shared Layout
   ================================================================ */
.member-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    min-height: 60vh;
}

.member-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

.member-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
    position: relative;
}

.member-nav-item i {
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.member-nav-item:hover {
    background: var(--gold-xlight);
    color: var(--gold);
}

.member-nav-item:hover i {
    color: var(--gold);
}

.member-nav-item.active {
    background: var(--gold-xlight);
    color: var(--gold);
    font-weight: 600;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.member-nav-item.active i {
    color: var(--gold);
}

.member-nav-badge {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.1rem 0.45rem;
    border-radius: var(--r-full);
}

.member-nav-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 0.5rem 0;
}

.member-main {
    min-width: 0;
}

.member-page-header {
    margin-bottom: 2rem;
}

.member-page-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.member-page-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .member-layout {
        grid-template-columns: 1fr;
    }

    .member-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .member-sidebar-card {
        width: 100%;
    }
}

/* ================================================================
   PLAN BADGES
   ================================================================ */
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-badge.free {
    background: rgba(159, 179, 212, 0.12);
    color: #9fb3d4;
    border: 1px solid rgba(159, 179, 212, 0.25);
}

.plan-badge.pro {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.plan-badge.business {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

/* ================================================================
   FAVORITE BUTTON
   ================================================================ */
.fav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--r-sm);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
}

.fav-btn:hover,
.fav-btn.active {
    background: rgba(239, 68, 68, 0.2);
    border-color: #f87171;
}

.fav-btn i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fav-btn.active i {
    transform: scale(1.3);
    color: #ef4444;
}

@keyframes heartPop {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    100% {
        transform: scale(1)
    }
}

.fav-btn.popping i {
    animation: heartPop 0.4s ease;
}


/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--t);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: #000;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.45);
    filter: brightness(1.08);
}

.btn-outline {
    background: rgba(201, 162, 39, 0.06);
    color: var(--gold);
    border-color: rgba(201, 162, 39, 0.45);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-card);
}

.btn-ghost:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.btn-search {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    padding: 0 2.2rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-gold);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.45);
    filter: brightness(1.08);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

/* ================================================================
   LANGUAGE SWITCHER
   ================================================================ */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.85rem;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    transition: var(--t);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
}

.lang-current:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    border-color: var(--border);
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    background: rgba(10, 15, 28, 0.97);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--r-md);
    padding: 0.5rem;
    min-width: 155px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--t);
    z-index: 1100;
    backdrop-filter: blur(20px);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--r-sm);
    font-size: 0.875rem;
    transition: var(--t-fast);
}

.lang-option:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.lang-option.active {
    color: var(--gold);
    font-weight: 600;
}

.lang-native {
    flex: 1;
}

.lang-check {
    color: var(--gold);
    font-size: 0.75rem;
}

.lang-flag-wrap {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.flag-icon {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.flag-en {
    background-image: url('../images/flags/en.png');
}

.flag-tr {
    background-image: url('../images/flags/tr.png');
}

.flag-hu {
    background-image: url('../images/flags/hu.png');
}

.lang-code {
    font-weight: 600;
    font-size: 0.8rem;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    padding: 7rem 0 5rem;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6, 10, 19, 0.82) 0%, rgba(10, 14, 26, 0.92) 100%),
        url('../images/hero_bg.png') no-repeat center center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(201, 162, 39, 0.07);
    top: -150px;
    right: -100px;
}

.hero-bg-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.06);
    bottom: -100px;
    left: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    /* Lock the content area height so the hero section never jumps */
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--r-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    font-size: 0.72rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    /* Prevent layout shift: reserve space for 2 lines at max font size */
    min-height: 2.5em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   SEARCH FORM (GLASSMORPHISM)
   ================================================================ */
.search-form {
    background: rgba(10, 15, 28, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.15);
    padding: 0.6rem;
    border-radius: var(--r-xl);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.search-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input-group,
.search-select-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r-lg);
    padding: 0 1.25rem;
    border: 1px solid transparent;
    transition: var(--t);
    height: 58px;
}

.search-input-group:focus-within,
.search-select-group:focus-within {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.search-input-group i,
.search-select-group i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-input,
.search-select {
    flex: 1;
    background: transparent;
    color: var(--text-white);
    font-size: 0.95rem;
    height: 100%;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-select option {
    background: var(--bg-deep);
    color: var(--text-white);
}

/* ================================================================
   HERO STATS
   ================================================================ */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 2.5rem;
}

.hero-stat {
    text-align: center;
    padding: 0 3rem;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border-subtle);
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ================================================================
   CATEGORIES SECTION
   ================================================================ */
.categories {
    padding: 6rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 2.25rem 1.5rem 2rem;
    text-align: center;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--t);
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-card-hover);
    box-shadow: var(--shadow-md);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 68px;
    height: 68px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    transition: var(--t);
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #000;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--t);
}

.category-card:hover .category-name {
    color: var(--gold);
}

.category-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.2rem 0.7rem;
    border-radius: var(--r-full);
}

/* ================================================================
   FEATURED LISTINGS
   ================================================================ */
.featured-section {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(201, 162, 39, 0.04) 0%, transparent 60%),
        #060a13;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.75rem;
}

/* LISTING CARD */
.listing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.25);
}

.listing-card-image {
    height: 220px;
    background: linear-gradient(135deg, #0f1628, #141c35);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.listing-card:hover .listing-card-image img {
    transform: scale(1.06);
}

.listing-card-image i {
    font-size: 4rem;
    color: rgba(201, 162, 39, 0.3);
    transition: var(--t);
}

.listing-card:hover .listing-card-image i {
    color: rgba(201, 162, 39, 0.55);
    transform: scale(1.1);
}

/* BADGES */
.listing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 0.35rem 0.8rem;
    border-radius: var(--r-sm);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.badge-featured {
    background: rgba(201, 162, 39, 0.92);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.badge-new {
    background: rgba(37, 99, 235, 0.92);
    color: #fff;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.92);
    color: #fff;
}

.badge-popular {
    background: rgba(239, 68, 68, 0.92);
    color: #fff;
}

.listing-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.listing-card-category {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.listing-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--t);
}

.listing-card:hover .listing-card-title {
    color: var(--gold);
}

.verified-icon {
    color: #10b981;
    font-size: 0.95rem;
}

.listing-card-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listing-card-location i {
    color: var(--gold);
    font-size: 0.8rem;
}

.listing-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.listing-card-rating {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.listing-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.listing-card-actions .btn {
    flex: 1;
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
}

/* ================================================================
   STATS GOLD SECTION
   ================================================================ */
.stats {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #a8841e 0%, #c9a227 40%, #e8c04a 70%, #c9a227 100%);
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 2.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(26, 39, 68, 0.9) 0%, transparent 70%),
        var(--bg-body);
    text-align: center;
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--r-xl);
    padding: 4rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-title span {
    color: var(--gold);
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background:
        linear-gradient(180deg, #060a13 0%, #04070f 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.12);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

/* Footer Ad */
.ad-footer-wrap {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.ad-footer-banner .ad-placeholder {
    max-height: 100px;
}

/* Footer Main */
.footer-main {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-subtle);
}



.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.footer-logo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-logo-name span {
    color: var(--gold);
}

.footer-logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--t);
}

.footer-social a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}



.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col-title i {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--t);
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    opacity: 0;
    transition: var(--t);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--text-secondary);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* Footer Newsletter */
.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    border-radius: var(--r-sm);
    padding: 0.65rem 1rem;
    color: var(--text-white);
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--t);
}

.footer-newsletter-input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter-input:focus {
    border-color: var(--gold);
    outline: none;
}

.footer-newsletter-btn {
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: var(--r-sm);
    padding: 0.65rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.footer-newsletter-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-left a {
    color: var(--gold);
    font-weight: 600;
}

.footer-bottom-left a:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--t);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-snrsoft {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--r-full);
    padding: 0.3rem 0.9rem 0.3rem 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: var(--t);
}

.footer-snrsoft:hover {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    border-color: var(--gold);
}

.footer-snrsoft i {
    color: #ef4444;
}

.footer-snrsoft span {
    font-weight: 700;
    color: var(--gold);
}

/* ================================================================
   PAGE HERO (Inner pages)
   ================================================================ */
.page-hero {
    padding: 4.5rem 0;
    background:
        linear-gradient(180deg, rgba(6, 10, 19, 0.78) 0%, rgba(10, 14, 26, 0.92) 100%),
        url('../images/hero_bg.png') no-repeat center center/cover;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* ================================================================
   SIDEBAR LAYOUT
   ================================================================ */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 2.5rem;
    margin: 3rem 0 4rem;
}



.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.sidebar-widget-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget-title i {
    color: var(--gold);
}

/* ================================================================
   AD PLACEHOLDERS
   ================================================================ */
.ad-billboard-wrap {
    padding: 2rem 0;
}

.ad-placeholder {
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    text-align: center;
    padding: 2.5rem;
    position: relative;
    transition: var(--t);
}

.ad-placeholder:hover {
    border-color: rgba(201, 162, 39, 0.2);
}

.ad-label {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-size {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ad-cta {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #000;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--t);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-content .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .search-inputs {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input-group,
    .search-select-group {
        border-radius: var(--r-md);
    }
    
    .search-form {
        border-radius: var(--r-lg);
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 16px;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        background: rgba(6, 10, 19, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .nav.active {
        display: flex !important;
    }

    .nav-link {
        margin-bottom: 0.5rem;
        text-align: center;
        padding: 0.8rem;
    }

    .nav-link::after {
        display: none;
    }

    .logo-tagline {
        display: none;
    }

    .logo-brand {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 1rem;
    }

    .header-right .btn {
        display: none;
    }

    .header-right .lang-switcher {
        display: flex;
    }

    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .hero-stat {
        width: 42%;
        padding: 0 1rem;
    }

    .hero-stat::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: 580px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-stat {
        width: 100%;
    }
}

/* ================================================================
   PRICING PAGE STYLES
   ================================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 3rem 2.2rem;
    text-align: center;
    position: relative;
    transition: var(--t);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    background: rgba(20, 30, 55, 0.85);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 1.25rem;
    border-radius: var(--r-full);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price sup {
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    top: -0.8rem;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}

.pricing-features {
    width: 100%;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.85rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* ================================================================
   BLOG CARD STYLES
   ================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--t);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-card-hover);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(20, 28, 53, 0.7) 0%, rgba(6, 10, 19, 0.9) 100%);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: var(--t);
    position: relative;
}

.blog-card:hover .blog-card-image {
    filter: brightness(1.1);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-meta i {
    color: var(--gold);
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--t);
}

.blog-card:hover .blog-card-title {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.blog-tag {
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.65rem;
    border-radius: var(--r-xs);
}

.read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--t-fast);
}

.read-more:hover {
    color: var(--gold-light);
}

.read-more i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* ================================================================
   CONTACT PAGE STYLES
   ================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    margin: 3rem 0 4rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-value a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

/* ================================================================
   FORM CONTROLS
   ================================================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
    width: 100%;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control,
.form-input {
    width: 100%;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    padding: 0.8rem 1rem;
    color: var(--text-white);
    font-size: 0.92rem;
    transition: var(--t);
    font-family: inherit;
}

.form-control:focus,
.form-input:focus {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.03);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.06);
}

.form-control::placeholder,
.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}

/* ================================================================
   AUTHENTICATION PAGES
   ================================================================ */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
    background:
        linear-gradient(135deg, rgba(6, 10, 19, 0.92) 0%, rgba(10, 14, 26, 0.96) 100%),
        url('../images/hero_bg.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.auth-container::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(15, 22, 40, 0.72);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.auth-logo i {
    font-size: 2.2rem;
    color: var(--gold);
}

.auth-logo .brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.auth-logo .brand-text span {
    color: var(--gold);
}

.auth-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.35rem;
}

.auth-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.auth-form .form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    font-size: 0.82rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    border-radius: 4px;
}

.link {
    color: var(--gold);
    font-weight: 600;
    transition: var(--t-fast);
}

.link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 0.98rem;
}

.auth-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

.auth-footer p {
    margin-bottom: 0.5rem;
}

.auth-demo {
    margin-top: 1.75rem;
    padding: 0.9rem 1.1rem;
    background: rgba(201, 162, 39, 0.06);
    border: 1px dashed rgba(201, 162, 39, 0.2);
    border-radius: var(--r-sm);
    text-align: center;
    font-size: 0.78rem;
}

.demo-title {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-info {
    color: var(--text-secondary);
}

/* ================================================================
   HOW IT WORKS PAGE STYLES
   ================================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
    margin: 3.5rem 0 5rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--t);
    backdrop-filter: blur(10px);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #000;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.85rem;
}

.step-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 2.2rem 1.8rem;
    transition: var(--t);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(201, 162, 39, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.65rem;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ================================================================
   PREMIUM ANIMATIONS & KEYFRAMES
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(201, 162, 39, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-reveal base state */
.anim-hidden {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.anim-hidden.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-left {
    transform: translateX(-35px) !important;
}

.anim-right {
    transform: translateX(35px) !important;
}

.anim-scale {
    transform: scale(0.88) !important;
}

.anim-left.anim-visible,
.anim-right.anim-visible {
    transform: translateX(0) !important;
}

.anim-scale.anim-visible {
    transform: scale(1) !important;
}

.anim-delay-1 {
    transition-delay: 0.1s !important;
}

.anim-delay-2 {
    transition-delay: 0.2s !important;
}

.anim-delay-3 {
    transition-delay: 0.3s !important;
}

.anim-delay-4 {
    transition-delay: 0.4s !important;
}

.anim-delay-5 {
    transition-delay: 0.5s !important;
}

/* ================================================================
   GOLD BUTTON
   ================================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a0e1a;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: var(--t);
    animation: pulse-gold 2s infinite;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    animation: none;
}

/* ================================================================
   NAV ADD LISTING SPECIAL LINK
   ================================================================ */
.nav-link-add {
    color: var(--gold) !important;
    font-weight: 600 !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link-add i {
    font-size: 0.9em;
}

.nav-add-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -8px;
    animation: dot-pulse 1.5s infinite;
}

/* ================================================================
   HERO PARTICLES CANVAS
   ================================================================ */
#heroParticles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ================================================================
   COUNTER ANIMATION
   ================================================================ */
.counter-val {
    display: inline-block;
    animation: count-up 0.6s ease both;
}

/* ================================================================
   LISTING DETAIL PAGE
   ================================================================ */
.detail-hero {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #0d1428 100%);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.detail-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.detail-logo-wrap {
    width: 120px;
    height: 120px;
    min-width: 120px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gold);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.detail-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-meta {
    flex: 1;
}

.detail-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-xlight);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-full);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.detail-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.detail-location i {
    color: var(--gold);
}

.detail-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.detail-badge {
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.detail-badge.featured {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.detail-badge.approved {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.detail-badge.views {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.detail-actions .btn {
    padding: 0.6rem 1.4rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    padding: 2.5rem 0;
}

.detail-main {
    min-width: 0;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
    transition: var(--t);
}

.detail-card:hover {
    border-color: var(--border-card-hover);
}

.detail-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
}

.detail-card-title i {
    color: var(--gold);
}

.detail-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.detail-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.detail-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    transition: var(--t);
}

.detail-contact-item:hover {
    border-color: var(--border);
    background: var(--bg-elevated);
}

.detail-contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--gold-xlight);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.detail-contact-content {
    flex: 1;
    min-width: 0;
}

.detail-contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.detail-contact-value {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-all;
}

.detail-contact-value a {
    color: var(--gold);
}

.detail-contact-value a:hover {
    text-decoration: underline;
}

.detail-map-placeholder {
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.detail-map-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
}

.detail-share-btns {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--t);
    border: 1px solid transparent;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.25);
}

.share-btn.twitter {
    background: rgba(29, 161, 242, 0.12);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.25);
}

.share-btn.facebook {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.25);
}

.share-btn.copy {
    background: var(--gold-xlight);
    color: var(--gold);
    border-color: rgba(201, 162, 39, 0.25);
}

.similar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.similar-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    transition: var(--t);
}

.similar-item:hover {
    border-color: var(--border);
    background: var(--bg-elevated);
    transform: translateX(3px);
}

.similar-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gold-xlight);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.similar-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.similar-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-hero-inner {
        flex-direction: column;
    }

    .detail-title {
        font-size: 1.6rem;
    }
}

/* ================================================================
   ADD LISTING PAGE
   ================================================================ */
.add-listing-hero {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #0d1428 100%);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
}

.add-listing-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}

.step-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--t);
}

.step-item.active .step-num {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0e1a;
}

.step-item.active .step-label {
    color: var(--gold);
    font-weight: 600;
}

.step-item.done .step-num {
    background: rgba(34, 197, 94, 0.2);
    border-color: #4ade80;
    color: #4ade80;
}

.step-item.done .step-label {
    color: #4ade80;
}

.step-connector {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--border-subtle);
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.step-connector::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.step-connector.done::after {
    transform: scaleX(1);
}

.add-listing-form-wrap {
    max-width: 780px;
    margin: 3rem auto;
}

.add-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    margin-bottom: 1.5rem;
    transition: var(--t);
}

.add-form-section {
    display: none;
}

.add-form-section.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input,
.form-textarea,
.form-select-styled {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--t);
    display: block;
}

.form-input:focus,
.form-textarea:focus,
.form-select-styled:focus {
    border-color: var(--gold);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.form-select-styled {
    appearance: none;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.form-nav .btn {
    min-width: 140px;
    justify-content: center;
}

.add-confirm-summary {
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.confirm-row {
    display: flex;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-key {
    color: var(--text-muted);
    min-width: 140px;
    font-weight: 500;
}

.confirm-val {
    color: var(--text-primary);
    font-weight: 600;
}

.alert-success-premium {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--r-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #4ade80;
    animation: scaleIn 0.4s ease;
}

.alert-success-premium i {
    font-size: 1.8rem;
    margin-top: 0.1rem;
}

.alert-success-premium strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #86efac;
    font-size: 1.05rem;
}

.alert-error-premium {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--r-md);
    padding: 1.25rem 1.5rem;
    color: #fca5a5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (max-width: 680px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .add-form-card {
        padding: 1.5rem;
    }

    .add-listing-steps {
        gap: 0;
    }

    .step-label {
        display: none;
    }
}

/* ================================================================
   DASHBOARD PAGE
   ================================================================ */
.dashboard-hero {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #0d1428 100%);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--t);
    backdrop-filter: blur(8px);
}

.dash-stat-card:hover {
    border-color: var(--border-card-hover);
    transform: translateY(-3px);
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--gold-xlight);
    border: 1px solid rgba(201, 162, 39, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}

.dash-stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.dash-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.dashboard-content {
    padding: 2.5rem 0;
}

.dash-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dash-toolbar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.dash-filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.dash-tab {
    padding: 0.45rem 1rem;
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.dash-tab:hover,
.dash-tab.active {
    background: var(--gold-xlight);
    border-color: rgba(201, 162, 39, 0.3);
    color: var(--gold);
}

.dash-listing-table {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.dash-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-input);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.dash-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
    transition: var(--t);
}

.dash-table-row:last-child {
    border-bottom: none;
}

.dash-table-row:hover {
    background: var(--bg-input);
}

.dash-listing-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.dash-listing-cat {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.dash-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.dash-status-badge.approved {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.dash-status-badge.pending {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.dash-status-badge.rejected {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.dash-actions {
    display: flex;
    gap: 0.4rem;
}

.dash-btn-sm {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--t);
    border: 1px solid var(--border-subtle);
    background: var(--bg-input);
    color: var(--text-secondary);
}

.dash-btn-sm:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-xlight);
}

.dash-btn-sm.danger:hover {
    border-color: #f87171;
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
}

.dash-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.dash-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 1rem;
}

.dash-empty p {
    margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-table-head {
        display: none;
    }

    .dash-table-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
    }
}

/* ================================================================
   LISTING CARDS — clickable + hover 3D tilt
   ================================================================ */
.listing-card {
    cursor: pointer;
    perspective: 800px;
}

.listing-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.listing-card a.listing-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

/* ================================================================
   CATEGORY CARD SHIMMER HOVER
   ================================================================ */
.category-card {
    background-size: 200% auto;
    transition: var(--t);
}

.category-card:hover {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(30, 41, 80, 0.9) 100%);
    background-size: 200% auto;
}

/* ================================================================
   PARALLAX HERO TWEAK
   ================================================================ */
.hero {
    will-change: transform;
}

/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
}

/* ================================================================
   BACK-TO-TOP BUTTON UPGRADE
   ================================================================ */
.scroll-top {
    animation: pulse-gold 3s infinite;
}

.scroll-top:hover {
    animation: none;
    transform: translateY(-4px) scale(1.1);
}