/* ============================================================
   DALLAS AUCTIONS — PUBLIC WEBSITE STYLES
   ============================================================ */

/* ---- NAVBAR ---- */
.da-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(15, 29, 53, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.da-navbar .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.da-navbar .nav-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}
.da-navbar .nav-brand span {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
}

.da-navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.da-navbar .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}
.da-navbar .nav-links a:hover,
.da-navbar .nav-links a.active { color: #FFF; }
.da-navbar .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.da-navbar .nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}
.da-navbar .nav-auth .btn-login {
    padding: 8px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}
.da-navbar .nav-auth .btn-login:hover { color: #FFF; }
.da-navbar .nav-auth .btn-register {
    padding: 8px 24px;
    background: var(--accent);
    color: #FFF;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}
.da-navbar .nav-auth .btn-register:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 24px;
    cursor: pointer;
}

/* ---- HERO ---- */
.hero-section {
    background: var(--bg-hero);
    padding: 160px 48px 100px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}
.hero-section .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.hero-section h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-section h1 .highlight {
    color: var(--accent);
}
.hero-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stat-bar {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .hs-val {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
}
.hero-stat .hs-val .accent { color: var(--accent); }
.hero-stat .hs-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ---- SECTIONS ---- */
.pub-section {
    padding: 80px 48px;
}
.pub-section .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.pub-section .section-header .eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}
.pub-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}
.pub-section .section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- AUCTION CARDS (public) ---- */
.auction-card-pub {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.auction-card-pub:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.auction-card-pub .acp-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.auction-card-pub .acp-date {
    width: 56px;
    text-align: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    padding: 8px;
}
.auction-card-pub .acp-date .month { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--accent); }
.auction-card-pub .acp-date .day { font-size: 22px; font-weight: 800; color: var(--accent); font-family: 'Outfit', sans-serif; line-height: 1; }
.auction-card-pub .acp-body { padding: 0 24px; }
.auction-card-pub .acp-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.auction-card-pub .acp-body p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
.auction-card-pub .acp-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.auction-card-pub .acp-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
}
.auction-card-pub .acp-meta-item i { font-size: 14px; color: var(--accent); }
.auction-card-pub .acp-footer {
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.auction-card-pub .acp-vehicles {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.auction-card-pub .acp-vehicles strong { color: var(--text-primary); }

/* ---- HOW IT WORKS ---- */
.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-card .step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}
.step-card .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin: 0 auto 20px;
}
.step-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ---- FOOTER ---- */
.da-footer {
    background: #0A1628;
    padding: 64px 48px 32px;
    color: rgba(255,255,255,0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

/* ---- AUTH PAGES ---- */
.auth-page {
    min-height: 100vh;
    display: flex;
}
.auth-left {
    flex: 1;
    background: var(--bg-hero);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.auth-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.auth-left .auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.auth-left h2 {
    font-size: 36px;
    color: #FFF;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.auth-left p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 400px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.auth-right {
    width: 520px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: var(--bg-card);
}
.auth-right h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.auth-right .auth-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.auth-form .form-group { margin-bottom: 20px; }
.auth-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-form .btn-da { width: 100%; justify-content: center; padding: 12px; font-size: 15px; }
.auth-form .auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    color: var(--text-tertiary);
    font-size: 13px;
}
.auth-form .auth-divider::before,
.auth-form .auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: var(--border);
}
.auth-form .auth-divider::before { left: 0; }
.auth-form .auth-divider::after { right: 0; }
.auth-form .auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-secondary); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
}
.contact-info-card .cic-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .da-navbar { padding: 0 24px; }
    .da-navbar .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .hero-section { padding: 120px 24px 80px; }
    .hero-section h1 { font-size: 36px; }
    .hero-stat-bar { gap: 24px; flex-wrap: wrap; }
    .pub-section { padding: 60px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .auth-left { display: none; }
    .auth-right { width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .hero-section h1 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .da-footer { padding: 48px 24px 24px; }
}
