/* Reusable Components - Classic Auction House Design */

:root {
    /* Classic Auction House Palette */
    --primary-burgundy: #7C1C1C;
    --dark-burgundy: #5A1313;
    --burgundy-hover: #8E2424;
    --accent-gold: #C9A961;
    --dark-gold: #A88B4A;
    --light-gold: #D4B76E;
    
    /* Backgrounds */
    --cream: #F5F1E8;
    --ivory: #FFFFF0;
    --primary-bg: #ffffff;
    --secondary-bg: #F5F1E8;
    
    /* Text Colors */
    --dark-charcoal: #2B2B2B;
    --warm-gray: #8B8B8B;
    --text-primary: #2B2B2B;
    --text-secondary: #5A5A5A;
    --text-muted: #8B8B8B;
    
    /* Borders & Shadows */
    --border-color: #D4C5B0;
    --border-burgundy: var(--primary-burgundy);
    --border-gold: var(--accent-gold);
    --shadow-subtle: 0 1px 3px rgba(43, 43, 43, 0.08);
    --shadow-md: 0 2px 6px rgba(43, 43, 43, 0.12);
    
    /* Typography */
    --font-serif: Georgia, 'Palatino Linotype', 'Times New Roman', serif;
    --font-sans: Arial, Helvetica, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
}

/* Hero Section - Classic Auction Style */
.hero {
    position: relative;
    height: 500px;
    background: var(--cream);
    border-top: 4px solid var(--primary-burgundy);
    border-bottom: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--ivory) 0%, var(--cream) 100%);
    opacity: 0.6;
}

.hero * {
    color: var(--dark-charcoal) !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white !important;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white !important;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-box {
    display: flex;
    gap: 0;
    background: white;
    padding: 0;
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

.search-box input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid var(--primary-burgundy);
    border-right: none;
    border-radius: 0;
    font-size: 15px;
    outline: none;
    color: var(--dark-charcoal) !important;
    background: white !important;
    font-family: var(--font-sans);
}

.search-box input::placeholder {
    color: var(--warm-gray) !important;
    font-style: italic;
}

.search-box input:focus {
    border-color: var(--accent-gold);
}

.search-box button {
    padding: 14px 32px;
    background: var(--primary-burgundy);
    color: white !important;
    border: 2px solid var(--dark-burgundy);
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.search-box button:hover {
    background: var(--burgundy-hover);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: var(--dark-accent);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #c49d2f 100%);
    color: var(--dark-accent);
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Classic Auction House Button System */

/* Primary Burgundy Button */
.btn-primary,
.btn-burgundy {
    background: var(--primary-burgundy);
    color: white !important;
    padding: 14px 40px;
    border: 2px solid var(--dark-burgundy);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-sans);
}

.btn-primary:hover,
.btn-burgundy:hover {
    background: var(--burgundy-hover);
    border-color: var(--primary-burgundy);
}

/* Secondary Outlined Burgundy Button */
.btn-secondary {
    background: transparent;
    color: var(--primary-burgundy) !important;
    padding: 14px 40px;
    border: 2px solid var(--primary-burgundy);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-sans);
}

.btn-secondary:hover {
    background: var(--primary-burgundy);
    color: white !important;
}

/* Gold Accent Button */
.btn-gold,
.btn-gold-accent {
    background: var(--accent-gold);
    color: var(--dark-charcoal) !important;
    padding: 14px 40px;
    border: 2px solid var(--dark-gold);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-sans);
}

.btn-gold:hover,
.btn-gold-accent:hover {
    background: var(--light-gold);
    border-color: var(--accent-gold);
}

/* Outlined Button (for light backgrounds) */
.btn-outline {
    background: transparent;
    color: var(--primary-burgundy) !important;
    padding: 14px 40px;
    border: 2px solid var(--primary-burgundy);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-sans);
}

.btn-outline:hover {
    background: var(--primary-burgundy);
    color: white !important;
}

