/* ==========================================================================
   BulkArganOil.com — Main Stylesheet
   Theme: Premium Dark Luxury
   ========================================================================== */

:root {
    --bg: #0E0C09;
    --bg-card: #1A1713;
    --bg-card-hover: #221e19;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #b08d38;
    --gold-muted: rgba(201, 168, 76, 0.15);
    --text: #F5F0E8;
    --text-muted: #8A7D6A;
    --border: rgba(201, 168, 76, 0.2);
    --border-light: rgba(245, 240, 232, 0.1);
    
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.15);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --max-w: 1280px;
    --container-px: 24px;
    --section-py: 120px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--text);
}

h1 { font-size: clamp(3rem, 5vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
h3 { font-size: clamp(2rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 2vw, 2rem); }

p { margin: 0 0 1.5rem; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.5rem 0; padding-left: 1.5rem; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: #0E0C09;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    color: #0E0C09;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold-muted);
    color: var(--gold-light);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(14, 12, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: block;
    width: 180px;
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 999;
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-cta {
    margin-bottom: 16px;
    width: 100%;
}

.btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,12,9,0.92) 0%, rgba(14,12,9,0.6) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gold-light);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-image-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .hero-image-wrapper {
        display: block;
        position: relative;
    }
    
    .hero-image-wrapper::after {
        content: '';
        position: absolute;
        inset: -20px;
        border: 1px solid var(--gold);
        border-radius: var(--radius-lg);
        z-index: -1;
    }
    
    .hero-image-wrapper img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-gold);
    }
}

/* ==========================================================================
   Trust Logos Strip
   ========================================================================== */
.trust-strip {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-strip-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logos svg,
.trust-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.trust-logos svg:hover,
.trust-logos img:hover {
    filter: grayscale(0%) opacity(1);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-img-wrap {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #0E0C09;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 2;
}

.card-content {
    padding: 32px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Image Placeholders
   ========================================================================== */
.img-placeholder {
    background: linear-gradient(135deg, #1a1510 0%, #2a2015 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-align: center;
    padding: 20px;
}

.img-placeholder::after {
    content: 'Image Area';
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Default: ALWAYS visible. JS will add .will-animate to enable scroll effects. */
.reveal {
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only hide when JS explicitly marks element for animation */
.reveal.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

/* Revealed state — overrides will-animate */
.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   Stats Counter
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-block {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.timeline {
    position: relative;
    padding-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    display: none;
}

@media (min-width: 768px) {
    .timeline::before {
        display: block;
    }
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.timeline-step {
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Footer Overrides & Layout
   ========================================================================== */
.site-footer {
    background: var(--bg-card);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: block;
    margin-bottom: 24px;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 240, 232, 0.05);
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: #0E0C09;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   Quote Form Specifics
   ========================================================================== */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .quote-layout {
        grid-template-columns: 1fr 350px;
    }
}

.quote-sidebar {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    height: fit-content;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(245, 240, 232, 0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.radio-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .radio-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.radio-card input:checked + .radio-card-content {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

/* Checkbox specific */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.checkbox-label input {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

/* Multi-step form */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-progress {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    justify-content: space-between;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 15px;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 2;
    transition: width 0.4s ease;
}

.step-indicator {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.step-indicator.active .step-dot {
    border-color: var(--gold);
    background: var(--gold);
    color: #0E0C09;
}

.step-indicator.completed .step-dot {
    border-color: var(--gold);
    background: var(--bg-card);
    color: var(--gold);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.step-indicator.active .step-label {
    color: var(--gold);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 24px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}

th {
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

tr:hover td {
    background: rgba(245, 240, 232, 0.02);
}

/* ==========================================================================
   Page Headers (Inner Pages)
   ========================================================================== */
.page-header {
    padding: calc(var(--header-height) + 60px) 0 80px;
    background: linear-gradient(to bottom, #110e0a, var(--bg));
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.page-title {
    margin-bottom: 24px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--text-muted);
}

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

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

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

/* ==========================================================================
   Blog Styles
   ========================================================================== */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
}

.blog-card .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
}

.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0d8cc;
}

.post-content h2 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--gold-light);
}

.post-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.post-content ul, .post-content ol {
    margin-bottom: 32px;
}

.post-content li {
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 16px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

/* Error States */
.error-msg {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
}

.form-control.error {
    border-color: #ff6b6b;
}

.form-control.error + .error-msg {
    display: block;
}

/* Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 48px !important; }
.mt-5 { margin-top: 48px !important; }

/* Form Select Option Override */
select option {
    background-color: var(--bg);
    color: var(--text);
}
