:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F9E4B7;
    --color-gold-dark: #A08328;
    --color-black: #121212;
    --color-black-soft: #1E1E1E;
    --color-bg-gradient-start: #141414;
    --color-bg-gradient-end: #0A0A0A;
    --color-white: #FFFFFF;
    --color-gray: #CCCCCC;
    --color-text-muted: #999999;

    /* Feature Colors */
    --bg-hero-gradient: radial-gradient(circle at center, #7a7a7a 0%, #2b2b2b 100%);

    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-headings: 'Outfit', sans-serif;
    --font-script: 'Playfair Display', serif;
    /* For "Elite" */
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    background: radial-gradient(circle at top center, var(--color-bg-gradient-start), var(--color-bg-gradient-end));
    background-attachment: fixed;
    color: var(--color-white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--color-white);
    margin-bottom: 1rem;
}

/* Utilities */
.text-gold {
    color: var(--color-gold) !important;
}

.bg-black-soft {
    background-color: var(--color-black-soft) !important;
}

.bg-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)) !important;
    color: #000 !important;
    border: none !important;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    border: none;
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--color-gold);
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
}

/* Navbar */
.navbar {
    background: rgba(18, 18, 18, 0.8);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: 700;
    color: #fff !important;
}

.nav-link {
    color: var(--color-gray) !important;
    font-family: var(--font-headings);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin: 0 12px;
}

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

/* Hero Section */
.hero-section {
    background: var(--bg-hero-gradient);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    font-family: var(--font-script);
    color: var(--color-gold);
    font-style: italic;
    font-weight: 700;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.business-card {
    background: var(--color-black-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Card Badge Highlight for Sponsored */
.business-card.border-gold {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.business-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Card Tags */
.card-tag {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-tag.premium {
    right: 15px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
}

.card-tag.category {
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}

.card-body {
    padding: 24px;
}

.card-title {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-meta {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Sidebar / Ads */
.ad-card {
    background: var(--color-black-soft);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
}

.ad-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-gray);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.news-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.news-date {
    font-size: 0.75rem;
    color: var(--color-gold);
    display: block;
    margin-top: 4px;
}

/* Categories */
.category-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.category-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.category-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.category-item h5 {
    margin: 0;
    font-weight: 600;
    color: var(--color-white);
}


/* Badge Label Form Design (NEW) */
.form-group-badge {
    position: relative;
    margin-bottom: 20px;
}

.form-control-badge {
    background: #1E1E1E;
    /* Dark BG */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 15px 15px 15px;
    /* Clean padding */
    padding-top: 30px;
    /* Space for badge */
    color: #fff;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control-badge:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.badge-label-tag {
    position: absolute;
    top: 8px;
    left: 12px;
    background: #FFF;
    /* White Badge */
    color: #D4AF37;
    /* Gold Text */
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
}

/* Plan Cards */
.plan-option {
    background: rgba(30, 30, 30, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    text-align: center;
}

.plan-input:checked+.plan-option {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: var(--color-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Footer (Original Big Footer) */
.footer {
    background-color: #050505;
    color: var(--color-gray);
    padding: 80px 0 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: var(--color-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 12px;
}

.footer a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.social-links a {
    color: var(--color-white);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

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