/* Large Button Sizes */
.btn-large {
    padding: 16px 50px;
    font-size: 15px;
    letter-spacing: 2px;
}

/* Small Button Sizes */
.btn-small {
    padding: 10px 28px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Action Button (used for downloads and CTAs) */
.action-btn {
    background: white;
    color: var(--text-primary) !important;
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
}

.action-btn:hover {
    border-color: var(--primary-burgundy);
    background: var(--cream);
    color: var(--primary-burgundy) !important;
}

/* Button Loading State */
.btn-loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Legacy support - map old gradient buttons to new solid buttons */
.btn-gold-gradient,
.btn-navy-gradient {
    background: var(--primary-burgundy);
    color: white !important;
    padding: 14px 40px;
    border: 2px solid var(--dark-burgundy);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold-gradient:hover,
.btn-navy-gradient:hover {
    background: var(--burgundy-hover);
}

/* Testimonial Cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 14px;
}

/* Section Containers */
.section {
    padding: 80px 0;
}

.section-light {
    background: white;
}

.section-gray {
    background: var(--secondary-bg);
}

.section-dark {
    background: var(--dark-accent);
    color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Ensure text is visible on all backgrounds */
.section-light .feature-title,
.section-light .feature-description,
.section-light p {
    color: var(--text-primary);
}

.section-light .feature-description,
.section-light .section-subtitle {
    color: var(--text-secondary);
}

.section-gray .feature-title,
.section-gray .section-title,
.section-gray h2,
.section-gray p {
    color: var(--text-primary);
}

.section-gray .feature-description,
.section-gray .section-subtitle {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item a {
    color: #374151 !important;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: #d4af37 !important;
}

.breadcrumb-separator {
    color: #374151 !important;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: #1a1a1a !important;
    font-weight: 700;
    font-size: 14px;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
}

.category-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

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

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: #374151;
    line-height: 1.8;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a1a1a !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: white !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 20px !important;
    padding-right: 45px !important;
    cursor: pointer;
    background-color: white !important;
}

.form-select option {
    background: white !important;
    color: #1a1a1a !important;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Calculator Widget */
.calculator-widget {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.calculator-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.calculator-result {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid var(--gold-accent);
}

.calculator-monthly {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculator-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold-accent);
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-burgundy);
    border: 2px solid var(--accent-gold);
    border-radius: 0;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s;
    box-shadow: var(--shadow-subtle);
}

.carousel-btn:hover {
    background: var(--burgundy-hover);
    border-color: var(--light-gold);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: var(--border-color);
    border: 1px solid var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    width: 12px;
}

/* Trust Badges */
.trust-badge-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-badge-icon {
    font-size: 40px;
    color: #d4af37;
}

.trust-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a !important;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Download Modal System - Classic Auction Style */

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 43, 43, 0.75);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

/* Quick Confirmation Banner */
.download-banner {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--primary-burgundy);
    color: white;
    padding: 20px 30px;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
    z-index: 10001;
    animation: slideInRight 0.4s ease-out;
    max-width: 400px;
    border: 2px solid var(--accent-gold);
}

.download-banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-banner-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.download-banner-text h4 {
    color: white !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.download-banner-text p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    margin: 0;
}

/* Detailed Instructions Modal - Classic Design */
.download-modal {
    background: var(--cream);
    border: 4px solid var(--primary-burgundy);
    border-radius: 0;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
    animation: slideUpFade 0.4s ease-out;
    position: relative;
}

.download-modal-header {
    background: var(--primary-burgundy);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-gold);
}

.download-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.download-modal-close:hover {
    background: white;
    color: var(--primary-burgundy);
}

.download-modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.download-modal-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: white !important;
    letter-spacing: 1px;
}

.download-modal-subtitle {
    font-size: 13px;
    margin-top: 8px;
    color: var(--accent-gold) !important;
    letter-spacing: 0.5px;
}

.download-modal-body {
    padding: 30px;
    background: white;
}

