/* 
* Styles pour le site Expert Audit Finance
* Palette de couleurs:
* - Graphite profond: #1E1F26 (fond)
* - Lime électrique: #C8F560 (accents et boutons)
* - Fuschia poussiéreux: #D66BA0 (titres et icônes)
* - Quartz gris: #BFC2C7 (texte)
* - Blanc neige: #F9FAFB (fond des blocs et formulaire)
*/

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1E1F26;
    color: #BFC2C7;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

.accent {
    color: #D66BA0;
}

/* Boutons */
.btn-primary {
    display: inline-block;
    background-color: #C8F560;
    color: #1E1F26;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: #D66BA0;
    color: #F9FAFB;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #C8F560;
    padding: 10px 20px;
    border: 2px solid #C8F560;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #C8F560;
    color: #1E1F26;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(30, 31, 38, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 50px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #F9FAFB;
    text-transform: lowercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #BFC2C7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #C8F560;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Section Intro */
.section-intro {
    min-height: 100vh;
    padding: 150px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.section-intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 31, 38, 0.7);
    z-index: 1;
}

.section-intro .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-intro h1 {
    max-width: 100%;
    margin-bottom: 20px;
}

.section-intro .tagline {
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0 auto 40px;
}

/* Section À propos */
.section-about {
    padding: 100px 0;
    background-color: #F9FAFB;
    color: #1E1F26;
    clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
}

.section-about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Services */
.section-services {
    padding: 100px 0;
    background-color: #1E1F26;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: rgba(249, 250, 251, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    color: #D66BA0;
}

/* Section Prix */
.section-pricing {
    padding: 100px 0;
    background-color: #F9FAFB;
    color: #1E1F26;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
    position: relative;
}

.pricing-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto 40px;
    display: none; /* Caché par défaut, affiché en version desktop */
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card h3 {
    color: #D66BA0;
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li::before {
    content: "✓";
    color: #C8F560;
    position: absolute;
    left: 0;
}

/* Section Avantages */
.section-benefits {
    padding: 100px 0;
    background-color: #1E1F26;
    position: relative;
}

.benefits-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto 40px;
    display: none; /* Caché par défaut, affiché en version desktop */
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #C8F560;
    color: #1E1F26;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #D66BA0;
}

/* Section Témoignages */
.section-testimonials {
    padding: 100px 0;
    background-color: #F9FAFB;
    color: #1E1F26;
    clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: #D66BA0;
}

.testimonial-info span {
    font-size: 0.9rem;
}

/* Section Contact */
.section-contact {
    padding: 100px 0;
    background-color: #1E1F26;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    color: #D66BA0;
}

.contact-form {
    flex: 1;
    background-color: #F9FAFB;
    padding: 30px;
    border-radius: 10px;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: rotate(0);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1E1F26;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #BFC2C7;
    border-radius: 5px;
    background-color: #fff;
    color: #1E1F26;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    color: #1E1F26;
    font-size: 0.9rem;
}

.form-group.checkbox a {
    color: #D66BA0;
}

/* Page de remerciement */
.section-thanks {
    min-height: 70vh;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1E1F26;
}

.thanks-content {
    background-color: rgba(249, 250, 251, 0.05);
    padding: 50px;
    border-radius: 10px;
    margin-top: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #1a1b21;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: #F9FAFB;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #BFC2C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #C8F560;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(191, 194, 199, 0.1);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: #1E1F26;
    border: 1px solid #C8F560;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #F9FAFB;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #C8F560;
}

/* Styles responsifs */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-intro .tagline {
        font-size: 1.1rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .pricing-image,
    .benefits-image {
        display: none;
    }
}

@media (min-width: 1025px) {
    .pricing-image,
    .benefits-image {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-about .container {
        flex-direction: column;
    }
    
    .section-intro {
        padding: 100px 0 50px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #F9FAFB;
        margin: 5px 0;
    }
    
    .contact-form {
        transform: none;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .thanks-actions a {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-intro {
        padding: 80px 0 40px;
    }
    
    .btn-primary {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content button {
        width: 100%;
    }
} 

/* Styles pour les pages de politique */
.policy-content a {
    color: #F9FAFB;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: #C8F560;
    text-decoration: none;
} 