/* ================================
   FAQ PAGE - PREMIUM DESIGN
   ================================ */

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, rgba(155, 0, 19, 0.95), rgba(44, 62, 80, 0.9)), 
                url('../images/Atlantic-City-Car-Classic-Car_Auction_June_2026.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.hero-meta {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Quick Links Section */
.quick-links-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 2px solid rgba(155, 0, 19, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 0, 19, 0.15);
    border-color: #9b0013;
    color: #9b0013;
}

.quick-link-card i {
    font-size: 1.5rem;
    color: #9b0013;
    min-width: 30px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-category {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #9b0013;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9b0013, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(155, 0, 19, 0.3);
    flex-shrink: 0;
}

.category-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}

/* FAQ Accordion Styling */
.faq-accordion {
    border: none;
}

.faq-item {
    background: white;
    border: 2px solid rgba(155, 0, 19, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(155, 0, 19, 0.3);
    box-shadow: 0 8px 25px rgba(155, 0, 19, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(155, 0, 19, 0.05), rgba(231, 76, 60, 0.05));
    color: #9b0013;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #9b0013;
    width: auto;
    height: auto;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-accordion .accordion-button i.fa-question-circle {
    color: #9b0013;
    font-size: 1.25rem;
}

.faq-accordion .accordion-body {
    padding: 1.5rem 2rem 2rem 5rem;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    background: white;
}

.faq-accordion .accordion-body a {
    color: #9b0013;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-body a:hover {
    border-bottom-color: #9b0013;
}

/* Contact Section */
.contact-section {
    background: var(--background-gradient);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(155, 0, 19, 0.1), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(231, 76, 60, 0.1), transparent 50%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #9b0013, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(155, 0, 19, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(155, 0, 19, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(155, 0, 19, 0.6);
    }
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    min-width: 280px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9b0013, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(155, 0, 19, 0.4);
}

.method-details h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-details p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .category-header {
        gap: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1.25rem 1.5rem 1.75rem 4rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .quick-link-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .quick-link-card i {
        font-size: 1.25rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1.25rem 1.5rem 1.75rem 4rem;
        font-size: 0.95rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-method {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }
    
    .faq-accordion .accordion-button::after {
        font-size: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}
