/* FAQ Specific Styles */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #2d5016 0%, #9cb83d 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quick-link {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.quick-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* FAQ Content Section */
.faq-content {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.section-header i {
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question i:first-child {
    color: #2d5016;
    font-size: 1.2rem;
}

.faq-question i:last-child {
    color: #64748b;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 3000px;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.faq-answer strong {
    color: #1a202c;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card i {
    color: #2d5016;
}

/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.brand-card {
    background: linear-gradient(135deg, #2d5016 0%, #9cb83d 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.brand-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Battery Comparison */
.battery-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.battery-type {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.battery-type.preferred {
    border-color: #2d5016;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
}

.battery-type.preferred::before {
    content: '⭐ RECOMMENDED';
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #2d5016;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.battery-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.battery-type ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.battery-type li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.recommendation {
    background: linear-gradient(135deg, #fef7cd 0%, #fef3c7 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 1rem;
    font-weight: 500;
}

/* FAQ CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #2d5016 0%, #9cb83d 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2d5016;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
}

.cta-buttons .btn-secondary:hover {
    background: #2d2d2d;
    border-color: #2d2d2d;
    transform: translateY(-2px);
}

/* Legal Links */
.legal-links {
    margin: 1.5rem 0;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d5016;
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.legal-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
    border-color: #2d5016;
}

/* Safety Reminder */
.safety-reminder {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
    margin-top: 1.5rem;
}

.safety-reminder h4 {
    color: #166534;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Enhanced Maintenance Grid */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.maintenance-item {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.maintenance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.maintenance-item.critical {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    position: relative;
}

.maintenance-item.critical::before {
    content: '🔴 CRITICAL';
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.maintenance-item.warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fefbf3 0%, #ffffff 100%);
    position: relative;
}

.maintenance-item.warning::before {
    content: '⚠️ WARNING';
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.maintenance-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a202c;
}

.maintenance-item i {
    color: #667eea;
}

/* Critical Warning Box */
.critical-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.critical-warning h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Enhanced Storage Tips */
.storage-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.tip.critical {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.tip i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tip.critical i {
    color: #dc2626;
}

.tip h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
}

/* Enhanced Voltage Guide */
.voltage-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.voltage-option {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.voltage-option.recommended {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
}

.voltage-option.recommended::before {
    content: '✅ RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.voltage-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.voltage-option h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

/* Danger Warning */
.danger-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid #dc2626;
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.danger-warning h4 {
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.danger-warning p {
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
}

/* Enhanced Lift Types */
.lift-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.lift-type {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.lift-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.lift-type h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

/* Tire Considerations */
.tire-considerations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.consideration {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.consideration:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.consideration.warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fefbf3 0%, #ffffff 100%);
}

.consideration h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a202c;
}

.consideration i {
    color: #667eea;
}

.consideration.warning i {
    color: #f59e0b;
}

/* Accessory Options */
.accessory-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.accessory {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.accessory:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.accessory h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.accessory ul {
    margin: 0;
    padding-left: 1.5rem;
}

.accessory li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }
    
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-content {
        padding: 60px 0;
    }
    
    .section-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .battery-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
    
    .storage-tips {
        grid-template-columns: 1fr;
    }
    
    .voltage-guide {
        grid-template-columns: 1fr;
    }
    
    .lift-types {
        grid-template-columns: 1fr;
    }
    
    .tire-considerations {
        grid-template-columns: 1fr;
    }
    
    .accessory-options {
        grid-template-columns: 1fr;
    }
    
    .danger-warning {
        padding: 1.5rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .faq-quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-link {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
} 