:root {
    --color-dark-purple: #2e1a47;
    --color-accent-purple: #a45ee5;
    --color-white: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --header-min-height: 100vh;
    /* or 800px min */

    /* --- Process Section Variables --- */
    --process-primary-color: #31185a;
    --process-bg-dark: #121212;
    --process-text-gray-light: #4b5563;
    --process-text-gray-dark: #9ca3af;
    --process-card-bg: rgba(237, 233, 254, 0.7);
    --process-card-border: #ddd6fe;
    --process-card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --process-font-main: 'Lexend', sans-serif;

    /* Variables pour les nouvelles sections */
    --dark-purple-promo: #2A0E45;
    --main-purple-promo: #4A148C;
    --accent-purple-promo: #7B2CBF;
    --light-lavender-promo: #F3EBF9;
    --text-grey-promo: #555555;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-white);
    background-color: #ffffff;
    /* Corrected to white */
    overflow-x: hidden;
}

/* Main Header Container */
.main-header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    /* Allow search bar to overlap */
    /* Ensure it handles small heights gracefully if needed, but 100vh is requested */
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg_full.jpg');
    /* background-color: var(--color-dark-purple); */
    /* Fallback */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Overlay for readability if necessary, simpler prompt didn't ask but good practice. 
   Prompt requested "Forme organique... translucide au centre". 
   Let's keep the bg clear but maybe add a slight shim if text is unreadable, 
   but prompt implies clean window view. */

/* Top Bar */
.top-bar {
    background-color: var(--color-dark-purple);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.9rem;
    z-index: 10;
}

.top-bar-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    z-index: 10;
}

.nav-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.logo-dot {
    color: var(--color-accent-purple);
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark-purple);
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-accent-purple);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--color-dark-purple);
    color: var(--color-dark-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--color-accent-purple);
    border-color: var(--color-accent-purple);
}

.btn-login {
    background-color: var(--color-dark-purple);
    color: var(--color-white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-main);
}

.btn-login:hover {
    background-color: #1a0f29;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40vh;
    /* Pushed down slightly from center */
    position: relative;
    text-align: center;
}

.hero-center-visual {
    position: relative;
    width: 50vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align bottom of image */
    margin-bottom: 2rem;
    margin-top: 100px;
    /* Push down to avoid navbar overlap */
    z-index: 1;
    /* Ensure behind navbar if overlap happens, but margin should prevent it */
}



.woman-img {
    height: 110%;
    /* Slightly larger to pop out top if we weren't clipping */
    object-fit: cover;
    /* Since we are clipping with overflow hidden on blob, we just need it to fit nice */
    transform: translateY(0);
    /* Reset transform */
    border-radius: 20px;
    /* Soften edges of the rectangular image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Add depth */
}

.hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 0;
    /* Remove negative overlap */
    z-index: 2;
    position: relative;
    max-width: 90%;
    /* Ensure doesn't hit edges */
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Search Bar */
.search-bar-container {
    position: absolute;
    bottom: 40px;
    /* Straddle the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 20;
}

.search-bar {
    background: white;
    border: 1px solid var(--color-accent-purple);
    /* Added border as requested */
    border-radius: 50px;
    /* Pill shape */
    padding: 10px 10px 10px 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-field i {
    color: #333;
    font-size: 1.2rem;
}

.search-field input {
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    width: 100%;
}

.search-field input::placeholder {
    color: #333;
    opacity: 1;
    font-weight: 700;
    font-size: 0.9rem;
}

.search-field input:focus {
    /* Visual focus state as requested */
    color: var(--color-accent-purple);
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #ddd;
    margin: 0 20px;
}

.btn-search {
    background: linear-gradient(180deg, var(--color-accent-purple), var(--color-dark-purple));
    color: white;
    border: none;
    padding: 0 40px;
    height: 100%;
    height: 60px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    font-family: var(--font-main);
    white-space: nowrap;
}

.btn-search:hover {
    background-color: #8e44d3;
    transform: translateY(-2px);
}

/* --- Promotional Wrapper (New) --- */
.promotional-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;

    /* Le bandeau commence à 200, le milieu est vers 425 */
}

