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

:root {
    --primary: #3b9dd9;
    --primary-dark: #2d8ac7;
    --primary-light: #e8f2fc;
    --coral: #FD8A24;
    --coral-dark: #E85815;
    --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(253,138,36,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 {
    position: relative;
    padding: 160px 0 100px;
    background: var(--white);
    overflow: hidden;
    min-height: 600px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -80px;
    width: 200px;
    height: 120%;
    background: var(--white);
    z-index: 2;
    border-radius: 0 60% 40% 0;
    transform: rotate(-3deg);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.3) 0%, transparent 30%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

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

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

.hero-text .highlight {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 6px;
    text-decoration-thickness: 4px;
    color: var(--primary);
}

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

.hero-card-inline {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 24px 36px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-card-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

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

/* ========================================
   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(--coral);
    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;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 280px;
        margin-top: 40px;
        border-radius: var(--radius);
        overflow: hidden;
    }

    .hero-image-wrapper::before {
        display: none;
    }

    .hero-image-wrapper::after {
        background: linear-gradient(to top, rgba(255,255,255,0.5) 0%, transparent 40%);
    }

    .hero { padding: 130px 0 0; min-height: auto; }

    .hero-card-inline {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .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; }
}

/* --- Social Proof Banner --- */
.social-proof {
    background: #3b9dd9;
    padding: 0;
    overflow: hidden;
}
.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
    gap: 40px;
}
.social-proof-text {
    flex: 1;
    padding: 60px 0;
}
.social-proof-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}
.social-proof-image {
    flex-shrink: 0;
    align-self: flex-end;
}
.social-proof-image img {
    display: block;
    height: 340px;
    width: auto;
    object-fit: cover;
    object-position: top;
}
@media (max-width: 768px) {
    .social-proof-inner { flex-direction: column; text-align: center; gap: 0; }
    .social-proof-text { padding: 40px 0 20px; }
    .social-proof-image img { height: 260px; }
}

/* --- Partenariat Avocat --- */
.partenariat {
    padding: 100px 0;
    background: var(--white);
}
.partenariat-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}
.partenariat-photo {
    position: relative;
}
.partenariat-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    display: block;
}
.partenariat-photo::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}
.partenariat-text .section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.partenariat-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}
.partenariat-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}
.partenariat-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.partenariat-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.partenariat-point > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}
.partenariat-point strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}
.partenariat-point p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .partenariat-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .partenariat-photo {
        max-width: 320px;
        margin: 0 auto;
    }
    .partenariat-photo::after { display: none; }
    .partenariat-text .section-title { text-align: center; }
    .partenariat-point { text-align: left; }
}

/* --- Negotium Logo --- */
.partenariat-logo {
    display: inline-flex;
    margin-bottom: 0;
    transition: opacity 0.2s ease;
}
.partenariat-logo img {
    height: 52px;
    width: auto;
}
.partenariat-logo:hover {
    opacity: 0.7;
}

/* --- Partenariat tag row + caption --- */
.partenariat-tag-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.partenariat-caption {
    text-align: center;
    margin-top: 16px;
}
.partenariat-caption strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    font-weight: 700;
}
.partenariat-caption span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}
@media (max-width: 992px) {
    .partenariat-tag-row { justify-content: center; }
}

/* --- CTA Orange Button --- */
.btn-cta-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #FD8A24, #E85815);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(253, 138, 36, 0.35);
    transition: all 0.3s ease;
    animation: ctaPulse 2.5s ease-in-out infinite;
}
.btn-cta-orange:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 36px rgba(253, 138, 36, 0.45);
    background: linear-gradient(135deg, #FD9B40, #FD8A24);
}
.btn-cta-orange i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}
.btn-cta-orange:hover i {
    transform: translateX(4px) rotate(-15deg);
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(253, 138, 36, 0.35); }
    50% { box-shadow: 0 8px 32px rgba(253, 138, 36, 0.55); }
}