.download-file-preview {
    background: var(--cream);
    border: 2px solid var(--accent-gold);
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.download-file-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.download-file-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-all;
}

.download-file-size {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

.download-instructions {
    margin-top: 20px;
}

.download-instructions h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-step {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-gold);
}

.download-step-number {
    background: var(--primary-burgundy);
    color: white;
    width: 32px;
    height: 32px;
    border: 2px solid var(--dark-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.download-step-content {
    flex: 1;
}

.download-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.download-step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.download-modal-footer {
    padding: 20px 30px;
    border-top: 3px solid var(--primary-burgundy);
    background: var(--cream);
    text-align: center;
}

.download-modal-footer-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Classic Ornamental Elements */
.ornamental-divider {
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    margin: 30px auto;
    max-width: 600px;
}

.badge-certified {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-charcoal);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--dark-gold);
}

.lot-number {
    font-family: var(--font-mono);
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

/* Classic Table Styling */
table.classic-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--primary-burgundy);
}

table.classic-table th {
    background: var(--primary-burgundy);
    color: white;
    padding: 12px 18px;
    text-align: left;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--dark-burgundy);
}

table.classic-table td {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

table.classic-table tr:nth-child(even) {
    background: var(--cream);
}

table.classic-table tr:nth-child(odd) {
    background: white;
}

/* Responsive Design - Mobile Optimization */

@media (max-width: 1024px) {
    /* Tablet adjustments */
    .vehicle-page-grid {
        grid-template-columns: 1fr !important;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav a {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: var(--primary-gold);
        border: none;
        color: white;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 20px;
        cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
        height: 500px;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 32px !important;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    .hero-search {
        max-width: 100% !important;
        margin: 0 0 25px 0 !important;
    }
    
    .search-box {
        flex-direction: column;
        padding: 6px !important;
    }
    
    .search-box input {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .search-box button {
        padding: 12px 24px;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px !important;
    }
    
    .cta-buttons a,
    .btn-large {
        width: 100%;
        text-align: center;
        padding: 14px 30px !important;
        font-size: 15px !important;
    }
    
    /* Sections */
    .section {
        padding: 40px 0 !important;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2,
    .section-title {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 15px !important;
    }
    
    /* Trust Indicators / Feature Cards */
    .trust-badge-grid,
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Vehicle Cards */
    .vehicle-grid {
        grid-template-columns: 1fr !important;
    }
    
    .vehicle-card {
        margin-bottom: 20px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-gold-gradient,
    .btn-navy-gradient,
    .action-btn {
        font-size: 14px !important;
        padding: 12px 24px !important;
    }
    
    .btn-small {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    
    /* Modal */
    .download-modal {
        max-width: 95%;
        margin: 20px;
    }
    
    .download-modal-header {
        padding: 25px 20px;
    }
    
    .download-modal-title {
        font-size: 22px;
    }
    
    .download-modal-icon {
        font-size: 42px;
    }
    
    .download-modal-body {
        padding: 25px 20px;
    }
    
    .download-step {
        flex-direction: column;
        align-items: start;
    }
    
    .download-banner {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Vehicle Detail Page */
    .vehicle-page-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Statistics */
    .stats-section {
        padding: 50px 20px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
    
    /* Container */
    .container,
    .container-narrow {
        padding: 0 20px !important;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .cta-title {
        font-size: 28px !important;
    }
    
    .cta-description {
        font-size: 15px !important;
    }
    
    /* Filter Section */
    .filters {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    /* Featured Carousel */
    .carousel {
        margin: 0 -20px;
    }
    
    .carousel-slide {
        padding: 0 10px;
    }
    
    /* Breadcrumb */
    .breadcrumb-list {
        font-size: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .hero {
        height: 450px;
    }
    
    .hero-title {
        font-size: 26px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .section-header h2 {
        font-size: 24px !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .download-modal-title {
        font-size: 18px;
    }
    
    .download-step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .logo {
        font-size: 16px;
    }
}
