/* style.css - CSS personnalisé pour Fox Detailing */
:root {
    --primary-color: #eab308;
    --primary-dark: #ca8a04;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3070&q=80');
    background-size: cover;
    background-position: center;
}

.bg-primary-600 {
    --tw-bg-opacity:1;
    background-color:rgb(202 138 4 / var(--tw-bg-opacity, 1))
  }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.eco-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.price-container {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    margin-top: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    cursor: pointer;
    padding: 20px 0;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #D97706;
    transition: all 0.3s ease;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer.show {
    max-height: 300px;
    padding-bottom: 20px;
}