/* --- Autocomplete Address --- */
.autocomplete-wrapper {
    position: relative;
}
.autocomplete-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--primary);
    border-top: none;
    border-radius: 0 0 8px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.autocomplete-list.open {
    display: block;
}
.autocomplete-list li {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.autocomplete-list li:last-child {
    border-bottom: none;
}
.autocomplete-list li:hover,
.autocomplete-list li.active {
    background: var(--primary-light);
}
.autocomplete-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.autocomplete-list li .addr-main {
    font-weight: 500;
}
.autocomplete-list li .addr-city {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* --- Photo Slots --- */
.label-opt { font-weight: 400; font-size: 0.82rem; color: var(--text-light); }
.photo-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.photo-slot {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}
.photo-slot.empty {
    border: 2px dashed #c0cfe0;
    background: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.photo-slot.empty:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}
.photo-slot.empty i {
    font-size: 1.4rem;
    color: #b0c4d8;
    transition: color 0.2s;
}
.photo-slot.empty:hover i {
    color: var(--primary);
}
.photo-slot.empty span {
    font-size: 0.72rem;
    color: #b0c4d8;
    font-weight: 500;
    transition: color 0.2s;
}
.photo-slot.empty:hover span {
    color: var(--primary);
}
.photo-slot.filled {
    border: 2px solid var(--primary);
}
.photo-slot.filled img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo-slot .slot-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s;
}
.photo-slot.filled:hover .slot-remove {
    opacity: 1;
}
.photo-slot .slot-remove:hover {
    background: #e74c3c;
}
@media (max-width: 768px) {
    .photo-slots { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .photo-slots { grid-template-columns: repeat(2, 1fr); }
}

/* --- Form Success Message --- */
.form-success-msg {
    text-align: center;
    padding: 60px 20px;
}
.form-success-msg i {
    font-size: 4rem;
    color: var(--coral);
    margin-bottom: 20px;
    display: block;
}
.form-success-msg h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.form-success-msg p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
.form-success-msg .form-success-delay {
    margin-top: 16px;
    font-size: 1.05rem;
    color: var(--text);
    background: rgba(255,255,255,0.7);
    padding: 16px 24px;
    border-radius: 10px;
    border-left: 4px solid var(--coral);
    display: inline-block;
}
.form-success-msg .form-success-delay strong {
    color: var(--coral);
    font-weight: 700;
}

/* --- Form Success Message V2 --- */
.form-success-container {
    padding: 20px 0;
}
.form-success-msg {
    text-align: center;
    padding: 50px 20px;
}
.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.success-text {
    font-size: 1.15rem;
    color: #2d3436;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
}
.success-text strong {
    color: var(--coral);
    font-weight: 700;
}
.chrono-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.chrono-circle {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chrono-circle svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.chrono-bg {
    fill: none;
    stroke: #e8f8f0;
    stroke-width: 6;
}
.chrono-progress {
    fill: none;
    stroke: var(--coral);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 276.5;
    stroke-dashoffset: 276.5;
    animation: chronoSpin 3s ease-in-out infinite;
}
.chrono-circle i {
    font-size: 2.2rem;
    color: var(--coral);
    position: relative;
    z-index: 2;
    animation: chronoPulse 2s ease-in-out infinite;
}
.chrono-label {
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 500;
    margin: 0;
}
@keyframes chronoSpin {
    0% { stroke-dashoffset: 276.5; }
    50% { stroke-dashoffset: 69; }
    100% { stroke-dashoffset: 276.5; }
}
@keyframes chronoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- Documents Upload --- */
.docs-hint {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 14px;
    font-style: italic;
    line-height: 1.5;
}
.btn-add-doc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px dashed #c0cfe0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}
.btn-add-doc:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fdf2f0;
}
.btn-add-doc i {
    font-size: 1.1rem;
    color: #e74c3c;
}
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.doc-list:empty {
    margin-bottom: 0;
}
.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.7);
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 0.88rem;
}
.doc-item i.fa-file-pdf {
    font-size: 1.3rem;
    color: #e74c3c;
    flex-shrink: 0;
}
.doc-item .doc-name {
    flex: 1;
    color: var(--text);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.doc-item .doc-size {
    font-size: 0.78rem;
    color: var(--text-light);
    flex-shrink: 0;
}
.doc-item .doc-remove {
    width: 26px;
    height: 26px;
    background: none;
    border: 1px solid #e0e6ed;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-light);
    transition: all 0.2s;
    flex-shrink: 0;
}
.doc-item .doc-remove:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

/* --- Success Card V3 --- */
.success-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
}
.success-img-banner {
    margin: -48px -40px 0;
    width: calc(100% + 80px);
    height: 120px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.success-img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}
