/* 
 * style.css - Style principal pour domain.com
 * Site d'audit financier professionnel
 */

/* Variables de couleurs et typographie */
:root {
    /* Palette de couleurs */
    --deep-indigo: #1C164E;    /* Arrière-plan principal */
    --vibrant-amber: #FFB833;  /* CTA et survol */
    --soft-cloud: #FAFAF5;     /* Arrière-plan texte */
    --electric-coral: #FF5F73; /* Accent */
    --cool-teal: #2ABFAE;      /* Séparateurs */
    --shadow-gray: #4A4A4A;    /* Texte dans sections claires */
    
    /* Polices */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Tailles de police */
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.8rem;
    --normal-size: 1.1rem;
    --small-size: 0.9rem;
    
    /* Espacements */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
}

/* Reset et styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-size);
    line-height: 1.6;
    color: var(--shadow-gray);
    background-color: var(--soft-cloud);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--deep-indigo);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--vibrant-amber);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--vibrant-amber);
    color: var(--deep-indigo);
}

.btn-primary:hover {
    background-color: var(--deep-indigo);
    color: var(--vibrant-amber);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--vibrant-amber);
    border: 2px solid var(--vibrant-amber);
}

.btn-secondary:hover {
    background-color: var(--vibrant-amber);
    color: var(--deep-indigo);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--deep-indigo);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--cool-teal);
    border-radius: 2px;
}

/* Header et navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(28, 22, 78, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--vibrant-amber);
    text-transform: lowercase;
}

.logo span {
    color: var(--soft-cloud);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--soft-cloud);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--vibrant-amber);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vibrant-amber);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--vibrant-amber);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--deep-indigo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 1.5rem 0;
}

.mobile-menu ul li a {
    color: var(--soft-cloud);
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--vibrant-amber);
}

.mobile-close::before {
    transform: rotate(45deg);
}

.mobile-close::after {
    transform: rotate(-45deg);
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--deep-indigo);
    color: var(--soft-cloud);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/FXZBwz.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About section */
.about {
    background-color: var(--soft-cloud);
    padding: 7rem 0;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services section */
.services {
    background-color: var(--soft-cloud);
    position: relative;
}



.services-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--deep-indigo);
    margin-bottom: 0.75rem;
}

/* Audit Types section */
.audit-types {
    background-color: var(--deep-indigo);
    color: var(--soft-cloud);
    position: relative;
}

.audit-types .section-title {
    color: var(--soft-cloud);
}

.audit-types-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audit-type-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.audit-type-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--vibrant-amber);
    transform: translateY(-5px);
}

.audit-type-card h3 {
    color: var(--vibrant-amber);
    margin-bottom: 1rem;
}

/* Benefits section */
.benefits {
    background-color: var(--soft-cloud);
    position: relative;
}



.benefits-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--vibrant-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-indigo);
    font-size: 1.5rem;
}

/* Testimonials section */
.testimonials {
    background-color: var(--soft-cloud);
}

.testimonials-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--electric-coral);
    opacity: 0.1;
    line-height: 1;
    font-family: serif;
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-person h4 {
    margin-bottom: 0.25rem;
    color: var(--deep-indigo);
}

.testimonial-person p {
    margin-bottom: 0;
    font-size: var(--small-size);
    color: var(--shadow-gray);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
}

/* Statistics section */
.statistics {
    background-color: var(--deep-indigo);
    color: var(--soft-cloud);
    text-align: center;
}

.statistics .section-title {
    color: var(--soft-cloud);
}

.statistics-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--vibrant-amber);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing section */
.pricing {
    background-color: var(--soft-cloud);
    position: relative;
}



.pricing-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--vibrant-amber);
}

.pricing-card.popular::before {
    content: 'Plus Populaire';
    position: absolute;
    top: 1.5rem;
    right: -4rem;
    background-color: var(--vibrant-amber);
    color: var(--deep-indigo);
    font-weight: 700;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing-header {
    padding: 2rem;
    background-color: var(--deep-indigo);
    color: var(--soft-cloud);
}

.pricing-title {
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vibrant-amber);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cool-teal);
    font-weight: 700;
}

/* Contact/Order Form section */
.contact {
    background-color: var(--soft-cloud);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--cool-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 191, 174, 0.1);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    color: var(--shadow-gray);
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background-color: white;
    padding: 0 0.5rem;
    color: var(--cool-teal);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: var(--small-size);
}

.checkbox-group a {
    color: var(--deep-indigo);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--deep-indigo);
    color: var(--soft-cloud);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vibrant-amber);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-contact {
    grid-column: span 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vibrant-amber);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-links {
    grid-column: span 1;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--soft-cloud);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--vibrant-amber);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--small-size);
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie consent bar */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--deep-indigo);
    color: var(--soft-cloud);
    padding: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
    font-size: var(--small-size);
}

/* Policy pages */
.policy-page {
    padding-top: 120px;
    padding-bottom: 5rem;
}

.policy-container {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.policy-title {
    margin-bottom: 2rem;
    color: var(--deep-indigo);
}

.policy-content h2 {
    color: var(--deep-indigo);
    margin-top: 2rem;
    font-size: 1.8rem;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    padding-left: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

/* Thank you page */
.thank-you {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 120px; /* Changé de margin-top à padding-top */
}

.thank-you-container {
    max-width: 700px;
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    width: 100%;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: var(--cool-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    line-height: 1;
}

.thank-you h1 {
    color: var(--deep-indigo);
    margin-bottom: 1rem;
}

.thank-you p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Helper classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.accent-color {
    color: var(--vibrant-amber);
}
