.text-gold {
    color: var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
    color: #ffffff;
}

.bg-gold-light {
    background-color: var(--gold-light) !important;
}

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

/* Button Custom Styles */
.btn-gold {
    background-color: var(--gold-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(184, 150, 85, 0.3);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 150, 85, 0.4);
}

.btn-outline-gold {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: #ffffff;
}

.hero-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.92) 100%),
        url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    color: #ffffff;
    padding: 120px 0 90px;
    position: relative;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #e2e8f0;
    font-weight: 300;
    line-height: 1.7;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.sticky-pill-nav {
    position: sticky;
    top: 100px;
    z-index: 990;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    border-bottom: 1px solid var(--gold-border);
}

.pill-scroll {
    display: flex;
    white-space: nowrap;
    gap: 2px;
}

.pill-scroll::-webkit-scrollbar {
    height: 4px;
}

.pill-scroll::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

.nav-pill-btn {
    background-color: var(--gray-color);
    color: var(--text-dark);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.nav-pill-btn:hover,
.nav-pill-btn.active {
    background-color: var(--gold-primary);
    color: #ffffff;
}

.section-padding {
    padding: 90px 0;
}

.section-title-badge {
    display: inline-block;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid var(--gold-border);
}

.section-heading {
    font-size: 2.3rem;
    margin-bottom: 20px;
    position: relative;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-number-badge {
    width: 36px;
    height: 36px;
    background-color: var(--gold-primary);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.step-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

/* Entity Comparison Table Styling */
.entity-table-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-sm);
}

.entity-table th {
    background-color: #1e293b;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 600;
}

.entity-table td {
    padding: 16px 20px;
    vertical-align: middle;
}

/* Form and Footer Styles */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-border);
}

.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.25rem rgba(184, 150, 85, 0.25);
}