.success-body {
    padding-top: 32px;
}
.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--coral);
    margin: 0 0 16px;
    letter-spacing: 3px;
}
.success-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), #FD9B40);
    border-radius: 4px;
    margin: 0 auto 24px;
}
.success-text {
    font-size: 1.1rem;
    color: #2d3436;
    line-height: 1.8;
    margin: 0 0 36px;
}
.success-text strong {
    color: var(--coral);
    font-size: 1.2rem;
}

/* --- Hourglass Animation --- */
.hourglass-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.hourglass {
    width: 50px;
    height: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hourglass::before,
.hourglass::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #f39c12;
    border-radius: 3px;
}
.hourglass::before { top: 0; }
.hourglass::after { bottom: 0; }
.sand-top {
    width: 40px;
    height: 32px;
    margin-top: 3px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
}
.sand-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #f5c842;
    animation: sandDrain 4s ease-in-out infinite;
}
.sand-stream {
    width: 2px;
    height: 12px;
    background: #f5c842;
    animation: streamFlow 4s ease-in-out infinite;
}
.sand-bottom {
    width: 40px;
    height: 32px;
    margin-bottom: 3px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
}
.sand-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: #f5c842;
    animation: sandFill 4s ease-in-out infinite;
}
.hourglass-label {
    font-size: 0.88rem;
    color: var(--coral);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

@keyframes sandDrain {
    0% { height: 100%; }
    45% { height: 0%; }
    55% { height: 0%; }
    100% { height: 100%; }
}
@keyframes streamFlow {
    0%, 45% { opacity: 1; }
    50%, 55% { opacity: 0; }
    60%, 100% { opacity: 1; }
}
@keyframes sandFill {
    0% { height: 0%; }
    45% { height: 100%; }
    55% { height: 100%; }
    100% { height: 0%; }
}

@media (max-width: 768px) {
    .success-card { padding: 36px 24px; }
    .success-title { font-size: 2.4rem; }
    .success-img-banner { height: 180px; margin: -36px -24px 0; width: calc(100% + 48px); }
}

/* --- Hourglass Image --- */
.hourglass-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--coral);
    box-shadow: 0 4px 16px rgba(253, 138, 36, 0.2);
}

/* --- Logo Image --- */
.logo-img {
    height: 70px;
    width: auto;
    display: block;
}
.footer-logo-img {
    height: 264px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .logo-img { height: 54px; }
    .footer-logo-img { height: 176px; }
}

/* --- Header V2: Big centered logo + nav below --- */
.header-inner-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px 0;
}
.header-logo-center {
    text-align: center;
    margin-bottom: 8px;
}
.logo-img-big {
    height: 320px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.header-nav-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}
.header-nav-row .nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header.scrolled .logo-img-big {
    height: 100px;
    transition: height 0.3s ease;
}
.logo-img-big {
    transition: height 0.3s ease;
}

@media (max-width: 992px) {
    .logo-img-big { height: 220px; }
    .header-nav-row { display: none; }
    .header-inner-v2 { padding: 10px 16px; flex-direction: row; justify-content: space-between; }
    .header-logo-center { margin-bottom: 0; }
    .header.scrolled .logo-img-big { height: 70px; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        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);
    }
}

/* --- Mobile fixes for hero --- */
@media (max-width: 640px) {
    .hero-card-inline {
        padding: 16px 24px;
        gap: 12px;
    }
    .hero-card-amount {
        font-size: 2.8rem !important;
        white-space: nowrap;
    }
    .hero-card-label {
        font-size: 0.82rem;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .hero-image-wrapper {
        height: 220px;
    }
}
