
/* === INDEX === */

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

        :root {
            --navy: #2D2D2D;
            --dark-navy: #1D1D1D;
            --teal: #E20074;
            --teal-light: #C5006A;
            --gold: #E20074;
            --light-gold: #FF80BF;
            --cream: #F5F5F5;
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #6B6B6B;
            --border: #E0E0E0;
            --green: #2d7a3e;
            --accent: #E20074;
            --gray-100: #f4f6fb;
        }

        * { box-sizing: border-box; }
        
        html, body { overflow-x: hidden; max-width: 100vw; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--gray-100);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        /* HEADER */
        .header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-top { background: #F5F5F5; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
        .header-top-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
        .header-contact { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .header-top-right { display: flex; align-items: center; gap: 20px; }
        .lang-switch { display: flex; gap: 2px; background: var(--border); border-radius: 4px; overflow: hidden; }
        .lang-btn { background: none; border: none; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--text-gray); cursor: pointer; transition: all 0.2s; }
        .lang-btn.active { background: var(--gold); color: white; }
        .btn-login { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 6px 18px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; }
        .btn-login:hover { background: var(--gold); color: var(--white); }
        .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }
        .logo-accent { color: #E20074; }
        .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; transition: color 0.3s; }
        .nav-links a:hover { color: var(--gold); }
        .btn-primary { background: var(--gold); color: #ffffff; padding: 12px 32px; border: none; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; }
        .btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(226,0,116,0.3); }

        /* HERO */
        .hero { background: linear-gradient(165deg, rgba(226,0,116,0.92) 0%, rgba(200,0,100,0.6) 35%, rgba(255,255,255,0.3) 65%, #ffffff 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=1080&fit=crop'); background-size: cover; background-position: center; min-height: 420px; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding-bottom: 0; }
        .hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px); }
        .hero-band { background: #0f0f14; padding: 20px 40px; width: 100%; display: flex; justify-content: center; gap: 48px; border-top: 3px solid #E20074; }
        .hero-band-item { display: flex; align-items: center; gap: 12px; color: #fff; }
        .hero-band-icon { width: 44px; height: 44px; background: #E20074; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
        .hero-band-text { font-size: 14px; font-weight: 600; }
        .hero-band-sub { font-size: 12px; color: rgba(255,255,255,0.6); }
        .hero-inner { max-width: 1400px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: center; width: 100%; position: relative; z-index: 1; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; margin-bottom: 24px; }
        .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #E20074; }
        .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
        .hero-title-accent { color: var(--white); font-style: italic; }
        .hero-desc { font-size: 15px; color: rgba(255,255,255,0.78); max-width: 500px; margin-bottom: 36px; line-height: 1.7; font-weight: 300; }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-hero-primary { background: #E20074; color: #ffffff; padding: 14px 32px; border: none; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
        .btn-hero-primary:hover { background: var(--light-gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,58,0.35); }
        .btn-hero-outline { background: transparent; color: var(--white); padding: 13px 28px; border: 1.5px solid rgba(255,255,255,0.5); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
        .btn-hero-outline:hover { border-color: #E20074; color: #E20074; }

        /* Hero map */
        .hero-map-widget { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); padding: 6px; position: relative; }
        .hero-map-inner { background: #d9e8e0; height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; }
        .map-grid-bg { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(100,150,120,0.3) 39px, rgba(100,150,120,0.3) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(100,150,120,0.3) 39px, rgba(100,150,120,0.3) 40px); }
        .map-marker { position: relative; z-index: 2; text-align: center; }
        .map-marker-icon { font-size: 36px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); animation: bounce 2s infinite; }
        @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
        .map-marker-label { background: #1D1D1D; color: var(--white); font-size: 12px; font-weight: 600; padding: 5px 14px; margin-top: 8px; display: inline-block; }
        .map-overlay-badge { position: absolute; top: 14px; left: 14px; background: var(--white); border: 1px solid var(--border); padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--text-dark); z-index: 3; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        .map-dot-green { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
        .map-dot-blue { width: 8px; height: 8px; border-radius: 50%; background: #2563eb; }

        /* WAVE */
        .wave-divider { background: linear-gradient(135deg, #E20074 0%, #9E0057 55%, #6B0039 100%); line-height: 0; }
        .wave-divider svg { display: block; width: 100%; }

        /* STATS */
        .stats-section { padding: 60px 0; background: var(--white); }
        .stats-section .container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
        .stat-item { padding: 24px; }
        .stat-number { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
        .stat-label { font-size: 14px; color: #6b7280; font-weight: 500; }

        /* SECTION COMMONS */
        .section-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #E20074; margin-bottom: 14px; }
        .section-tag::before { content: '★'; font-size: 10px; }
        .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
        .section-sub { font-size: 15px; color: var(--text-gray); max-width: 540px; margin: 0 auto; line-height: 1.7; }
        .section-head { text-align: center; margin-bottom: 48px; }

        /* FEATURED */
        .featured-section { background: var(--cream); padding: 80px 40px; }
        .featured-inner { max-width: 1400px; margin: 0 auto; }
        .prop-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 48px; }
        .prop-card { background: var(--white); border: 1px solid var(--border); transition: all 0.35s; position: relative; overflow: hidden; text-decoration: none; color: var(--text-dark); display: block; border-radius: 12px; }
        .prop-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.12); transform: translateY(-5px); border-color: var(--gold); }
        .prop-card:hover .prop-img { transform: scale(1.05); }
        .prop-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
        .prop-badge-status { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; }
        .status-available { background: var(--green); color: var(--white); }
        .status-reserved { background: var(--navy); color: var(--white); }
        .status-sold { background: #c41e3a; color: var(--white); }
        .prop-badge-market { position: absolute; top: 16px; left: 16px; background: rgba(29,29,29,0.92); color: var(--white); font-size: 11px; font-weight: 700; padding: 5px 12px; letter-spacing: 0.5px; backdrop-filter: blur(6px); }
        .prop-content { padding: 24px 24px 20px; }
        .prop-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 5px; }
        .prop-loc { font-size: 12px; color: var(--text-gray); display: flex; align-items: center; gap: 5px; margin-bottom: 16px; }
        .prop-bottom { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
        .prop-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #E20074; }
        .prop-acres { font-size: 12px; color: var(--text-gray); font-weight: 600; }
        .btn-see-all { display: block; width: fit-content; margin: 0 auto; background: #E20074; color: #ffffff; padding: 15px 44px; border: none; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; text-decoration: none; }
        .btn-see-all:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(4,21,40,0.25); }

        /* SERVICES */
        .services-section { background: var(--white); padding: 80px 40px; }
        .services-inner { max-width: 1400px; margin: 0 auto; }
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .service-card { background: var(--white); border-radius: 24px; box-shadow: 0 4px 20px rgba(10,24,52,0.06); border: 1px solid transparent; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; position: relative; overflow: hidden; }
        .service-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 0 0 4px 4px; opacity: 0; transition: opacity 0.3s ease; z-index: 1; }
        .service-card:hover { transform: translateY(-8px); border-color: rgba(226,0,116,0.15); box-shadow: 0 40px 100px rgba(10,24,52,0.12); }
        .service-card:hover::before { opacity: 1; }
        .service-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
        .service-card:hover img { transform: scale(1.05); }
        .service-card h3 { font-size: 20px; margin: 20px 0 12px; line-height: 1.2; }
        .service-card p { color: #5e677f; font-size: 14px; line-height: 1.8; padding: 0 24px 24px; }

        /* HOW IT WORKS */
        .how-it-works { background: var(--gray-100); padding: 80px 40px; }
        .how-it-works h2 { text-align: center; font-size: clamp(32px, 4vw, 48px); margin-bottom: 48px; font-family: 'Playfair Display', serif; }
        .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; max-width: 1400px; margin: 0 auto; }
        .steps-grid::before { content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: var(--border); z-index: 0; }
        .step-card { background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: center; position: relative; z-index: 1; }
        .step-number { width: auto; height: auto; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; background: transparent; color: var(--black); transition: all 0.3s ease; }
        .step-number svg { width: 64px; height: 64px; }
        .step-number svg .accent { stroke: var(--accent); stroke-width: 2; stroke-linecap: round; }
        .step-card:hover .step-number { color: var(--accent); }
        .step-card h3 { font-size: 18px; margin-bottom: 12px; }
        .step-card p { font-size: 14px; color: #6b7280; }

        /* MAP SECTION */
        .map-section { padding: 72px 40px 60px; }
        .map-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; max-width: 1400px; margin: 0 auto; }
        .map-card, .table-card { background: var(--white); border-radius: 28px; padding: 28px; box-shadow: 0 28px 80px rgba(10,24,52,0.08); border: 1px solid rgba(13,19,33,0.04); transition: all 0.3s ease; }
        .map-card:hover, .table-card:hover { box-shadow: 0 40px 100px rgba(10,24,52,0.12); border-color: rgba(226,0,116,0.1); }
        .map-card { min-height: 520px; display: flex; flex-direction: column; gap: 20px; }
        .map-card h3, .table-card h3 { margin-bottom: 20px; font-size: 22px; font-family: 'Playfair Display', serif; }
        .map-preview { position: relative; border-radius: 22px; overflow: hidden; height: 360px; background: #e7effd; }
        .map-preview img { width: 100%; height: 100%; object-fit: cover; }
        .map-pin { position: absolute; top: 24px; left: 24px; background: var(--white); color: var(--black); padding: 10px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; box-shadow: 0 14px 30px rgba(10,24,52,0.14); display: flex; align-items: center; gap: 6px; }
        .table-card table { width: 100%; border-collapse: collapse; }
        .table-card th, .table-card td { text-align: left; padding: 16px 12px; border-bottom: 1px solid #eef1f6; font-size: 14px; color: #4b5563; }
        .table-card th { color: #6b7280; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
        .table-card tbody tr:hover { background: #f6f9ff; }
        .status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
        .status-pill-avail { background: rgba(34,197,94,0.1); color: #16a34a; }
        .status-pill-sold { background: rgba(220,38,38,0.1); color: #b91c1c; }
        .status-pill-reserved { background: rgba(13,110,253,0.1); color: #0b61d3; }

        /* TESTIMONIALS */
        .testimonials-section { padding: 80px 40px; background: var(--white); }
        .testimonials-section .container { max-width: 1360px; margin: 0 auto; padding: 0 32px; text-align: center; }
        .testimonials-section h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 48px; font-family: 'Playfair Display', serif; text-align: center; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; text-align: left; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1400px; margin: 40px auto 0; }
        .testimonial-card { background: var(--white); border-radius: 28px; padding: 32px; box-shadow: 0 4px 20px rgba(10,24,52,0.06); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 40px 100px rgba(10,24,52,0.12); }
        .testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: 'Playfair Display', serif; font-size: 80px; color: rgba(234,10,142,0.08); line-height: 1; }
        .testimonial-text { font-size: 16px; line-height: 1.8; color: #5f6774; margin-bottom: 20px; font-style: italic; }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
        .testimonial-author strong { display: block; font-size: 15px; }
        .testimonial-author span { font-size: 13px; color: #7b8695; }

        /* CTA */
        .cta-section { background: linear-gradient(135deg, #E20074 0%, #9E0057 55%, #6B0039 100%); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
        .cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px); }
        .cta-inner { max-width: 660px; margin: 0 auto; position: relative; }
        .cta-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
        .cta-sub { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
        .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-cta-solid { background: var(--white); color: #E20074; padding: 14px 36px; border: none; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; }
        .btn-cta-solid:hover { background: var(--light-gold); transform: translateY(-2px); }
        .btn-cta-outline { background: transparent; color: var(--white); padding: 13px 36px; border: 1.5px solid rgba(255,255,255,0.5); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
        .btn-cta-outline:hover { border-color: var(--white); color: var(--white); }

        /* ACCOMPANIMENT */
        .services-accompagnement { padding: 80px 40px; background: var(--white); text-align: center; }
        .services-accompagnement h2 { text-align: center; font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Playfair Display', serif; color: var(--text-dark); }
        .services-accompagnement h2 span { color: var(--accent); }
        .services-accompagnement > .container > p { text-align: center; color: #6b7280; font-size: 17px; margin-bottom: 48px; }
        .services-accompagnement-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; max-width: 1400px; margin: 0 auto; text-align: center; }
        .services-accompagnement-block { display: flex; flex-direction: column; align-items: center; padding: 32px 16px; border-radius: 12px; transition: all 0.3s ease; text-decoration: none; }
        .services-accompagnement-block:hover { transform: translateY(-8px); }
        .services-accompagnement-icon { width: auto; height: auto; display: flex; align-items: center; justify-content: center; background: transparent; margin-bottom: 20px; color: var(--black); transition: all 0.3s ease; }
        .services-accompagnement-icon svg { width: 64px; height: 64px; }
        .services-accompagnement-block:hover .services-accompagnement-icon { color: var(--accent); }
        .services-accompagnement-icon .accent { stroke: var(--accent); stroke-width: 2; }
        .services-accompagnement-block h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--black); letter-spacing: 0.5px; text-transform: uppercase; }
        .services-accompagnement-block:hover h3 { color: var(--accent); }
        .services-accompagnement-block span { font-size: 13px; font-weight: 600; color: #9ca3af; }

        /* WHY */
        .why-section { background: var(--white); padding: 80px 40px; }
        .why-inner { max-width: 1400px; margin: 0 auto; }
        .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .why-card { background: var(--white); border: 1px solid var(--border); padding: 28px 24px 24px; transition: all 0.3s; position: relative; overflow: hidden; border-radius: 12px; }
        .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
        .why-card.c1::before { background: #E20074; }
        .why-card.c2::before { background: #9900CC; }
        .why-card.c3::before { background: #E20074; }
        .why-card.c4::before { background: #FF4AA0; }
        .why-card:hover { box-shadow: 0 8px 28px rgba(226,0,116,0.12); transform: translateY(-3px); }
        .why-icon { font-size: 24px; margin-bottom: 14px; display: block; }
        .why-title { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 10px; }
        .why-desc { font-size: 13px; color: var(--text-gray); line-height: 1.65; }

        /* FOOTER */
        .footer { background: var(--dark-navy); color: var(--white); padding: 60px 40px 40px; }
        .footer-desktop-grid { max-width: 1400px; margin: 0 auto 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
        .footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; display: block; }
        .footer-company p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }
        .footer-links h4 { color: #E20074; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
        .footer-links ul { list-style: none; }
        .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; transition: color 0.2s; display: block; }
        .footer-links a:hover { color: #E20074; }
        .footer-contact-head { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; }
        .footer-contact p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 2; margin-bottom: 4px; }
        .footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.45); }
        .social-links { display: flex; gap: 12px; }
        .social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; font-size: 13px; transition: all 0.3s; }
        .social-link:hover { background: var(--gold); color: var(--dark-navy); }

        /* FOOTER ACCORDION */
        .footer-accordion { display: none; }
        .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-accordion-toggle { width: 100%; background: none; border: none; color: #fff; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
        .footer-accordion-toggle::after { content: '+'; font-size: 20px; transition: transform 0.3s; }
        .footer-accordion-toggle.active::after { transform: rotate(45deg); }
        .footer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .footer-accordion-content ul { list-style: none; padding: 0 0 16px; }
        .footer-accordion-content a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; display: block; transition: color 0.2s; }
        .footer-accordion-content a:hover { color: var(--gold); }
        .footer-social-mobile { display: flex; gap: 12px; margin-top: 16px; }
        .footer-social-mobile a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: all 0.3s; }
        .footer-social-mobile a:hover { background: var(--gold); }

        /* BACK TO TOP */
        .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: #E20074; color: white; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; box-shadow: 0 4px 15px rgba(226,0,116,0.35); }
        .back-to-top.visible { opacity: 1; visibility: visible; }
        .back-to-top:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(226,0,116,0.5); }

        /* BURGER */
        .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; background: none; border: none; position: relative; }
        .burger span { display: block; width: 26px; height: 2.5px; background: #1a1a1a; transition: all 0.3s; border-radius: 2px; }
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 1000; padding: 80px 40px 40px; overflow-y: auto; box-sizing: border-box; }
        .mobile-nav.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
        .mobile-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
        .mobile-logo span:last-child { color: var(--accent); }
        .mobile-nav ul { list-style: none; }
        .mobile-nav a { display: block; padding: 16px 0; font-size: 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
        .mobile-nav a:hover { color: var(--accent); }
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--gold); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; }

        /* RIPPLE EFFECT */
        .ripple { position: relative; overflow: hidden; }
        .ripple::after { content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); transform: scale(0); opacity: 0; transition: transform 0.5s, opacity 0.3s; }
        .ripple:active::after { transform: scale(2); opacity: 1; transition: 0s; }

        /* SKELETON LOADING */
        .skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton-shimmer 1.5s infinite; border-radius: 8px; }
        .skeleton-img { width: 100%; height: 200px; }
        .skeleton-text { height: 16px; margin-bottom: 8px; }
        .skeleton-text.short { width: 60%; }
        @keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

        /* TOAST */
        .toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: #1a1a1a; color: white; padding: 16px 28px; border-radius: 8px; font-size: 14px; z-index: 1001; opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
        .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

        /* RESPONSIVE */
        @media (max-width: 1100px) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-map-widget { display: none; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .map-layout { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .services-accompagnement-grid { grid-template-columns: repeat(2, 1fr); }
        }
@media (max-width: 860px) {
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; }
            ::-webkit-scrollbar { display: none; }
            .container { padding: 0 16px; }
            .header-top, .header-right, .nav-links { display: none; }
            .burger { display: flex; }
            .hero-buttons { flex-direction: column; }
            .services-accompagnement h2, .services-accompagnement > p { text-align: center; }
            .hero-buttons a { width: 100%; text-align: center; }
            .step-card { padding: 20px 16px; }
            .step-number svg { width: 48px; height: 48px; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .services-accompagnement-grid { grid-template-columns: 1fr; }
            .hero { margin: 0; padding: 0; border-radius: 0; }
            .hero-inner { padding: 40px 16px; margin: 0; }
            .featured-section { background: var(--cream); padding: 80px 20px; }
            .testimonial-card { padding: 20px; }
            .footer-desktop-grid { display: none; }
            .footer-accordion { display: block; }
            .footer { padding: 40px 16px; margin: 40px 0 0; width: 100%; box-sizing: border-box; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            /* SWIPEABLE SECTIONS - MOBILE ONLY */
            .swipe-wrapper { position: relative; overflow: hidden; }
            .swipe-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 24px; }
            .swipe-track::-webkit-scrollbar { display: none; }
            .swipe-track > * { flex: 0 0 calc(85vw); scroll-snap-align: center; }
            .swipe-indicators { display: flex; justify-content: center; gap: 8px; margin-top: -12px; padding-bottom: 8px; }
            .swipe-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.3s; cursor: pointer; border: none; padding: 0; }
            .swipe-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
        }
    

/* === TERRAINS === */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #6B6B6B;
            --gray-100: #f4f6fb;
            --gray-50: #fafbfd;
            --border: #d9dee9;
            --gold: #E20074;
            --light-gold: #FF80BF;
            --cream: #F5F5F5;
            --green: #2d7a3e;
        }

        * { box-sizing: border-box; }
        
        html, body { overflow-x: hidden; max-width: 100vw; margin: 0; padding: 0; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--gray-100);
            line-height: 1.75;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--text-dark); }
        p { color: #5f6774; }

        /* HEADER */
        .header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-top { background: #F5F5F5; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
        .header-top-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
        .header-contact { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .header-top-right { display: flex; align-items: center; gap: 20px; }
        .btn-login { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 6px 18px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; border-radius: 12px; }
        .btn-login:hover { background: var(--gold); color: var(--white); }
        .lang-switch { display: flex; gap: 2px; background: var(--border); border-radius: 4px; overflow: hidden; }
        .lang-btn { background: none; border: none; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--text-gray); cursor: pointer; transition: all 0.2s; }
        .lang-btn.active { background: var(--gold); color: white; }
        .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }
        .logo-accent { color: #E20074; }
        .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--gold); }
        .btn-primary { background: var(--gold); color: #ffffff; padding: 12px 32px; border: none; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; border-radius: 12px; }
        .btn-primary:hover { background: var(--light-gold); transform: translateY(-2px); }
        .btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-dark); border: 1px solid var(--border); background: transparent; padding: 12px 20px; border-radius: 12px; font-weight: 600; font-size: 14px; transition: all 0.2s; }
        .btn-outline:hover { background: var(--gray-100); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; background: none; border: none; position: relative; }
        .burger span { display: block; width: 26px; height: 2.5px; background: #1a1a1a; transition: all 0.3s; border-radius: 2px; }
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 1000; padding: 80px 40px 40px; overflow-y: auto; box-sizing: border-box; }
        .mobile-nav.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
        .mobile-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
        .mobile-logo span:last-child { color: var(--accent); }
        .mobile-nav ul { list-style: none; }
        .mobile-nav a { display: block; padding: 16px 0; font-size: 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--gold); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

        .hero { background: linear-gradient(135deg, rgba(226,0,116,0.85) 0%, rgba(158,0,87,0.9) 55%, rgba(107,0,57,0.92) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=600&fit=crop'); background-size: cover; background-position: center; padding: 80px 40px; text-align: center; }
        .hero .container { padding: 40px 20px; }
        .section-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #E20074; margin-bottom: 14px; }
        .section-tag::before { content: '★'; font-size: 10px; }
        .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #ffffff; margin-bottom: 16px; }
        .hero-desc { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto; }

        .search-bar { display: flex; gap: 16px; flex-wrap: wrap; background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); align-items: flex-end; }
        
        /* Filter Chips */
        .filter-section { position: relative; padding: 16px; background: #fff; margin: 0 10px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
        .filter-chips { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
        .filter-chips::-webkit-scrollbar { display: none; }
        .chip { flex-shrink: 0; padding: 10px 18px; border: 1px solid var(--border); border-radius: 20px; background: #fff; font-size: 13px; font-weight: 600; color: var(--text-dark); cursor: pointer; transition: all 0.2s; scroll-snap-align: start; }
        .chip:hover { border-color: var(--gold); }
        .chip.active { background: var(--gold); color: #fff; border-color: var(--gold); }
        .chip-more { background: #f5f5f5; display: flex; align-items: center; gap: 6px; }
        .chip-more i { font-size: 12px; }
        
        .filter-panel { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; border-radius: 0 0 16px 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); z-index: 10; }
        .filter-panel.active { display: block; animation: fadeIn 0.3s ease; }
        .filter-panel-inner { display: flex; flex-direction: column; gap: 16px; }
        .filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .filter-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-gray); margin-bottom: 6px; }
        .filter-group input { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; }
        .filter-group input:focus { outline: none; border-color: var(--gold); }
        
        /* Filter Trigger (Bottom Bar) */
        .filter-trigger { display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; padding: 14px 24px; border-radius: 30px; font-weight: 600; font-size: 14px; cursor: pointer; box-shadow: 0 8px 30px rgba(226,0,116,0.4); z-index: 100; align-items: center; gap: 8px; }
        .filter-trigger i { font-size: 16px; }
        .filter-count { background: #fff; color: var(--gold); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

        /* STICKY SEARCH BAR */
        .search-bar-wrapper { position: sticky; top: 70px; z-index: 90; background: var(--cream); padding: 16px 16px 0; }
        .search-bar-wrapper .search-bar { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

        /* BOTTOM SHEET FILTER */
        .filter-bottom-sheet { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-radius: 24px 24px 0 0; z-index: 200; max-height: 85vh; overflow-y: auto; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .filter-bottom-sheet.active { display: block; transform: translateY(0); }
        .filter-bottom-sheet-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; }
        .filter-bottom-sheet-header h3 { font-size: 18px; font-weight: 700; }
        .filter-bottom-sheet-close { background: var(--cream); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .filter-bottom-sheet-body { padding: 20px; }
        .filter-bottom-sheet-footer { display: flex; gap: 12px; padding: 20px; border-top: 1px solid var(--border); position: sticky; bottom: 0; background: #fff; }
        .filter-bottom-sheet-footer .btn-outline { flex: 1; padding: 14px; border-radius: 12px; font-weight: 600; cursor: pointer; }
        .filter-bottom-sheet-footer .btn-primary { flex: 1; padding: 14px; border-radius: 12px; font-weight: 600; cursor: pointer; }
        .filter-sheet-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 199; }
        .filter-sheet-overlay.active { display: block; }

        /* RIPPLE EFFECT */
        .ripple { position: relative; overflow: hidden; }
        .ripple::after { content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); transform: scale(0); opacity: 0; transition: transform 0.5s, opacity 0.3s; }
        .ripple:active::after { transform: scale(2); opacity: 1; transition: 0s; }

        /* SKELETON LOADING */
        .skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton-shimmer 1.5s infinite; border-radius: 8px; }
        .skeleton-img { width: 100%; height: 200px; }
        .skeleton-text { height: 16px; margin-bottom: 8px; }
        .skeleton-text.short { width: 60%; }
        @keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        .property-card.loading .card-img { background: var(--cream); position: relative; overflow: hidden; }
        .property-card.loading .card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: skeleton-shimmer 1.5s infinite; }

        /* IMAGE ZOOM */
        .img-zoom-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 300; cursor: zoom-out; }
        .img-zoom-overlay.active { display: flex; align-items: center; justify-content: center; }
        .img-zoom-overlay img { max-width: 95%; max-height: 95%; object-fit: contain; border-radius: 8px; }
        .img-zoom-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.2); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .prop-card-img-wrapper { position: relative; overflow: hidden; cursor: zoom-in; }
        .prop-card-img-wrapper img { transition: transform 0.3s ease; }
        .prop-card-img-wrapper:active img { transform: scale(1.05); }
        .card-img-wrap img { transition: opacity 0.3s; }
        
        /* Filter Modal */
        .filter-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 2000; overflow-y: auto; }
        .filter-modal.active { display: flex; flex-direction: column; animation: slideUp 0.3s ease; }
        @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
        
        .filter-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; }
        .filter-modal-header h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 0; }
        .filter-close { background: #f5f5f5; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; }
        
        .filter-modal-body { flex: 1; padding: 20px; }
        .filter-step { margin-bottom: 32px; }
        .filter-step-title { font-size: 14px; font-weight: 700; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
        .filter-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .filter-option { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.2s; }
        .filter-option:hover { border-color: var(--gold); }
        .filter-option input { display: none; }
        .filter-option input:checked + span { color: var(--gold); font-weight: 600; }
        .filter-option:has(input:checked) { border-color: var(--gold); background: rgba(226,0,116,0.05); }
        .filter-option span { font-size: 15px; }
        
        .filter-price-inputs { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
        .filter-price-inputs input { flex: 1; padding: 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; }
        .filter-price-inputs span { color: var(--text-gray); }
        
        .price-slider { width: 100%; height: 6px; -webkit-appearance: none; background: #e0e0e0; border-radius: 3px; margin: 16px 0; }
        .price-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; background: var(--gold); border-radius: 50%; cursor: pointer; }
        .price-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-gray); }
        
        .filter-modal-footer { display: flex; gap: 12px; padding: 20px; border-top: 1px solid var(--border); background: #fff; position: sticky; bottom: 0; }
        .btn-reset { flex: 1; padding: 16px; border: 1px solid var(--border); border-radius: 12px; background: #fff; font-weight: 600; font-size: 14px; cursor: pointer; }
        .filter-modal-footer .btn-primary { flex: 2; }
        .search-bar > div { flex: 1; min-width: 140px; }
        .search-bar label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--text-gray); }
        .search-bar select, .search-bar input { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: #fff; }
        .search-bar select:focus, .search-bar input:focus { outline: none; border-color: var(--gold); }

        .feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .feature-card { background: #fff; padding: 28px 24px; border-radius: 12px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
        .feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: var(--gold); }
        .feature-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
        .feature-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
        .feature-copy { font-size: 13px; color: var(--text-gray); }

        .region-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .region-stat { background: #fff; padding: 24px; border-radius: 12px; text-align: center; border: 1px solid var(--border); }
        .region-stat strong { display: block; font-size: 36px; font-weight: 700; color: var(--gold); }
        .region-stat span { font-size: 14px; color: var(--text-gray); }

        .property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .property-card { background: var(--white); border: 1px solid var(--border); transition: all 0.35s; position: relative; overflow: hidden; text-decoration: none; color: var(--text-dark); display: block; border-radius: 12px; }
        .property-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.12); transform: translateY(-5px); border-color: var(--gold); }
        .property-card:hover .card-img-wrap img, .property-card:hover .card-img { transform: scale(1.05); }
        .card-img-wrap { position: relative; overflow: hidden; height: 220px; }
        .card-img-wrap img, .card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
        .card-badge { position: absolute; top: 16px; right: 16px; }
        .status-badge { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; }
        .status-available { background: #2d7a3e; color: #fff; }
        .status-reserved { background: #2D2D2D; color: #fff; }
        .status-sold { background: #c41e3a; color: #fff; }
        .card-body { padding: 24px 24px 20px; }
        .card-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; margin-bottom: 5px; }
        .card-copy { font-size: 14px; color: var(--text-gray); margin-bottom: 12px; line-height: 1.6; }
        .card-location { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-gray); margin-bottom: 16px; }
        .card-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
        .card-meta { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
        .card-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); }
        .card-acres { font-size: 12px; font-weight: 600; color: var(--text-gray); }
        .card-actions { display: flex; gap: 12px; }
        .card-actions .btn-primary { flex: 1; text-align: center; padding: 12px 20px; }
        .card-actions .btn-outline { flex: 1; text-align: center; padding: 12px 20px; }

        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
        .page-btn { width: 40px; height: 40px; border: 1px solid var(--border); background: #fff; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .page-btn:hover, .page-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

        .cta-block { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg, #E20074 0%, #9E0057 100%); padding: 48px; border-radius: 16px; margin-top: 64px; }
        .cta-block h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 8px; }
        .cta-block p { color: rgba(255,255,255,0.8); font-size: 15px; }

        .footer { background: #1D1D1D; color: #fff; padding: 60px 40px 40px; }
        .footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 18px; }
        .footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 16px; display: block; }
        .footer-links ul { list-style: none; }
        .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; display: block; transition: color 0.2s; }
        .footer-links a:hover { color: var(--gold); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.45); }

        /* FOOTER ACCORDION */
        .footer-accordion { display: none; }
        .footer-desktop-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
        .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-accordion-toggle { width: 100%; background: none; border: none; color: #fff; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
        .footer-accordion-toggle::after { content: '+'; font-size: 20px; transition: transform 0.3s; }
        .footer-accordion-toggle.active::after { transform: rotate(45deg); }
        .footer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .footer-accordion-content ul { list-style: none; padding: 0 0 16px; }
        .footer-accordion-content a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; display: block; transition: color 0.2s; }
        .footer-accordion-content a:hover { color: var(--gold); }
        .footer-social-mobile { display: flex; gap: 12px; margin-top: 16px; }
        .footer-social-mobile a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: all 0.3s; }
        .footer-social-mobile a:hover { background: var(--gold); }

@media (max-width: 1100px) {
            .feature-row, .region-stats { grid-template-columns: repeat(2, 1fr); }
            .property-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            :root { --safe-area: env(safe-area-inset-bottom); }
            .container { padding: 0 16px; }
            .hero { padding: 40px 16px; }
            .feature-row, .region-stats { grid-template-columns: 1fr; }
            .property-grid { grid-template-columns: 1fr; gap: 16px; }
            
            .search-bar { 
                flex-direction: column; 
                gap: 12px; 
                padding: 16px; 
                border-radius: 16px;
                margin: 0 -16px 16px;
                width: calc(100% + 32px);
            }
            .search-bar > div { width: 100%; }
            .search-bar select, .search-bar input { 
                height: 48px; 
                font-size: 16px;
                padding: 12px 16px;
            }
            .search-bar .btn-primary { height: 48px; font-size: 16px; }
            
            .feature-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
            .feature-card { min-width: 160px; flex-shrink: 0; padding: 20px 16px; text-align: center; }
            
            .property-card { border-radius: 16px; margin-bottom: 0; }
            .card-img-wrap { height: 180px; }
            .card-body { padding: 20px; }
            .card-title { font-size: 18px; }
            .card-copy { font-size: 14px; -webkit-line-clamp: 2; line-clamp: 2; }
            .card-actions { flex-direction: column; gap: 8px; }
            .card-actions .btn-primary, .card-actions .btn-outline { width: 100%; justify-content: center; }
            
            .cta-block { 
                flex-direction: column; 
                text-align: center; 
                gap: 20px; 
                padding: 32px 20px;
                border-radius: 20px;
                margin: 40px 0;
            }
            
            .footer-content { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            
            .hero .hero-title { font-size: 28px; }
            .hero .hero-desc { font-size: 15px; }
            
            .pagination { gap: 8px; margin: 32px 0 100px; }
            .page-btn { width: 44px; height: 44px; font-size: 15px; }
            
            .section-tag { font-size: 10px; }
            h2 { font-size: 24px !important; }
            
            .region-stats { gap: 12px; }
            .region-stat { padding: 20px 16px; }
            .region-stat strong { font-size: 28px; }
            .region-stat span { font-size: 13px; }
            
            .property-card { border-radius: 20px; overflow: hidden; }
            .card-badge { top: 12px; right: 12px; }
            
            .quick-view { display: none; }
        }
        
        @media (max-width: 768px) {
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
            
            .filter-section { margin: 0 10px 20px; }
            .filter-chips { padding: 0 10px; }
            .chip { padding: 8px 14px; font-size: 12px; }
            
            .filter-trigger { display: flex; }
            .search-bar-wrapper { display: block; }
            .filter-bottom-sheet { display: block; }
            .search-bar { flex-direction: row; flex-wrap: wrap; }
            .search-bar > div { min-width: calc(50% - 8px); }
            .search-bar .btn-primary { width: 100%; margin-top: 8px; }
            
            .cta-block { margin: 24px 16px; width: calc(100% - 32px); }
            
            .pagination { padding-bottom: 20px; }
            
            .property-card:hover { transform: none; }
            .property-card:active { transform: scale(0.98); }
        }
        
        @media (min-width: 769px) {
            .mobile-bottom-nav { display: none !important; }
        }
        @media (max-width: 860px) {
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
            ::-webkit-scrollbar { display: none; }
            .header-top, .nav-links { display: none; }
            .burger { display: flex; }
            .hero::before { display: none; }
            .header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; }
        }
        @media (max-width: 768px) {
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
            .container { padding: 0 10px; }
            .section { margin: 0 10px; padding: 40px 10px; }
            section { margin: 0 10px; padding: 40px 10px; }
            .hero { padding: 60px 16px 40px; margin: 0; border-radius: 0; }
            .feature-row, .region-stats { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding: 0 10px; }
            .feature-card, .region-stat { min-width: 40vw; scroll-snap-align: center; flex-shrink: 0; }
            .property-grid { grid-template-columns: 1fr; padding: 0 10px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; }
            .property-card { min-width: 85vw; scroll-snap-align: center; flex-shrink: 0; }
            .property-grid::after { content: ''; display: block; width: 100%; text-align: center; padding: 12px; color: var(--text-gray); font-size: 20px; opacity: 0.5; }
            .feature-row, .region-stats { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding: 0 10px; }
            .feature-row::after, .region-stats::after { content: ''; display: block; width: 100%; text-align: center; padding: 8px; font-size: 16px; opacity: 0.4; }
            .search-bar { flex-direction: column; }
            .search-bar > div { width: 100%; }
            .cta-block { flex-direction: column; text-align: center; gap: 24px; margin: 0 10px; border-radius: 16px; }
            .footer { padding: 40px 16px; margin: 40px 0 0; width: 100%; box-sizing: border-box; }
            .footer-desktop-grid { display: none; }
            .footer-accordion { display: block; }
            .footer { margin-top: 40px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
        }
    

/* === TERRAIN-DETAIL === */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #6B6B6B;
            --gray-100: #f4f6fb;
            --gray-50: #fafbfd;
            --border: #d9dee9;
            --gold: #E20074;
            --light-gold: #FF80BF;
            --cream: #F5F5F5;
            --green: #2d7a3e;
        }

        * { box-sizing: border-box; }
        
        html, body { overflow-x: hidden; max-width: 100vw; margin: 0; padding: 0; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--gray-100);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        /* HEADER */
        .header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-top { background: #F5F5F5; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
        .header-top-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
        .header-contact { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .header-top-right { display: flex; align-items: center; gap: 20px; }
        .btn-login { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 6px 18px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; }
        .btn-login:hover { background: var(--gold); color: var(--white); }
        .lang-switch { display: flex; gap: 2px; background: var(--border); border-radius: 4px; overflow: hidden; }
        .lang-btn { background: none; border: none; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--text-gray); cursor: pointer; transition: all 0.2s; }
        .lang-btn.active { background: var(--gold); color: white; }
        .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }
        .logo-accent { color: #E20074; }
        .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--gold); }
        .btn-primary { background: var(--gold); color: #ffffff; padding: 12px 32px; border: none; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; border-radius: 12px; }
        .btn-primary:hover { background: var(--light-gold); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(226,0,116,0.3); }
        .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
        .burger span { display: block; width: 26px; height: 2.5px; background: #1a1a1a; transition: all 0.3s; border-radius: 2px; }
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

        /* HERO */
        .hero { background: linear-gradient(135deg, rgba(226,0,116,0.85) 0%, rgba(158,0,87,0.9) 55%, rgba(107,0,57,0.92) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=1080&fit=crop'); background-size: cover; background-position: center; min-height: 380px; display: flex; align-items: center; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px); }
        .hero-inner { max-width: 1400px; margin: 0 auto; padding: 100px 40px 80px; width: 100%; position: relative; z-index: 1; }
        .hero-breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
        .hero-breadcrumb a { color: var(--white); font-weight: 600; }
        .hero-breadcrumb a:hover { text-decoration: underline; }
        .hero-badges { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
        .status-badge-lg { padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
        .status-available-lg { background: #16a34a; color: white; }
        .status-reserved-lg { background: #E20074; color: white; }
        .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 12px; }
        .price-hero { font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--white); }
        .price-hero small { font-size: 16px; font-weight: 500; opacity: 0.8; }

        /* CONTAINER */
        .container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
        
        /* SECTIONS */
        .section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
        .section-tag::before { content: ''; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
        .section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.5px; color: var(--text-dark); }
        
        .detail-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 36px; align-items: start; }
        .detail-sidebar { position: sticky; top: 100px; }
        .detail-card { border-radius: 28px; background: var(--white); box-shadow: 0 28px 80px rgba(10, 24, 52, 0.08); padding: 32px; border: 1px solid rgba(13,19,33,0.06); }
        
        .detail-meta { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 24px 0; }
        .meta-box { background: var(--gray-100); border-radius: 22px; padding: 22px; text-align: center; transition: all 0.4s; }
        .meta-box:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(10, 24, 52, 0.06); }
        .meta-box i { font-size: 24px; color: var(--gold); margin-bottom: 8px; display: block; }
        .meta-box span { display: block; font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
        .meta-box small { color: #6b7280; font-size: 13px; }
        
        .feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
        .feature-chip { background: rgba(226,0,116,0.08); color: var(--gold); border-radius: 12px; padding: 12px 14px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
        
        .label-pill { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; font-weight: 700; color: var(--gold); }
        .card-copy { color: #5f6774; line-height: 1.8; }
        
        .map-preview { position: relative; border-radius: 24px; overflow: hidden; height: 320px; background: #eef4ff; }
        .map-preview img { width: 100%; height: 100%; object-fit: cover; }
        .map-pin { position: absolute; top: 20px; left: 20px; background: var(--white); color: var(--text-dark); padding: 10px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; box-shadow: 0 14px 30px rgba(10,24,52,0.14); }
        
        .share-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 18px 0; }
        .share-btn { display: inline-flex; align-items: center; gap: 10px; justify-content: center; border-radius: 18px; border: 1px solid rgba(13,19,33,0.1); padding: 14px; background: var(--white); color: var(--text-dark); font-weight: 700; }
        .share-btn:hover { border-color: var(--gold); color: var(--gold); }
        
        .btn-map { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold) 0%, #c10065 100%); color: var(--white); border: none; padding: 14px 24px; border-radius: 18px; font-weight: 700; width: 100%; margin-top: 18px; }
        
        .gallery-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 12px; padding: 14px 32px 20px; }
        .gallery-thumb { border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.3s; aspect-ratio: 1; border: 2px solid transparent; min-width: 80px; scroll-snap-align: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .gallery-thumb:hover { border-color: var(--gold); transform: scale(1.02); }
        .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .gallery-thumb.active { border-color: var(--gold); }
        .gallery-dots { display: flex; gap: 8px; justify-content: center; padding: 8px 0 16px; }
        .gallery-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
        .gallery-dots span.active { background: var(--gold); width: 24px; border-radius: 4px; }
        
        .similar-card { border: 1px solid var(--border); border-radius: 22px; overflow: hidden; transition: all 0.4s; background: var(--white); }
        .similar-card:hover { transform: translateY(-4px); box-shadow: 0 40px 100px rgba(10, 24, 52, 0.12); }
        .similar-card:hover img { transform: scale(1.08); }
        .similar-card img { width: 100%; height: 160px; object-fit: cover; transition: transform 0.5s; }
        .similar-card-body { padding: 16px; }
        
        .floating-cta { position: fixed; bottom: 30px; right: 30px; z-index: 100; }
        .floating-cta .btn-primary { padding: 16px 28px; box-shadow: 0 40px 100px rgba(10, 24, 52, 0.12); }
        
        /* FOOTER */
        .footer { background: #1D1D1D; padding: 60px 0 28px; }
        .footer-desktop-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
        .footer-logo { font-size: 24px; margin-bottom: 18px; display: block; font-weight: 700; color: var(--white); }
        .footer-logo span { color: var(--gold); }
        .footer p, .footer a { color: rgba(255,255,255,0.85); font-size: 14px; }
        .footer h4 { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 16px; }
        .footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
        .footer a { transition: color 0.25s ease; }
        .footer a:hover { color: var(--gold); }
        .footer-social { display: flex; gap: 12px; margin-top: 18px; }
        .footer-social a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); font-size: 18px; }
        .footer-social a:hover { background: var(--gold); }
        .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.7); }

        /* FOOTER ACCORDION */
        .footer-accordion { display: none; }
        .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-accordion-toggle { width: 100%; background: none; border: none; color: #fff; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
        .footer-accordion-toggle::after { content: '+'; font-size: 20px; transition: transform 0.3s; }
        .footer-accordion-toggle.active::after { transform: rotate(45deg); }
        .footer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .footer-accordion-content ul { list-style: none; padding: 0 0 16px; }
        .footer-accordion-content a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; display: block; transition: color 0.2s; }
        .footer-accordion-content a:hover { color: var(--gold); }
        .footer-social-mobile { display: flex; gap: 12px; margin-top: 16px; }
        .footer-social-mobile a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: all 0.3s; }
        .footer-social-mobile a:hover { background: var(--gold); }

        /* RESPONSIVE */
        @media (max-width: 1160px) { .detail-grid, .footer-desktop-grid { grid-template-columns: 1fr; } }
        @media (max-width: 860px) { 
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
            ::-webkit-scrollbar { display: none; }
            .container { padding: 0 16px; max-width: 100%; } 
            .header-top, .nav-links { display: none; }
            .burger { display: flex; }
            .btn-primary { display: none; }
            .hero { padding: 100px 0 30px; margin: 0; border-radius: 0; min-height: auto; }
            .hero::before { display: none; }
            .hero h1 { font-size: 28px; }
            .price-hero { font-size: 28px; }
            .hero-badges { margin-bottom: 10px; }
            .detail-card { padding: 20px 16px; border-radius: 20px; }
            .detail-meta { padding: 16px 0 12px; }
            .feature-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .feature-chip { padding: 10px 12px; font-size: 12px; }
            .detail-meta { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 12px; padding-bottom: 8px; }
            .detail-meta .meta-box { min-width: 140px; flex-shrink: 0; scroll-snap-align: center; } 
            .floating-cta { bottom: 20px; right: 20px; }
            .floating-cta .btn-primary { padding: 14px 22px; font-size: 14px; }
            .header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; }
            .gallery-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; padding: 12px 16px 16px; justify-content: center; }
            .gallery-thumb { min-width: 80px; width: 80px; height: 80px; scroll-snap-align: center; flex-shrink: 0; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
            .gallery-thumb.active { border-color: var(--gold); }
            .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
            .gallery-dots { display: none; }
            .detail-sidebar { margin-top: 32px; }
            .share-buttons { margin: 14px 0; }
        }
        @media (max-width: 640px) { 
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; }
            .container { padding: 0 10px; max-width: 100%; overflow-x: hidden; }
            .section { margin: 0 10px; padding: 40px 10px; }
            section { margin: 0 10px; padding: 40px 10px; }
            .detail-meta, .gallery-grid, .share-buttons { grid-template-columns: 1fr; } 
            .footer-bottom { flex-direction: column; align-items: flex-start; }
            .hero-inner { padding: 60px 16px 24px; margin: 0 10px; }
            .hero h1 { font-size: 26px; }
            .price-hero { font-size: 26px; }
            .detail-grid { padding: 20px 10px; margin: 0 10px; }
            .footer { padding: 40px 16px; margin: 40px 0 0; width: 100%; box-sizing: border-box; }
            .footer-desktop-grid { display: none; }
            .footer-accordion { display: block; }
            .footer { margin-top: 40px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .hero { padding: 0; margin: 0; border-radius: 0; }
        }
        
        /* Mobile nav */
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 1000; padding: 80px 40px 40px; overflow-y: auto; box-sizing: border-box; }
        .mobile-nav.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
        .mobile-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
        .mobile-logo span:last-child { color: var(--accent); }
        .mobile-nav ul { list-style: none; }
        .mobile-nav a { display: block; padding: 16px 0; font-size: 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
        .mobile-nav a:hover { color: var(--gold); }
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--gold); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; }
    

/* === ABOUT === */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --white: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #6B6B6B;
            --gray-100: #f4f6fb;
            --gray-50: #fafbfd;
            --border: #d9dee9;
            --gold: #E20074;
            --light-gold: #FF80BF;
            --cream: #F5F5F5;
            --green: #2d7a3e;
        }

        * { box-sizing: border-box; }
        
        html, body { overflow-x: hidden; max-width: 100vw; margin: 0; padding: 0; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--gray-100);
            line-height: 1.75;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--text-dark); }
        p { color: #5f6774; }

        /* HEADER */
        .header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-top { background: #F5F5F5; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
        .header-top-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
        .header-contact { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .header-top-right { display: flex; align-items: center; gap: 20px; }
        .btn-login { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 6px 18px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; border-radius: 12px; }
        .btn-login:hover { background: var(--gold); color: var(--white); }
        .lang-switch { display: flex; gap: 2px; background: var(--border); border-radius: 4px; overflow: hidden; }
        .lang-btn { background: none; border: none; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--text-gray); cursor: pointer; transition: all 0.2s; }
        .lang-btn.active { background: var(--gold); color: white; }
        .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }
        .logo-accent { color: #E20074; }
        .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--gold); }
        .btn-primary { background: var(--gold); color: #ffffff; padding: 12px 32px; border: none; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; border-radius: 12px; }
        .btn-primary:hover { background: var(--light-gold); transform: translateY(-2px); }
        .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; background: none; border: none; position: relative; }
        .burger span { display: block; width: 26px; height: 2.5px; background: #1a1a1a; transition: all 0.3s; border-radius: 2px; }

        /* CONTAINER */
        .container { max-width: 1360px; margin: 0 auto; padding: 0 16px; width: 100%; }

        /* SECTION TAG */
        .section-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
        .section-tag::before { content: ''; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }

        /* HERO */
        .hero { background: linear-gradient(135deg, rgba(226,0,116,0.85) 0%, rgba(158,0,87,0.9) 55%, rgba(107,0,57,0.92) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=1080&fit=crop'); background-size: cover; background-position: center; min-height: 420px; display: flex; align-items: center; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px); }
        .hero .container { position: relative; z-index: 2; padding: 100px 32px 80px; }
        .hero-title { font-size: clamp(40px, 5vw, 64px); color: var(--white); line-height: 1.02; margin-bottom: 16px; letter-spacing: -1px; }
        .hero-desc { font-size: 20px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 600px; }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
        .hero-btn-large { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--white); color: var(--text-dark); border: none; padding: 18px 36px; border-radius: 14px; font-size: 17px; font-weight: 700; transition: all 0.3s ease; }
        .hero-btn-large:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
        .hero-btn-large.primary { background: var(--gold); color: white; }
        .hero-btn-large.outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; }
        .hero-btn-large.outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

        /* SPOTLIGHT PANEL */
        .spotlight-panel { background: var(--white); border-radius: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); padding: 48px; margin: -40px auto 58px; max-width: 1240px; position: relative; z-index: 10; }
        .spotlight-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 32px; align-items: stretch; }
        .spotlight-panel .section-title { margin-bottom: 18px; }
        .panel-stat-card { background: #0d1321; color: var(--white); border-radius: 28px; padding: 38px 34px; display: grid; gap: 18px; min-height: 240px; justify-content: center; }
        .panel-stat-number { font-family: 'Playfair Display', serif; font-size: clamp(62px, 8vw, 88px); font-weight: 800; color: var(--gold); line-height: 0.9; }
        .panel-stat-label { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: rgba(255,255,255,0.75); }
        .panel-stat-card p { color: rgba(255,255,255,0.9); line-height: 1.8; }

        /* INFO GRID */
        .info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 32px; }
        .info-card { background: var(--white); border: 1px solid var(--border); border-radius: 28px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.4s; position: relative; overflow: hidden; }
        .info-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--gold); border-radius: 4px 4px 0 0; opacity: 0; transition: opacity 0.3s; }
        .info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
        .info-card:hover::after { opacity: 1; }
        .info-card h3 { margin-bottom: 14px; font-size: 20px; }
        .info-card p { color: #5f6774; line-height: 1.85; }

        /* STAT GRID */
        .stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
        .stat-block { background: var(--white); border-radius: 28px; padding: 30px 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center; transition: all 0.4s; position: relative; overflow: hidden; }
        .stat-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
        .stat-block:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
        .stat-block:hover::before { transform: scaleX(1); }
        .stat-number { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
        .stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1.6px; color: #6b7280; }

        /* PROCESS GRID */
        .process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 52px; }
        .step-card { background: var(--white); border-radius: 28px; padding: 28px; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.4s; position: relative; }
        .step-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
        .step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
        .step-card:hover::after { transform: scaleX(1); }
        .step-number { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: rgba(226,0,116,0.12); color: var(--gold); font-weight: 700; margin-bottom: 18px; transition: all 0.3s; }
        .step-card:hover .step-number { background: var(--gold); color: var(--white); transform: scale(1.05); }
        .step-card h4 { font-size: 18px; margin-bottom: 10px; }
        .step-card p { color: #5f6774; line-height: 1.75; }

        /* TEAM GRID */
        .team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
        .team-card { background: var(--white); border-radius: 28px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.4s; text-align: center; }
        .team-card:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
        .team-card:hover img { transform: scale(1.05); }
        .team-img-wrap { height: 220px; overflow: hidden; position: relative; }
        .team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .team-body { padding: 24px; }
        .team-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
        .team-role { color: var(--gold); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        /* TESTIMONIAL GRID */
        .testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
        .testimonial-card { background: var(--white); border-radius: 28px; padding: 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.4s; position: relative; }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
        .testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: 'Playfair Display', serif; font-size: 80px; color: rgba(226,0,116,0.08); line-height: 1; }
        .testimonial-text { font-size: 16px; line-height: 1.8; color: #5f6774; margin-bottom: 20px; font-style: italic; }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
        .testimonial-author strong { display: block; font-size: 15px; }
        .testimonial-author span { font-size: 13px; color: #7b8695; }

        /* CERTIF GRID */
        .certif-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
        .certif-badge { display: flex; align-items: center; gap: 10px; background: var(--white); padding: 14px 24px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border: 1px solid var(--border); }
        .certif-badge i { font-size: 20px; color: var(--gold); }
        .certif-badge span { font-size: 13px; font-weight: 600; }

        /* SERVICES ACCOMPAGNEMENT */
        .services-accompagnement { padding: 80px 0; background: var(--white); }
        .services-accompagnement h2 { text-align: center; font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
        .services-accompagnement h2 span { color: var(--gold); }
        .services-accompagnement > .container > p { text-align: center; color: #6b7280; font-size: 17px; margin-bottom: 48px; }
        .services-accompagnement-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
        .services-accompagnement-block { display: flex; flex-direction: column; align-items: center; padding: 32px 16px; border-radius: 12px; transition: all 0.3s; text-decoration: none; }
        .services-accompagnement-block:hover { transform: translateY(-8px); }
        .services-accompagnement-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: transparent; margin-bottom: 20px; color: var(--text-dark); transition: all 0.3s; }
        .services-accompagnement-block:hover .services-accompagnement-icon { color: var(--gold); }
        .services-accompagnement-block h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); letter-spacing: 0.5px; text-transform: uppercase; }
        .services-accompagnement-block:hover h3 { color: var(--gold); }
        .services-accompagnement-block span { font-size: 13px; font-weight: 600; color: #9ca3af; }

        /* CTA BLOCK */
        .cta-block { background: linear-gradient(135deg, var(--gold) 0%, #b30166 100%); border: none; border-radius: 34px; padding: 48px 40px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 72px; position: relative; overflow: hidden; }
        .cta-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%); pointer-events: none; }
        .cta-block h3 { margin-bottom: 12px; color: var(--white); }
        .cta-block p { max-width: 520px; color: rgba(255,255,255,0.9); }
        .cta-block .btn-primary { background: var(--white); color: var(--gold); }
        .cta-block .btn-primary:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

        /* FOOTER */
        .footer { background: #1D1D1D; padding: 60px 0 28px; }
        .footer-desktop-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
        .footer-logo { font-size: 24px; margin-bottom: 18px; display: block; font-weight: 700; color: var(--white); }
        .footer-logo span { color: var(--gold); }
        .footer p, .footer a { color: rgba(255,255,255,0.85); font-size: 14px; }
        .footer h4 { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 16px; }
        .footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
        .footer a { transition: color 0.25s; }
        .footer a:hover { color: var(--gold); }
        .footer-social { display: flex; gap: 12px; margin-top: 18px; }
        .footer-social a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); font-size: 18px; transition: background 0.25s; }
        .footer-social a:hover { background: var(--gold); }
        .footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.7); }

        /* FOOTER ACCORDION */
        .footer-accordion { display: none; }
        .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-accordion-toggle { width: 100%; background: none; border: none; color: #fff; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
        .footer-accordion-toggle::after { content: '+'; font-size: 20px; transition: transform 0.3s; }
        .footer-accordion-toggle.active::after { transform: rotate(45deg); }
        .footer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .footer-accordion-content ul { list-style: none; padding: 0 0 16px; }
        .footer-accordion-content a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; display: block; transition: color 0.2s; }
        .footer-accordion-content a:hover { color: var(--gold); }
        .footer-social-mobile { display: flex; gap: 12px; margin-top: 16px; }
        .footer-social-mobile a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: all 0.3s; }
        .footer-social-mobile a:hover { background: var(--gold); }

        /* RESPONSIVE */
        @media (max-width: 1160px) { .spotlight-grid, .info-grid, .stat-grid, .process-grid, .footer-desktop-grid, .team-grid, .testimonial-grid, .cta-block { grid-template-columns: 1fr; } }
        @media (max-width: 860px) { 
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
            ::-webkit-scrollbar { display: none; }
            .container { padding: 0 10px; } 
            .header-top, .nav-links { display: none; }
            .burger { display: flex; }
            .btn-primary { display: none; }
            .hero { padding: 80px 0 40px; margin: 0; }
            .hero::before { display: none; }
            .hero .container { padding: 80px 16px 40px; }
            .spotlight-panel { padding: 24px; }
            .header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; }
            .info-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .info-card { min-width: 80vw; scroll-snap-align: center; flex-shrink: 0; }
            .info-grid::after, .stat-grid::after, .process-grid::after, .team-grid::after, .testimonial-grid::after { content: ''; display: block; width: 100%; text-align: center; padding: 12px; color: var(--text-gray); font-size: 20px; opacity: 0.5; }
            .stat-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .stat-block { min-width: 40vw; scroll-snap-align: center; flex-shrink: 0; }
            .process-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .step-card { min-width: 80vw; scroll-snap-align: center; flex-shrink: 0; }
            .team-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .team-card { min-width: 80vw; scroll-snap-align: center; flex-shrink: 0; }
            .testimonial-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .testimonial-card { min-width: 80vw; scroll-snap-align: center; flex-shrink: 0; }
        }
        @media (max-width: 640px) { 
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; }
            .container { padding: 0 10px; max-width: 100%; overflow-x: hidden; }
            section { margin: 0 10px; padding: 40px 10px; }
            .stat-number { font-size: 36px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
            .services-accompagnement-grid { grid-template-columns: 1fr; }
            .hero { margin: 0; padding: 0; border-radius: 0; }
            .hero .container { padding: 60px 16px 40px; }
            .spotlight-panel { padding: 16px; margin: 0 10px; border-radius: 16px; }
            .info-grid { gap: 16px; }
            .info-card { padding: 20px; border-radius: 16px; }
            .stat-grid { gap: 16px; }
            .stat-block { padding: 20px; border-radius: 16px; }
            .process-grid { gap: 16px; }
            .step-card { padding: 20px; border-radius: 16px; }
            .team-grid { gap: 16px; }
            .team-card { border-radius: 16px; }
            .testimonial-grid { gap: 16px; }
            .testimonial-card { padding: 20px; border-radius: 16px; }
            .cta-block { padding: 24px 16px; margin: 0 10px; border-radius: 16px; }
            .header-top-content, .nav-container { padding: 0 16px; }
            .footer { padding: 40px 16px; margin: 40px 0 0; width: 100%; box-sizing: border-box; }
            .footer-grid { padding: 0 16px; }
            .footer-desktop-grid { display: none; }
            .footer-content { display: none; }
            .footer-accordion { display: block; }
            .footer-accordion { display: block; }
            .footer { margin-top: 40px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            section { margin: 0 16px; padding: 40px 0; }
        }
        
        /* MOBILE NAV */
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 1000; padding: 80px 40px 40px; overflow-y: auto; box-sizing: border-box; }
        .mobile-nav.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
        .mobile-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
        .mobile-logo span:last-child { color: var(--accent); }
        .mobile-nav ul { list-style: none; }
        .mobile-nav a { display: block; padding: 16px 0; font-size: 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
        .mobile-nav a:hover { color: var(--gold); }
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--gold); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; }
    