/* --- Arrière-plan SVG --- */
.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

svg {
    width: 100%;
    height: 1800px;
    /* Hauteur estimée */
}

/* --- Section Hero --- */
.hero-section {
    position: relative;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

.top-bar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Set to 100% to ensure equal space top and bottom based on section padding */
    background-color: var(--dark-purple-promo);
    z-index: -2;
}

.floating-card {
    background: var(--color-white);
    width: 90%;
    max-width: 650px;
    border-radius: 60px;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-col .logo {
    font-weight: 800;
    font-size: 2rem;
    color: var(--dark-purple-promo);
    line-height: 1;
}

.brand-col .slogan {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--dark-purple-promo);
    line-height: 1.2;
    margin-bottom: 10px;
}

.click-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 10px;
}

.click-icon i {
    font-size: 1.8rem;
    color: var(--accent-purple-promo);
}

.click-icon .mouse-cursor {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #333;
    font-size: 1.3rem;
}

.info-col ul {
    list-style: none;
    margin-bottom: 15px;
}

.info-col li {
    font-size: 0.8rem;
    color: var(--text-grey-promo);
    margin-bottom: 4px;
}

.btn-dark {
    background-color: var(--dark-purple-promo);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-dark:hover {
    transform: scale(1.05);
}

/* --- Section Témoignages --- */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.section-title {
    color: var(--dark-purple-promo);
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.review-card {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-purple-promo);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.card-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Comme sur la capture */
}

.card-content .text p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.card-content .text .author {
    font-size: 0.75rem;
    font-weight: 800;
    color: black;
}

.dots-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 30px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
}

.dot.active {
    background-color: var(--accent-purple-promo);
}

/* --- Section Reverse / Départ --- */
.reverse-flow {
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
}

.sub-heading {
    font-size: 1.8rem;
    color: var(--dark-purple-promo);
    margin-bottom: 60px;
    font-weight: 800;
}

.sub-heading .highlight {
    color: var(--accent-purple-promo);
}

.bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    gap: 50px;
    position: relative;
}

/* Cercle de fond lavande en bas */
.bottom-container::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 500px;
    height: 500px;
    background-color: var(--light-lavender-promo);
    border-radius: 50%;
    z-index: -1;
}

.content-left {
    flex: 1;
}

.badge-purple {
    background-color: var(--accent-purple-promo);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.big-title {
    font-size: 3rem;
    line-height: 1;
    color: var(--dark-purple-promo);
    margin: 20px 0;
    font-weight: 900;
    text-transform: uppercase;
}

.description {
    color: var(--text-grey-promo);
    margin-bottom: 30px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-purple-promo);
    color: var(--dark-purple-promo);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-purple-promo);
    color: white;
}

.image-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.person-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    /* Arrondi car image placeholder carrée */
    /* Idéalement, utilisez un PNG détouré ici et enlevez le border-radius */
    border-bottom: 5px solid transparent;
}

.stamp-free {
    position: absolute;
    top: 50px;
    right: 20px;
    border: 3px solid var(--accent-purple-promo);
    color: var(--accent-purple-promo);
    padding: 5px 10px;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-10deg);
    text-align: center;
    line-height: 1;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
}

