:root {
    --primary-color: #ff8c00; /* Vibrant Orange */
    --primary-light: #ffa726; /* Brighter Orange */
    --secondary-color: #ffb900; /* Yellow/Gold */
    --secondary-light: #ffda44; /* Light Yellow/Gold */
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 10px;
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 109, 255, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 109, 255, 0.4);
}

.cta-btn i {
    margin-left: 10px;
    transition: var(--transition);
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 109, 255, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 109, 255, 0.4);
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition);
    cursor: pointer;
}

.logo a {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    display: block;
}

#navbar.scrolled .logo {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

#navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(26, 109, 255, 0.3); /* Keep old shadow color for now, adjust if needed */
}

.nav-link.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(26, 109, 255, 0.4); /* Keep old shadow color for now, adjust if needed */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

#navbar.scrolled .bar {
    background-color: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: var(--white);
    overflow: hidden;
    padding-top: 80px; /* Add padding top to avoid content being hidden by fixed navbar */
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(26, 109, 255, 0.2) 0%, transparent 70%); /* Keep subtle blue gradient? Or change to orange? Keep blue for contrast */
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 50%;
    padding-right: 30px;
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-visual {
    width: 50%;
    position: relative;
}

/* Kitchen Illustration */
.kitchen-illustration {
    width: 100%;
}

.path-grow {
    animation: grow-animation 3s ease-in-out infinite alternate;
}

@keyframes grow-animation {
    0% {
        stroke-dasharray: 0, 100;
        opacity: 0.6;
    }
    100% {
        stroke-dasharray: 100, 0;
        opacity: 1;
    }
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    display: block;
    width: 4px;
    height: 10px;
    background-color: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Offre Section */
.offre {
    background-color: var(--white);
}

.offre-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.offre-description p {
    font-size: 1.5rem;
    line-height: 1.5;
}

.offre-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar-icon i {
    color: var(--white);
    font-size: 2rem;
}

.pillar-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Valeur Section */
.valeur {
    background-color: var(--white);
    padding-bottom: 120px;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.value-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.value-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.value-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.value-slide.prev {
    transform: translateX(-100%);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 15px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-light);
}

.carousel-dots {
    display: flex;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--light-gray);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

.value-grid {
    display: none;
}

/* Cible Section */
.cible {
    background-color: var(--light);
}

.cible-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cible-text {
    flex: 1;
}

.cible-text h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.checklist {
    list-style: none;
    margin-bottom: 40px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.checklist li:before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.cible-image {
    flex: 1;
}

/* Process Section */
.process {
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 8px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    z-index: 1;
}

.timeline-content {
    background-color: var(--light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--light) transparent transparent;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    background-color: var(--light);
    position: relative;
}

.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 185, 0, 0.05) 100%); /* Changed gradient to orange/yellow */
    z-index: 0;
}

.contact-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto; /* Center form when info box is below on mobile */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15); /* Changed shadow to orange */
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box,
.cta-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.info-box h3,
.cta-box h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.benefit-list li:before {
    content: "\F633";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

/* Case Studies Section */
.case-studies {
    background-color: var(--white);
    padding-top: 120px;
}

.case-studies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.case-study-item {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--light-gray);
    min-width: 300px;
    flex-grow: 1;
    flex-basis: 0;
    max-width: calc(50% - 20px);
}

@media (min-width: 992px) {
    .case-study-item {
        max-width: calc(33.33% - 26.66px);
    }
}

.case-study-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.case-study-item p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.case-study-label {
    font-weight: 600;
    color: var(--dark);
}

.case-study-item .results {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--gray);
}

.case-study-item .results h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.case-study-item .results ul {
    list-style: none;
    padding: 0;
}

.case-study-item .results ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.case-study-item .results ul li:before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

.result-highlight {
    font-weight: 600;
}

/* Testimonials Section */
.temoignages {
    background-color: var(--white);
    padding-top: 120px;
}

.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-item {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--light-gray);
    min-width: 280px;
    flex-grow: 1;
    flex-basis: 0;
    max-width: calc(50% - 20px);
    position: relative;
}