/* === CONTACT === */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --accent: #E20074;
            --accent-light: #f533a7;
            --gray-100: #f4f6fb;
            --white: #ffffff;
            --black: #0d1321;
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --border: #d9dee9;
            --radius: 12px;
            --shadow-sm: 0 4px 20px rgba(10,24,52,0.06);
            --shadow: 0 28px 80px rgba(10,24,52,0.08);
            --shadow-lg: 0 40px 100px rgba(10,24,52,0.12);
        }
        * { box-sizing: border-box; }
        
        html, body { overflow-x: hidden; max-width: 100vw; margin: 0; padding: 0; }
        
        body { font-family: 'Inter', sans-serif; color: var(--black); background: var(--gray-100); line-height: 1.6; overflow-x: hidden; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        
        /* HEADER */
        .header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .header-top { background: #F5F5F5; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
        .header-top-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
        .header-contact { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
        .header-top-right { display: flex; align-items: center; gap: 20px; }
        .lang-switch { display: flex; gap: 2px; background: var(--border); border-radius: 4px; overflow: hidden; }
        .lang-btn { background: none; border: none; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--text-gray); cursor: pointer; transition: all 0.2s; }
        .lang-btn.active { background: var(--accent); color: white; }
        .btn-login { background: none; border: 1px solid var(--accent); color: var(--accent); padding: 6px 18px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; border-radius: 12px; }
        .btn-login:hover { background: var(--accent); color: var(--white); }
        .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }
        .logo-accent { color: #E20074; }
        .nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
        .nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--accent); }
        .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--accent); color: var(--white); border: none; padding: 12px 20px; border-radius: 12px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s ease; }
        .btn-primary:hover { opacity: 0.9; }
        .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; background: none; border: none; }
        .burger span { display: block; width: 26px; height: 2.5px; background: #1a1a1a; transition: all 0.3s; border-radius: 2px; }
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 1000; padding: 80px 40px 40px; overflow-y: auto; box-sizing: border-box; }
        .mobile-nav.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
        .mobile-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
        .mobile-logo span:last-child { color: var(--accent); }
        .mobile-nav ul { list-style: none; }
        .mobile-nav a { display: block; padding: 16px 0; font-size: 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
        .mobile-nav a:hover { color: var(--accent); }
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--accent); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; }

        /* Container */
        .container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

        /* Page Hero */
        .page-hero { background: linear-gradient(135deg, rgba(226,0,116,0.85) 0%, rgba(158,0,87,0.9) 55%, rgba(107,0,57,0.92) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=1080&fit=crop'); background-size: cover; background-position: center; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.08) 2px, rgba(255,255,255,0.08) 4px); }
        .page-hero h1 { font-size: clamp(38px, 5vw, 64px); color: var(--white); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
        .page-hero p { font-size: 15px; color: rgba(255,255,255,0.8); }

        /* Main */
        .contact-section { padding: 60px 0; }
        .contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

        /* Form Card */
        .hero-card { background: var(--white); border-radius: 28px; padding: 32px; box-shadow: var(--shadow); border: 1px solid rgba(13,19,33,0.04); }
        .hero-card h3 { font-size: 22px; margin-bottom: 24px; color: var(--black); font-family: 'Playfair Display', serif; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group label { font-size: 12px; font-weight: 700; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; }
        .form-group input, .form-group select, .form-group textarea { border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; background: #fff; color: var(--black); outline: none; transition: all 0.3s ease; font-size: 15px; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(226,0,116,0.1); }
        .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237b8695' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .btn-primary.full { width: 100%; padding: 16px 24px; border-radius: 16px; font-size: 15px; }

        /* Contact Info */
        .hero-card#contact-info { padding: 0; overflow: hidden; }
        .hero-card#contact-info > div:first-child { padding: 28px; }
        .section-tag { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px; }
        .quick-contact { display: flex; gap: 12px; margin-top: 16px; }
        .quick-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 12px; font-weight: 600; font-size: 13px; text-decoration: none; transition: all 0.2s; }
        .quick-btn-whatsapp { background: #25d366; color: var(--white); }
        .quick-btn-call { background: var(--accent); color: var(--white); }
        .info-card { margin-top: 24px; }
        .info-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--black); display: flex; align-items: center; gap: 8px; }
        .info-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
        .info-card p:last-child { margin-top: 12px; color: var(--accent); font-size: 13px; }

        /* Map */
        .map-container { position: relative; height: 220px; }
        .map-container img { width: 100%; height: 100%; object-fit: cover; }
        .map-overlay { position: absolute; bottom: 16px; left: 16px; background: var(--white); padding: 12px 16px; border-radius: 12px; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
        .map-overlay i { font-size: 20px; color: var(--accent); }
        .map-overlay strong { font-size: 14px; }
        .map-overlay p { font-size: 12px; color: var(--text-gray); }

        /* Process Grid */
        .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .step-card { background: var(--white); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-sm); text-align: center; }
        .step-number { width: 48px; height: 48px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; margin: 0 auto 16px; }
        .step-card h4 { font-size: 16px; margin-bottom: 8px; }
        .step-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

        /* CTA Block */
        .cta-block { background: linear-gradient(135deg, var(--accent) 0%, #b30166 100%); border-radius: 24px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; }
        .cta-block h3 { font-size: 24px; color: var(--white); margin-bottom: 8px; font-family: 'Playfair Display', serif; }
        .cta-block p { color: rgba(255,255,255,0.85); font-size: 15px; }
        .cta-block .btn-primary { background: var(--white); color: var(--accent); }

        /* Services Accompagnement */
        .services-accompagnement { padding: 60px 0; background: var(--white); }
        .services-accompagnement h2 { text-align: center; font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Playfair Display', serif; }
        .services-accompagnement h2 span { color: var(--accent); }
        .services-accompagnement > .container > p { text-align: center; color: var(--text-gray); font-size: 17px; margin-bottom: 48px; }
        .services-accompagnement-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
        .services-accompagnement-block { display: flex; flex-direction: column; align-items: center; padding: 32px 16px; border-radius: var(--radius); transition: all 0.3s ease; text-decoration: none; }
        .services-accompagnement-block:hover { transform: translateY(-8px); }
        .services-accompagnement-icon { width: auto; height: auto; display: flex; align-items: center; justify-content: center; background: transparent; margin-bottom: 20px; color: var(--black); transition: all 0.3s ease; }
        .services-accompagnement-icon svg { width: 64px; height: 64px; }
        .services-accompagnement-block:hover .services-accompagnement-icon { color: var(--accent); }
        .services-accompagnement-icon .accent { stroke: var(--accent); stroke-width: 2; }
        .services-accompagnement-block h3 { font-size: 14px; font-weight: 800; margin-bottom: 8px; color: var(--black); letter-spacing: 0.5px; text-transform: uppercase; }
        .services-accompagnement-block:hover h3 { color: var(--accent); }
        .services-accompagnement-block span { font-size: 13px; font-weight: 600; color: #9ca3af; }

        /* Footer */
        .footer { background: #1D1D1D; color: var(--white); padding: 60px 0 28px; }
        .footer-desktop-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; max-width: 1360px; margin: 0 auto; padding: 0 32px; }
        .footer-logo { font-size: 24px; margin-bottom: 18px; display: block; font-family: 'Playfair Display', serif; font-weight: 700; }
        .footer-logo span { color: var(--accent); }
        .footer p, .footer a { color: rgba(255,255,255,0.6); font-size: 14px; }
        .footer h4 { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 16px; }
        .footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
        .footer-links a:hover { color: var(--accent); }
        .footer-bottom { padding-top: 28px; border-top: 1px solid #e9ecf3; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: #7b8695; max-width: 1360px; margin: 0 auto; padding: 28px 32px 0; }
        .footer-social { display: flex; gap: 12px; margin-top: 18px; }
        .footer-social a { width: 36px; height: 36px; display: inline-grid; place-items: center; border-radius: 50%; background: #f4f6fb; color: #1d2939; transition: background 0.25s ease; }
        .footer-social a:hover { background: rgba(226,0,116,0.1); color: var(--accent); }

        /* FOOTER ACCORDION */
        .footer-accordion { display: none; }
        .footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-accordion-toggle { width: 100%; background: none; border: none; color: #fff; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
        .footer-accordion-toggle::after { content: '+'; font-size: 20px; transition: transform 0.3s; }
        .footer-accordion-toggle.active::after { transform: rotate(45deg); }
        .footer-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .footer-accordion-content ul { list-style: none; padding: 0 0 16px; }
        .footer-accordion-content a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; line-height: 2.2; display: block; transition: color 0.2s; }
        .footer-accordion-content a:hover { color: var(--gold); }
        .footer-social-mobile { display: flex; gap: 12px; margin-top: 16px; }
        .footer-social-mobile a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: all 0.3s; }
        .footer-social-mobile a:hover { background: var(--gold); }

        /* Back to top */
        .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--accent); color: white; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; }
        .back-to-top.visible { opacity: 1; visibility: visible; }

        /* Burger */
        .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; background: none; border: none; }
        .burger span { display: block; width: 26px; height: 2.5px; background: #1a1a1a; transition: all 0.3s; border-radius: 2px; }
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 1000; padding: 80px 40px 40px; overflow-y: auto; }
        .mobile-nav.active { display: flex; flex-direction: column; animation: fadeIn 0.3s ease; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav a { display: block; padding: 16px 0; font-size: 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); }
        .mobile-close { position: absolute; top: 16px; right: 20px; background: #f5f5f5; border: none; font-size: 24px; cursor: pointer; color: #1a1a1a; line-height: 1; z-index: 1002; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--accent); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Responsive */
        @media (max-width: 1100px) { .contact-grid { grid-template-columns: 1fr; } .process-grid { grid-template-columns: 1fr; } .services-accompagnement-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 860px) { 
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
            ::-webkit-scrollbar { display: none; }
            .container { padding: 0 10px; } 
            .header-top, .nav-links { display: none; }
            .burger { display: flex; }
            .btn-primary { display: none; }
            .page-hero::before { display: none; }
            .header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; }
            .process-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .process-grid::after { content: ''; display: block; width: 100%; text-align: center; padding: 12px; color: var(--text-gray); font-size: 20px; opacity: 0.5; }
            .step-card { min-width: 80vw; scroll-snap-align: center; flex-shrink: 0; }
            .services-accompagnement-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 0 10px; }
            .services-accompagnement-grid::after { content: ''; display: block; width: 100%; text-align: center; padding: 12px; color: var(--text-gray); font-size: 20px; opacity: 0.5; }
            .services-accompagnement-block { min-width: 70vw; scroll-snap-align: center; flex-shrink: 0; }
        }
        @media (max-width: 768px) { 
            * { max-width: 100vw; overflow-x: hidden; }
            body { overflow-x: hidden; }
            .container { padding: 0 10px; max-width: 100%; }
            .section { margin: 0 10px; padding: 40px 10px; }
section { margin: 0 10px; padding: 40px 10px; }
            .nav-links, .nav-actions { display: none !important; } 
            .burger { display: flex !important; }
            .header-top { display: none !important; }
            .btn-primary { display: none; }
            .page-hero { padding: 0; margin: 0 10px; border-radius: 0; }
            .contact-section { padding: 40px 16px; margin: 0 10px; }
            .contact-grid { gap: 24px; }
            .hero-card { padding: 20px; margin: 0 10px; border-radius: 16px; } 
            .form-row { grid-template-columns: 1fr; } 
            .cta-block { flex-direction: column; text-align: center; margin: 0 10px; border-radius: 16px; } 
            .footer-grid { grid-template-columns: 1fr; padding: 0 10px; } 
            .footer-bottom { flex-direction: column; align-items: flex-start; padding: 0 10px; }
            .services-accompagnement-grid { grid-template-columns: 1fr; }
            .services-accompagnement { padding: 40px 16px; margin: 0 10px; }
            .services-accompagnement-grid { gap: 16px; }
            .process-grid { gap: 16px; }
            .step-card { padding: 20px; border-radius: 16px; }
            .offices-section { margin: 48px 10px 0; }
            .services-accompagnement h2 { margin: 0 16px; }
            .services-accompagnement > .container > p { margin: 0 16px; }
            section, .section { margin: 0 16px; padding: 40px 0; }
            .footer { padding: 40px 16px; margin: 40px 0 0; width: 100%; box-sizing: border-box; }
            .footer-desktop-grid { display: none; }
            .footer-accordion { display: block; }
            .footer { margin-top: 40px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 0 16px; }
        }
        
        /* Mobile nav */
        .mobile-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
        .mobile-lang { display: flex; gap: 4px; margin-bottom: 20px; }
        .mobile-lang .lang-btn { background: var(--border); border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-gray); cursor: pointer; border-radius: 4px; }
        .mobile-lang .lang-btn.active { background: var(--accent); color: white; }
        .mobile-nav .btn-login { display: block; width: 100%; text-align: center; margin-top: 20px; }
        .mobile-nav .btn-primary { display: block; width: 100%; text-align: center; margin-top: 12px; }
    

/* ══ HIDE ODOO UI CHROME ══ */
#wrapwrap > header.o_top_fixed_element,
.o_main_navbar,
body > header:not(.header),
#wrapwrap > footer:not(.footer) { display: none !important; }
/* Keep website edit bar */
.o_website_preview .o_action_manager { display: block !important; }
