/* 
 * Domain - Audit Financier
 * Main Stylesheet
 * 
 * Colors:
 * - Deep Indigo: #2E1A47
 * - Lavender: #BCA9D6
 * - Bright Mandarin: #FF914D
 * - Smoky Gray: #D1D5DB
 * - Snow White: #FFFFFF
 */

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: #2E1A47;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: #2E1A47;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF914D;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #2E1A47;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: #F5F5F5;
}

.nav-button {
    background-color: #FF914D;
    color: #FFFFFF !important;
    padding: 8px 20px !important;
    border-radius: 5px;
}

.nav-button:hover {
    background-color: #e67e35;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background-color: #2E1A47;
    color: #FFFFFF;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 60px;
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: 30px;
    font-size: 3rem;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #FF914D;
    color: #FFFFFF;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e35;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- About Section --- */
.about {
    text-align: center;
    background-color: #F9F9F9;
}

.about p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.stat-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    border-left: 3px solid #FF914D;
    flex: 1;
    min-width: 200px;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.5rem;
    color: #FF914D;
    margin-right: 15px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E1A47;
    line-height: 1.2;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.about-text {
    flex: 1.5;
    min-width: 280px;
    text-align: left;
}

.about-text h3 {
    margin-bottom: 15px;
    color: #2E1A47;
}

.about-text p {
    margin: 0;
    text-align: left;
}

.about-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Services Section --- */
.services {
    background-color: #FFFFFF;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #F9F9F9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* --- Advantages Section --- */
.advantages {
    background-color: #F9F9F9;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 2rem;
    color: #FF914D;
    margin-bottom: 15px;
}

/* --- Process Section --- */
.process {
    background-color: #FFFFFF;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #BCA9D6;
    z-index: 1;
}

.process-step {
    position: relative;
    padding-left: 80px;
    z-index: 2;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #2E1A47;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 10px;
}

/* --- Contact Form Section --- */
.contact-form {
    background-color: #F9F9F9;
    text-align: center;
}

.contact-form p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.audit-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #FF914D;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2E1A47;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #BCA9D6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(188, 169, 214, 0.3);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input,
.checkbox-label input {
    margin-right: 10px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.submit-button {
    background-color: #2E1A47;
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #231136;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: #FFFFFF;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background-color: #F9F9F9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* --- FAQ Section --- */
.faq {
    background-color: #F9F9F9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-question:hover {
    background-color: #F9F9F9;
}

/* --- Footer Section --- */
.site-footer {
    background-color: #2E1A47;
    color: #FFFFFF;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-description {
    opacity: 0.8;
    max-width: 300px;
}

.footer-column h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: #FF914D;
}

.footer-contact {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #FF914D;
}

.footer-contact a {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-contact a:hover {
    opacity: 1;
    color: #FF914D;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #2E1A47;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-popup.active {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cookie-content button {
    background-color: #FF914D;
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-content button:hover {
    background-color: #e67e35;
}

.cookie-link {
    color: #BCA9D6;
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #FFFFFF;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Legal Pages --- */
.legal-page {
    padding: 150px 0 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D1D5DB;
}

.legal-container h1 {
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-section ul li {
    margin-bottom: 10px;
}

/* --- Thank You Page --- */
.thank-you-page {
    padding: 180px 0 100px;
    text-align: center;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
    font-size: 4rem;
    color: #FF914D;
    margin-bottom: 30px;
}

.thank-you-container h1 {
    margin-bottom: 20px;
}

.thank-you-container p {
    margin-bottom: 40px;
}

.back-button {
    display: inline-block;
    background-color: #2E1A47;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #231136;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    section {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
    }
    
    .about-right {
        order: -1;
    }
    
    .stat-container {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .logo a {
        font-size: 1.6rem;
    }
    
    .nav-toggle-label {
        display: block;
        position: relative;
        height: 24px;
        width: 30px;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: #2E1A47;
        height: 3px;
        width: 100%;
        border-radius: 3px;
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 10px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        bottom: -8px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: #FFFFFF;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #F0F0F0;
    }
    
    .nav-button {
        margin: 15px;
    }
    
    .nav-toggle:checked ~ .main-nav {
        max-height: 500px;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .stat-item,
    .service-card,
    .advantage-item {
        min-width: 100%;
    }
    
    .testimonial-item {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .audit-form {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        max-width: 90%;
        left: 5%;
        right: 5%;
    }
    
    .legal-container {
        padding: 30px 20px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .thank-you-container {
        padding: 30px 20px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
} 