.floating-heart {
    position: absolute;
    bottom: 50px;
    left: 20px;
    background: #FF4D4D;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Responsivité Mobile */



/* Responsive Constraints: D1, D2, D3 */
/* D2: 1366x768 & D3: 1280x800 handled largely by vh/vw/clamp */

@media (max-width: 1366px) {
    .hero-center-visual {
        width: 45vw;
        height: 60vh;
        /* Give more height to image area on shorter screens appropriately */
        max-height: 500px;
    }

    .blob-shape {
        border-radius: 48% 52% 57% 43% / 39% 49% 51% 61%;
    }

    .search-bar {
        height: 70px;
        padding-left: 30px;
    }

    .btn-search {
        height: 50px;
        padding: 0 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1280px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 4rem;
        /* Specific check for 1280px */
    }

    .search-bar-container {
        width: 95%;
    }

    .search-field input {
        font-size: 1rem;
    }
}

/* Responsive adjustment for 1448px x 720px and 1366px x 768px (Laptop Screens) */
@media (max-width: 1500px) and (max-height: 880px) {
    .hero-content {
        padding-top: 15vh;
        justify-content: center;
    }

    .hero-center-visual {
        height: 45vh;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Footer styles moved to footer.css */

/* --- Process Section Variables --- */
/* Moved to top :root */

/* --- Layout --- */
.process-wrapper {
    background-color: var(--color-white);
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.process-container {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Typography Hero --- */
.process-main-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--process-primary-color);
    font-family: var(--process-font-main);
}

.process-main-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--process-text-gray-light);
    font-family: var(--process-font-main);
}

/* --- Steps Section --- */
.process-steps-wrapper {
    margin-top: 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* --- Individual Step Components --- */
.process-step-container {
    position: relative;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

/* Rotations spécifiques */
.process-rotate-1 {
    transform: rotate(-3deg);
}

.process-rotate-2 {
    transform: rotate(-2deg);
}

.process-rotate-3 {
    transform: rotate(-3deg);
}

/* Badge (Numéro) */
.process-step-badge {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background-color: var(--process-primary-color);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--process-font-main);
}

.process-badge-center-mobile {
    left: 50%;
    transform: translateX(-50%);
}

/* Carte */
.process-step-card {
    /* background-color: var(--process-card-bg); Removed in favor of specific colors below */
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--process-card-shadow);
    border: 1px solid var(--process-card-border);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

/* Couleurs spécifiques des cartes (1 et 3 Violet, 2 Bleu-gris léger) */
.process-step-container:nth-child(1) .process-step-card,
.process-step-container:nth-child(3) .process-step-card {
    background-color: #EDE9FE;
    /* Violet très clair */
    border-color: #DDD6FE;
}

.process-step-container:nth-child(2) .process-step-card {
    background-color: #EFF6FF;
    /* Bleu très clair */
    border-color: #BFDBFE;
}

/* Contenu de la carte */
.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--process-primary-color);
    width: 30%;
    text-align: left;
    font-family: var(--process-font-main);
    line-height: 1.2;
}

.process-step-desc {
    font-size: 0.8rem;
    color: #374151;
    width: 70%;
    text-align: left;
    font-family: var(--process-font-main);
    line-height: 1.4;
}

/* --- Footer --- */
.process-footer-text {
    margin-top: 5rem;
    font-size: 1.125rem;
}

/* --- End of Styles --- */
.teaser-section {
    padding: 0 1rem 100px;
    text-align: center;
}

