/* 
* Main Stylesheet for Expert-Comptable Paris
* Colors:
* - Primary Gradient: #6a00f4 to #ff5fcb
* - Accent: #fff951 (yellow) and #00e0ff (blue)
* - Backgrounds: #fff (white) and #f8f8f8 (light gray)
*/

/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    background-color: #fff;
}

a {
    color: #6a00f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff5fcb;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #6a00f4, #ff5fcb);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #6a00f4, #ff5fcb);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 0, 244, 0.3);
}

.btn-primary:hover {
    color: white;
    box-shadow: 0 7px 20px rgba(106, 0, 244, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #6a00f4;
    color: #6a00f4;
}

.btn-outline:hover {
    background: #6a00f4;
    color: white;
}

.btn-accept {
    background-color: #6a00f4;
    color: white;
}

.btn-reject {
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list li a {
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Main sections styling */
main {
    margin-top: 80px;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f8f8f8;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, rgba(106, 0, 244, 0.05), rgba(255, 95, 203, 0.05));
    padding: 120px 0 80px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-content h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    background: linear-gradient(to right, #6a00f4, #ff5fcb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About section */
.about-section {
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    gap: 50px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: transform 1s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Advantages section */
.advantages-section {
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.advantage-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(106, 0, 244, 0.1), rgba(255, 95, 203, 0.1));
    border-radius: 50%;
}

.advantage-icon i {
    font-size: 30px;
    color: #6a00f4;
}

.advantage-item h3 {
    margin-bottom: 15px;
}

/* Services section */
.services-section {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    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.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(106, 0, 244, 0.1), rgba(255, 95, 203, 0.1));
    border-radius: 50%;
}

.service-card h3 {
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.service-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6a00f4;
    font-weight: bold;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6a00f4;
}

/* Contact Form */
.contact-section {
    text-align: center;
}

.contact-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #6a00f4;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

button[type="submit"] {
    display: block;
    width: 100%;
    margin-top: 30px;
}

/* Testimonials */
.testimonials-section {
    text-align: center;
    background-color: #f8f8f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    font-size: 60px;
    color: rgba(106, 0, 244, 0.2);
}

/* FAQ Section */
.faq-section {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #6a00f4;
    margin-bottom: 15px;
}

/* Contact Info Section */
.info-contact-section {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 3rem;
    text-align: left;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item h3 {
    color: #6a00f4;
    margin-bottom: 10px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    border-radius: 10px;
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #6a00f4, #ff5fcb);
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff951;
}

.footer-contact li {
    color: #aaa;
}

.footer-contact a {
    color: #aaa;
}

.footer-contact a:hover {
    color: #fff951;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-date {
    margin-bottom: 30px;
    color: #777;
}

.policy-text h2 {
    margin-top: 40px;
}

/* Thank you page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-details {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.contact-list {
    list-style: none;
    margin: 20px 0;
}

.contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list li span {
    margin-right: 10px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-text {
        margin-top: 30px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    .main-nav.active {
        height: auto;
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav .nav-list li {
        margin: 0 0 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .advantages-grid, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
} 