@media (min-width: 992px) {
    .testimonial-item {
        max-width: calc(33.33% - 26.66px);
    }
}

.testimonial-item p:first-of-type {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-light);
    font-size: 2.5rem;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-item .client-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 5px;
}

.testimonial-item .client-title {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
    padding-top: 120px;
}

.faq-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.faq-carousel {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1.2s ease, opacity 1.2s ease;
    overflow-y: auto;
}

.faq-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.faq-slide.prev {
    transform: translateX(-100%);
}

.faq-slide h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-slide p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.faq-prev-btn, .faq-next-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 15px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-prev-btn:hover, .faq-next-btn:hover {
    background: var(--primary-light);
}

.faq-carousel-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 300px;
}

.faq-dot {
    width: 10px;
    height: 10px;
    background: var(--light-gray);
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-dot.active {
    background: var(--primary-color);
}

.value-grid {
    display: none;
}

/* Cible Section */
.cible {
    background-color: var(--light);
}

.cible-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cible-text {
    flex: 1;
}

.cible-text h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.checklist {
    list-style: none;
    margin-bottom: 40px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.checklist li:before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.cible-image {
    flex: 1;
}

/* Process Section */
.process {
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 8px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    z-index: 1;
}

.timeline-content {
    background-color: var(--light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--light) transparent transparent;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    background-color: var(--light);
    position: relative;
}

.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 185, 0, 0.05) 100%);
    z-index: 0;
}

.contact-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto; /* Center form when info box is below on mobile */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box,
.cta-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.info-box h3,
.cta-box h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.benefit-list li:before {
    content: "\F633";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-summary {
    flex: 2;
    min-width: 300px;
}

.footer-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.2rem;
    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(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-visual {
        width: 80%;
        max-width: 400px;
    }

    .cible-content {
        flex-direction: column;
        gap: 40px;
    }

    .cible-text {
        width: 100%;
        text-align: center;
    }

    .cible-text .checklist {
        text-align: left; /* Keep checklist left-aligned */
        max-width: 400px;
        margin: 0 auto 40px auto;
    }

    .cible-image {
        width: 80%;
        max-width: 400px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
        padding: 30px;
    }

    .contact-info {
         width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-summary,
    .footer-links {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        text-align: center;
    }

     .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
     }

     .footer-column ul {
         text-align: center;
     }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 80px 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark); /* Dark background for mobile menu */
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    .nav-menu.active {
        display: flex;
        max-height: 300px; /* Adjust based on content */
        opacity: 1;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-link {
        color: var(--white) !important; /* Override scrolled state */
        padding: 10px 0;
        display: block;
    }

    .nav-link:after {
        background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
    }

     .nav-link.cta-button {
         margin-top: 10px;
     }


    .menu-toggle {
        display: flex;
    }

    .menu-toggle .bar {
        background-color: var(--white); /* Default hamburger color */
    }

    #navbar.scrolled .menu-toggle .bar {
        background-color: var(--dark); /* Hamburger color when scrolled */
    }

    .hero-content p {
        font-size: 1rem;
    }

    .offre-description p {
        font-size: 1.2rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 40px;
    }

    .timeline-dot {
        left: 4px;
        width: 22px;
        height: 22px;
        border-width: 3px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content:before {
         left: -13px;
         border-width: 8px 13px 8px 0;
     }

    .case-study-item,
    .testimonial-item {
        max-width: 100%;
        flex-basis: 100%;
    }

    .faq-carousel {
        min-height: 400px; /* Adjust height for smaller screens */
    }

    .faq-dot {
         margin: 3px;
    }

    .faq-carousel-dots {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
     h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

     h3 {
        font-size: 1.3rem;
    }

     .cta-btn {
         padding: 12px 25px;
         font-size: 0.9rem;
     }

     .form-group input,
     .form-group select,
     .form-group textarea {
         padding: 10px 12px;
         font-size: 0.9rem;
     }

      .contact-form, .info-box, .cta-box {
         padding: 25px;
      }
      .footer-bottom {
         text-align: center;
         flex-direction: column;
      }
      .social-links {
          margin-top: 10px;
      }
}