.teaser-title {
    font-family: var(--process-font-main);
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.teaser-highlight {
    color: var(--process-primary-color);
}

/* =========================================
   FOOTER STYLES (Merged)
   ========================================= */

/* Scoped variables for footer to avoid global conflicts */
.footer-section {
    --bg-color: #321648;
    /* Couleur de fond principale */
    --bg-dark: #1E0B2B;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --border-light: rgba(255, 255, 255, 0.2);
    --input-underline: rgba(255, 255, 255, 0.4);
    --font-main: 'Montserrat', sans-serif;
}

/* --- Layout Principal --- */
.footer-section {
    position: relative;
    background-color: var(--bg-color);
    min-height: 100vh;
    padding: 3rem 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- Formes d'arrière-plan (Background Shapes) --- */
.bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.circle-outline {
    top: -200px;
    left: -300px;
    width: 1100px;
    height: 1100px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
}

.bottom-blur {
    bottom: -150px;
    right: -100px;
    width: 800px;
    height: 600px;
    background: rgba(45, 15, 70, 0.6);
    border-radius: 100% 0 0 0;
    transform: rotate(-10deg);
    filter: blur(40px);
}

.dashed-arrow {
    position: absolute;
    top: 50px;
    right: 25%;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 10;
}

.dashed-path {
    fill: none;
    stroke: #6a1b9a;
    stroke-width: 2;
    stroke-dasharray: 10, 10;
}

.arrow-head {
    fill: #6a1b9a;
}

/* --- Grille Principale (Responsive) --- */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2.5rem;
}

.main-grid {
    /* Proportions similaires aux cols de Tailwind (5 / 3 / 4) */
    grid-template-columns: 5fr 3fr 4fr;
}

.dashed-arrow {
    display: block;
    /* Visible seulement sur grand écran */
}



/* --- Colonne 1 : Logo & Formulaire --- */
.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.logo {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1;
}

.logo span {
    font-size: 0.75rem;
    vertical-align: super;
    margin-left: 0.25rem;
}

.tagline {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.divider-vertical {
    height: 3rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* Badge Hexagonal */
.hexagon-wrapper {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-badge {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eee 0%, #fff 100%);
    color: var(--bg-color);
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Création de la forme hexagone */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-badge span {
    display: block;
    text-transform: uppercase;
    line-height: 1.2;
}

.hexagon-badge .highlight {
    background-color: var(--bg-color);
    color: white;
    padding: 2px 4px;
    width: 100%;
    margin: 2px 0;
}

/* Carte de Contact */
.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-card h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Effet Floating Label (Animation des inputs) */
.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--input-underline);
    padding: 0.75rem 0;
    color: white;
    font-size: 0.875rem;
    outline: none;
    font-family: inherit;
}

.input-group textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.625rem;
    resize: none;
}

.input-group label {
    position: absolute;
    top: 0.75rem;
    left: 0;
    font-size: 0.875rem;
    color: var(--text-gray);
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Ajustement label textarea */
.input-group textarea+label {
    left: 0.75rem;
}

/* Logique de l'animation du label */
.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    transform: translateY(-1.5rem) scale(0.75);
    transform-origin: left top;
    color: white;
}

.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
    transform: translateY(-2rem) scale(0.75);
    transform-origin: left top;
}

.mt-medium {
    margin-top: 1.5rem;
}

.form-action {
    margin-top: 1rem;
    text-align: center;
    /* Pour centrer le bouton dans le conteneur */
}

.btn-primary {
    background-color: white;
    color: var(--bg-color);
    font-weight: 500;
    border: none;
    border-radius: 9999px;
    padding: 0.625rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
    /* S'assure qu'il respecte le text-align du parent */
}

.btn-primary:hover {
    background-color: #f3f4f6;
}

/* --- Colonne 2 : Navigation --- */
.col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-center {
    align-items: flex-end;
    /* Aligné à droite sur desktop */
    padding-top: 8rem;
    text-align: right;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--text-gray);
}

/* --- Colonne 3 : Newsletter --- */
.col-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.col-right {
    align-items: flex-end;
    /* Aligné à droite sur desktop */
}

.newsletter-box {
    width: 100%;
    max-width: 24rem;
}

.newsletter-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-box h3 {
    text-align: right;
}

.newsletter-form {
    position: relative;
    width: 100%;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3.5rem;
    /* Espace pour le bouton */
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    outline: none;
    color: #111827;
}

.newsletter-form button {
    position: absolute;
    right: 0.625rem;
    bottom: 0.625rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: black;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background-color: #f3f4f6;
}

/* --- Footer Bottom (Socials & Copyright) --- */
.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom {
    flex-direction: row;
    justify-content: space-between;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: white;
    color: var(--bg-color);
    transform: scale(1.1);
}

/* Mentions Légales */
.legal-links {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.legal-links a {
    color: inherit;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
    color: white;
}

.separator {
    display: none;
    margin: 0 0.5rem;
}

.legal-links {
    flex-direction: row;
    gap: 0;
}

.separator {
    display: inline;
}