/* ========================================
   Je Loue Ma Boutique - Clean Minimal Design
   Inspired by locationpure.com
   ======================================== */

:root {
    --primary: #0fa890;
    --primary-dark: #0d9680;
    --primary-light: #e8f8f5;
    --coral: #f57c52;
    --coral-dark: #e06a42;
    --white: #ffffff;
    --gray-bg: #f7f8fa;
    --text: #2d3436;
    --text-light: #636e72;
    --dark: #1a1a2e;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================================
   Typography
   ======================================== */

h1 { font-size: 3.2rem; font-weight: 700; line-height: 1.15; }
h2 { font-size: 2.2rem; font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.4rem; font-weight: 600; line-height: 1.35; color: var(--primary); }
h4 { font-size: 1.15rem; font-weight: 600; line-height: 1.4; }

.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 56px;
}

.section-title-light {
    text-align: center;
    color: var(--white);
    margin-bottom: 56px;
    font-size: 2.2rem;
    font-weight: 700;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,168,144,0.3);
}

.btn-submit {
    background: var(--coral);
    color: var(--white);
    width: 100%;
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,124,82,0.3);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    transition: gap 0.2s;
}

.btn-link:hover {
    gap: 14px;
}

/* ========================================
   Header / Nav
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-main {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s;
}

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

.nav-link:hover {
    color: var(--primary);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s, transform 0.2s;
}

.header-phone:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ========================================
   Hero
   ======================================== */

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    color: var(--text);
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: var(--primary);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-card {
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 48px 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-card-amount {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-card-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ========================================
   Trust Banner
   ======================================== */

.trust {
    background: var(--gray-bg);
    padding: 40px 0;
}

.trust-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-cities span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    opacity: 0.5;
    transition: opacity 0.2s;
}

.trust-cities span:hover {
    opacity: 1;
    color: var(--primary);
}

/* ========================================
   Concept
   ======================================== */

.concept {
    padding: 100px 0;
    background: var(--white);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.concept-block h3 {
    margin-bottom: 16px;
}

.concept-block p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* ========================================
   Avantages
   ======================================== */

.avantages {
    padding: 100px 0;
    background: var(--primary);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.avantage-item {
    text-align: center;
    color: var(--white);
}

.avantage-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}

.avantage-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--white);
}

.avantage-item p {
    font-size: 0.92rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* ========================================
   Steps
   ======================================== */

.steps {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    color: var(--text);
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Key Figures
   ======================================== */

.figures {
    padding: 80px 0;
    background: var(--gray-bg);
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.figure-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.figure-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Contact
   ======================================== */

.contact {
    padding: 100px 0;
    background: var(--primary);
}

.contact-sub {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-top: -40px;
    margin-bottom: 48px;
    font-size: 1.05rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--gray-bg);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,168,144,0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 24px;
}

.form-status.success {
    color: var(--primary);
}

.form-status.error {
    color: #e74c3c;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 0 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-company {
    display: block;
    font-size: 0.78rem;
    margin-top: 4px;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.4;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2, .section-title-light { font-size: 1.8rem; }

    .nav { display: none; }

    .menu-toggle {
        display: flex;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        border-bottom: 2px solid var(--primary);
    }

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

    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .concept-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .avantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .figures-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    .hero { padding: 130px 0 70px; }
    .hero-card { padding: 32px 40px; }
    .hero-card-amount { font-size: 3.5rem; }

    .avantages-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form { padding: 28px 20px; }

    .header-phone {
        display: none;
    }

    .section-title, .section-title-light {
        margin-bottom: 40px;
    }

    .concept, .avantages, .steps, .faq, .contact {
        padding: 70px 0;
    }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.6rem; }
}
