/* ===== SQL Agent Yellow Theme ===== */
/* Inspired by mobilevibe.io design system */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Gold Colors */
    --gold-primary: #FFB800;
    --gold-hover: #e6a000;
    --gold-dark: #b37700;
    --gold-light: #fffdf0;

    /* Alpha variations */
    --gold-bg-tint: rgba(255, 184, 0, 0.12);
    --gold-shadow: rgba(255, 184, 0, 0.35);
    --gold-glow: rgba(255, 184, 0, 0.10);

    /* Text colors */
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
}

/* --- Hero Section with Yellow Gradient --- */
.hero-gradient {
    position: relative;
    background: linear-gradient(180deg, #fffdf0 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-gradient > * {
    position: relative;
    z-index: 1;
}

/* --- CTA Section with Gradient --- */
.cta-gradient {
    position: relative;
    background: linear-gradient(180deg, #fffdf0 0%, #ffffff 100%);
}

.cta-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Primary Button Styling --- */
.btn-gold {
    background-color: var(--gold-primary) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 4px 20px var(--gold-shadow);
    transition: all 0.2s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 184, 0, 0.45);
}

/* --- Secondary Button with Yellow Border --- */
.btn-gold-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--gold-primary);
    transition: all 0.2s ease;
}

.btn-gold-outline:hover {
    background-color: rgba(255, 184, 0, 0.08);
    border-color: var(--gold-hover);
}

/* --- Card Hover Effect with Yellow --- */
.card-gold-hover {
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.card-gold-hover:hover {
    border-color: var(--gold-primary) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.12);
}

/* --- Icon Background --- */
.icon-gold-bg {
    background: var(--gold-bg-tint);
    color: var(--gold-dark);
}

/* --- Feature List Bullets --- */
.gold-bullet::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* --- Star Rating --- */
.gold-stars {
    color: var(--gold-primary);
}

/* --- Form Focus States --- */
.gold-focus:focus {
    outline: none;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15) !important;
}

/* --- Link Styling --- */
.link-gold {
    color: var(--gold-dark);
    transition: color 0.2s;
}

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

/* --- Active Nav Indicator --- */
.nav-active-gold::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 1px;
}

/* --- Pricing Card "Popular" Badge --- */
.badge-gold {
    background: var(--gold-bg-tint);
    color: var(--gold-dark);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

/* --- Number/Step Indicator --- */
.step-number-gold {
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-dark);
    font-weight: 700;
}

/* --- Tech Tag --- */
.tech-tag-gold {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.25);
    color: #92600a;
}

/* --- FAQ Accordion Plus/Minus --- */
.faq-toggle-gold {
    color: var(--gold-primary);
}

/* --- Footer Link Hover --- */
.footer-link-gold:hover {
    color: var(--gold-primary) !important;
}

/* --- Testimonial Stars --- */
.testimonial-stars-gold {
    color: var(--gold-primary);
    letter-spacing: 2px;
}

/* --- Checkmark/Success Icons (Yellow Theme) --- */
.check-gold {
    color: var(--gold-dark);
}

.check-bg-gold {
    background: var(--gold-bg-tint);
}

/* --- Value Card Heading --- */
.value-heading-gold {
    color: var(--gold-dark);
}

/* --- Requirements Value --- */
.requirement-value-gold {
    color: var(--gold-dark);
    font-weight: 700;
}
