/* ===========================================
   LANDING PAGES ASSUR'INVEST SOLUTIONS
   Version 3.0 - Styles identiques au site
   =========================================== */

/* Variables CSS */
:root {
    --primary-blue: #1e3a5f;
    --primary-gold: #c9a961;
    --gold-hover: #d4af37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.3;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-hover);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===========================================
   HEADER - Identique au site
   =========================================== */
.lp-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.lp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.lp-header-logo img {
    height: 50px;
    width: auto;
}

.lp-header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-header-back {
    color: var(--primary-blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lp-header-back:hover {
    color: var(--primary-gold);
}

.lp-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
}

.lp-header-phone i {
    color: var(--primary-gold);
}

.lp-header-phone:hover {
    color: var(--primary-gold);
}

.lp-header-cta {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.lp-header-cta:hover {
    background-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ===========================================
   BREADCRUMB
   =========================================== */
.lp-breadcrumb {
    background-color: var(--light-gray);
    padding: 12px 0;
    font-size: 14px;
}

.lp-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.lp-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-breadcrumb-list li:not(:last-child)::after {
    content: "›";
    color: var(--text-gray);
}

.lp-breadcrumb-list a {
    color: var(--primary-blue);
}

.lp-breadcrumb-list a:hover {
    color: var(--primary-gold);
}

.lp-breadcrumb-list .current {
    color: var(--text-gray);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.lp-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c4a6e 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.lp-hero .container {
    position: relative;
    z-index: 1;
}

.lp-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.lp-hero h1 span {
    color: var(--primary-gold);
}

.lp-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.lp-hero-cta {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.lp-hero-cta:hover {
    background-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   REASSURANCE BAR
   =========================================== */
.lp-reassurance {
    background-color: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.lp-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.lp-reassurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lp-reassurance-item i {
    font-size: 24px;
    color: var(--primary-gold);
}

.lp-reassurance-item span {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.lp-reassurance-item strong {
    color: var(--primary-blue);
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */
.lp-section {
    padding: 60px 0;
}

.lp-section-alt {
    background-color: var(--light-gray);
}

.lp-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.lp-section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.lp-section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.lp-section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===========================================
   CARDS GRID
   =========================================== */
.lp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.lp-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.lp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.lp-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c4a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lp-card-icon i {
    font-size: 28px;
    color: var(--primary-gold);
}

.lp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.lp-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.lp-card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-gold);
    font-weight: 600;
}

.lp-card-link:hover {
    color: var(--gold-hover);
}

/* ===========================================
   VILLE CARDS (pour pages HUB)
   =========================================== */
.lp-ville-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.lp-ville-card {
    background-color: var(--white);
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.lp-ville-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.lp-ville-card i {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.lp-ville-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.lp-ville-card span {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===========================================
   FORMULAIRE
   =========================================== */
.lp-form-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c4a6e 100%);
    padding: 60px 0;
}

.lp-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lp-form-title {
    text-align: center;
    margin-bottom: 30px;
}

.lp-form-title h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.lp-form-title p {
    color: var(--text-gray);
}

.lp-form-group {
    margin-bottom: 20px;
}

.lp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
}

.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
}

.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

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

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

.lp-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lp-form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.lp-form-checkbox label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.5;
}

.lp-form-checkbox a {
    color: var(--primary-gold);
}

.lp-form-submit {
    width: 100%;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.lp-form-submit:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.lp-form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Message de succès/erreur */
.lp-form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.lp-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lp-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===========================================
   FAQ ACCORDEON
   =========================================== */
.lp-faq {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.lp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.lp-faq-question:hover {
    background-color: var(--light-gray);
}

.lp-faq-question i {
    color: var(--primary-gold);
    transition: var(--transition);
}

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

.lp-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-answer.open {
    padding: 0 25px 20px;
    max-height: 500px;
}

.lp-faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===========================================
   ZONE D'INTERVENTION
   =========================================== */
.lp-zone {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.lp-zone h3 {
    margin-bottom: 20px;
}

.lp-zone-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lp-zone-badge {
    background-color: var(--white);
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.lp-zone-badge.highlight {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

/* ===========================================
   MENTIONS LEGALES
   =========================================== */
.lp-mentions {
    background-color: var(--light-gray);
    padding: 40px 0;
    font-size: 13px;
    color: var(--text-gray);
}

.lp-mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.lp-mentions-block h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.lp-mentions-block p {
    line-height: 1.6;
}

/* ===========================================
   FOOTER - Identique au site
   =========================================== */
.lp-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 25px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.lp-footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.lp-footer-brand p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.lp-footer-title {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.lp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
}

.lp-footer-contact-item i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.lp-footer-contact-item a {
    color: var(--white);
}

.lp-footer-contact-item a:hover {
    color: var(--primary-gold);
}

.lp-footer-nav {
    list-style: none;
}

.lp-footer-nav li {
    margin-bottom: 10px;
}

.lp-footer-nav a {
    color: var(--text-light);
    font-size: 15px;
}

.lp-footer-nav a:hover {
    color: var(--primary-gold);
}

.lp-footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* ===========================================
   PAGE MERCI
   =========================================== */
.lp-merci {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.lp-merci-content {
    max-width: 600px;
}

.lp-merci-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.lp-merci-icon i {
    font-size: 50px;
    color: var(--white);
}

.lp-merci h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lp-merci p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.lp-merci-cta {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
}

.lp-merci-cta:hover {
    background-color: var(--gold-hover);
    color: var(--white);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 992px) {
    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .lp-form-row {
        grid-template-columns: 1fr;
    }
    
    .lp-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .lp-header {
        padding: 10px 0;
    }
    
    .lp-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .lp-header-logo img {
        height: 40px;
    }
    
    .lp-header-nav {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .lp-header-back {
        display: none;
    }
    
    .lp-header-phone {
        width: 40px;
        height: 40px;
        background: var(--primary-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .lp-header-phone i {
        color: var(--white);
        font-size: 18px;
    }
    
    .lp-header-phone span {
        display: none;
    }
    
    .lp-header-cta {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .lp-hero {
        padding: 40px 0;
    }
    
    .lp-hero h1 {
        font-size: 1.8rem;
    }
    
    .lp-hero-subtitle {
        font-size: 1rem;
    }
    
    .lp-section {
        padding: 40px 0;
    }
    
    .lp-section-title h2 {
        font-size: 1.6rem;
    }
    
    .lp-form-container {
        padding: 25px;
    }
    
    .lp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lp-footer-contact-item {
        justify-content: center;
    }
    
    .lp-reassurance-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .lp-hero h1 {
        font-size: 1.5rem;
    }
    
    .lp-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-ville-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-reassurance-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================================
   NOUVELLES SECTIONS - PAGES CRÉDIT V2
   =========================================== */

/* Mention partenariat 10 banques dans le Hero */
.lp-hero-partenariat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 25px;
    margin: 20px auto;
    max-width: 800px;
    font-size: 14px;
    line-height: 1.6;
}

.lp-hero-partenariat strong {
    color: var(--primary-gold);
}

.lp-hero-partenariat .frais-info {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 8px;
    display: block;
}

/* Logos Banques Partenaires */
.lp-banques-partenaires {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.lp-banques-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.lp-banques-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.lp-banque-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.lp-banque-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.lp-banque-logo i {
    font-size: 32px;
    color: var(--primary-blue);
}

.lp-banque-logo span {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

/* Section Témoignages / Ils nous font confiance */
.lp-confiance {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.lp-confiance-title {
    text-align: center;
    margin-bottom: 40px;
}

.lp-confiance-title h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.lp-confiance-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 15px auto 0;
}

.lp-temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lp-temoignage {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.lp-temoignage::before {
    content: """;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.lp-temoignage-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 30px;
}

.lp-temoignage-auteur {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
}

.lp-temoignage-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c4a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.lp-temoignage-info strong {
    display: block;
    color: var(--primary-blue);
    font-size: 15px;
}

.lp-temoignage-info span {
    font-size: 13px;
    color: var(--text-gray);
}

.lp-temoignage-stars {
    color: var(--primary-gold);
    margin-top: 5px;
}

/* Encadré Conditions Générales */
.lp-cg-encadre {
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-gold);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.lp-cg-encadre h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-cg-encadre h4 i {
    color: var(--primary-gold);
}

.lp-cg-encadre p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.lp-cg-encadre a {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ===========================================
   BOUTON FLOTTANT APPELER
   =========================================== */
.lp-floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.lp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.lp-floating-btn i {
    font-size: 24px;
}

.lp-floating-call-btn {
    background-color: #25D366;
    color: var(--white);
}

.lp-floating-call-btn:hover {
    background-color: #128C7E;
    color: var(--white);
}

.lp-floating-phone-btn {
    background-color: var(--primary-gold);
    color: var(--white);
}

.lp-floating-phone-btn:hover {
    background-color: var(--gold-hover);
    color: var(--white);
}

.lp-floating-devis-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    width: auto;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
}

.lp-floating-devis-btn:hover {
    background-color: #2c4a6e;
    color: var(--white);
}

/* Tooltip pour bouton flottant */
.lp-floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lp-floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ===========================================
   OPTIMISATION MOBILE - HEADER RÉDUIT
   =========================================== */
@media (max-width: 768px) {
    /* Header réduit sur mobile (max 15% de la hauteur) */
    .lp-header {
        padding: 8px 0;
        max-height: 15vh;
    }
    
    .lp-header .container {
        gap: 8px;
    }
    
    .lp-header-logo img {
        height: 35px;
    }
    
    .lp-header-nav {
        gap: 10px;
    }
    
    .lp-header-back {
        font-size: 12px;
    }
    
    .lp-header-back span {
        display: none;
    }
    
    .lp-header-phone {
        font-size: 14px;
    }
    
    .lp-header-phone span {
        display: none;
    }
    
    .lp-header-cta {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* Hero ajusté */
    .lp-hero {
        padding: 40px 0;
    }
    
    .lp-hero h1 {
        font-size: 1.6rem;
    }
    
    .lp-hero-subtitle {
        font-size: 1rem;
    }
    
    .lp-hero-partenariat {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* Logos banques en scroll horizontal sur mobile */
    .lp-banques-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .lp-banque-logo {
        flex-shrink: 0;
        padding: 12px 15px;
    }
    
    .lp-banque-logo i {
        font-size: 24px;
    }
    
    /* Témoignages */
    .lp-temoignages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Boutons flottants sur mobile */
    .lp-floating-call {
        bottom: 15px;
        right: 15px;
    }
    
    .lp-floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .lp-floating-btn i {
        font-size: 22px;
    }
    
    .lp-floating-devis-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .lp-floating-btn::before {
        display: none;
    }
    
    /* Sections */
    .lp-section {
        padding: 40px 0;
    }
    
    .lp-section-title h2 {
        font-size: 1.5rem;
    }
    
    /* Cards */
    .lp-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Formulaire */
    .lp-form-container {
        padding: 25px 20px;
    }
    
    .lp-form-title h2 {
        font-size: 1.4rem;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .lp-header {
        padding: 6px 0;
    }
    
    .lp-header-logo img {
        height: 30px;
    }
    
    .lp-header-cta {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .lp-hero h1 {
        font-size: 1.4rem;
    }
    
    .lp-floating-call {
        bottom: 10px;
        right: 10px;
    }
    
    .lp-floating-btn {
        width: 50px;
        height: 50px;
    }
}


/* ===========================================
   BANQUES PARTENAIRES - Style amélioré
   =========================================== */
.lp-banques-partenaires {
    background-color: var(--light-gray);
    padding: 40px 0;
}

.lp-banques-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.lp-banques-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.lp-banque-logo {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.lp-banque-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.lp-banque-logo i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.lp-banque-logo span {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
}

@media (max-width: 768px) {
    .lp-banques-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lp-banque-logo {
        padding: 15px 10px;
    }
    
    .lp-banque-logo i {
        font-size: 1.5rem;
    }
    
    .lp-banque-logo span {
        font-size: 0.75rem;
    }
}

/* ===========================================
   TÉMOIGNAGES - Style amélioré
   =========================================== */
.lp-confiance {
    padding: 60px 0;
    background-color: var(--white);
}

.lp-temoignages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.lp-temoignage {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.lp-temoignage::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.lp-temoignage-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 0.95rem;
}

.lp-temoignage-auteur {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lp-temoignage-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.lp-temoignage-info {
    flex: 1;
}

.lp-temoignage-info strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1rem;
}

.lp-temoignage-info span {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.lp-temoignage-stars {
    color: var(--primary-gold);
}

.lp-temoignage-stars i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lp-temoignages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lp-temoignage {
        padding: 25px 20px;
    }
    
    .lp-temoignage::before {
        font-size: 3rem;
    }
}

/* ===========================================
   FOOTER - Réseaux sociaux
   =========================================== */
.lp-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.lp-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.lp-footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .lp-footer-social {
        justify-content: center;
    }
}


/* ===========================================
   BANQUES PARTENAIRES - Vrais logos
   =========================================== */
.lp-banques-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.lp-banque-item {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
}

.lp-banque-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.lp-banque-item img {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .lp-banques-logos {
        gap: 15px;
    }
    
    .lp-banque-item {
        padding: 15px 20px;
        min-width: 140px;
        height: 70px;
    }
    
    .lp-banque-item img {
        max-height: 40px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .lp-banques-logos {
        gap: 10px;
    }
    
    .lp-banque-item {
        padding: 12px 15px;
        min-width: 45%;
        height: 60px;
    }
    
    .lp-banque-item img {
        max-height: 35px;
        max-width: 100px;
    }
}


/* ===========================================
   SECTION SUIVEZ-NOUS - Footer
   =========================================== */
.lp-footer-social-col,
.lp-footer-social-section {
    text-align: center;
}

.lp-footer-social-col h4,
.lp-footer-social-section h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.lp-footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.lp-footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.lp-footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
    .lp-footer-social-col,
    .lp-footer-social-section {
        grid-column: 1 / -1;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .lp-footer-social {
        justify-content: center;
    }
}
/* ===========================================
   NOUVEAUX STYLES - BANDEAU PARTENAIRES STYLE CAFPI
   =========================================== */

.lp-partenaires-section {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
}

.lp-partenaires-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.lp-partenaires-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.lp-partenaires-track {
    display: flex;
    animation: scroll-logos 20s linear infinite;
    width: fit-content;
}

.lp-partenaire-logo {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-partenaire-logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none; /* Logos en couleur */
    transition: transform 0.3s ease;
}

.lp-partenaire-logo img:hover {
    transform: scale(1.05);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.lp-partenaires-slider:hover .lp-partenaires-track {
    animation-play-state: paused;
}

/* ===========================================
   NOUVEAUX STYLES - TÉMOIGNAGES STYLE PAGE D'ACCUEIL
   =========================================== */

.lp-temoignages-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 60px 0;
}

.lp-temoignages-section .lp-section-title h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.lp-temoignages-section .lp-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

.lp-temoignages-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-temoignage-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.lp-temoignage-content {
    margin-bottom: 20px;
}

.lp-temoignage-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-gold);
}

.lp-temoignage-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.lp-temoignage-author strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 3px;
}

.lp-temoignage-author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.lp-temoignage-rating {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.lp-temoignage-rating i {
    margin-left: 2px;
}

/* ===========================================
   NOUVEAUX STYLES - FOOTER HARMONISÉ
   =========================================== */

.lp-footer-new {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 50px 0 0;
}

.lp-footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.lp-footer-brand {
    max-width: 300px;
}

.lp-footer-brand .lp-footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.lp-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.9;
}

.lp-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-footer-new h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-footer-new .lp-footer-col p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.lp-footer-new .lp-footer-col p i {
    color: var(--primary-gold);
    margin-right: 8px;
    width: 16px;
}

.lp-footer-new .lp-footer-col a {
    color: var(--text-light);
}

.lp-footer-new .lp-footer-col a:hover {
    color: var(--primary-gold);
}

.lp-footer-zone {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.lp-footer-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-new ul li {
    margin-bottom: 8px;
}

.lp-footer-new ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

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

.lp-footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.lp-footer-bottom-new p {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

.lp-footer-social-new {
    display: flex;
    gap: 15px;
}

.lp-footer-social-new a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.lp-footer-social-new a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

/* ===========================================
   HEADER MOBILE COMPACT
   =========================================== */

@media (max-width: 768px) {
    .lp-header {
        padding: 8px 0;
    }
    
    .lp-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .lp-header-logo img {
        height: 35px;
    }
    
    .lp-header-nav {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .lp-header-back {
        display: none;
    }
    
    .lp-header-phone {
        width: 38px;
        height: 38px;
        background: var(--primary-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .lp-header-phone i {
        color: var(--white);
        font-size: 16px;
    }
    
    .lp-header-phone span {
        display: none;
    }
    
    .lp-header-cta {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    /* Partenaires mobile */
    .lp-partenaires-section {
        padding: 30px 0;
    }
    
    .lp-partenaires-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .lp-partenaire-logo {
        padding: 0 20px;
    }
    
    .lp-partenaire-logo img {
        height: 40px;
        max-width: 120px;
    }
    
    /* Témoignages mobile */
    .lp-temoignages-section {
        padding: 40px 0;
    }
    
    .lp-temoignages-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lp-temoignage-card {
        padding: 20px;
    }
    
    .lp-temoignage-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Footer mobile */
    .lp-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lp-footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .lp-footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lp-footer-bottom-new {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===========================================
   BOUTON TÉLÉPHONE FLOTTANT DORÉ
   =========================================== */

.lp-floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-floating-phone-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
}

.lp-floating-phone-btn:hover {
    background: var(--gold-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    color: var(--white);
}

.lp-floating-devis-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
    transition: all 0.3s ease;
}

.lp-floating-devis-btn:hover {
    background: #2a4a6f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
    color: var(--white);
}

@media (max-width: 768px) {
    .lp-floating-call {
        bottom: 15px;
        right: 15px;
    }
    
    .lp-floating-phone-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lp-floating-devis-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}


/* ===========================================
   AMÉLIORATION SECTION TÉMOIGNAGES EXISTANTE
   =========================================== */

.lp-confiance {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 60px 0;
}

.lp-confiance .lp-section-title h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.lp-confiance .lp-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

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

.lp-temoignage {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-temoignage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.lp-temoignage-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-gold);
}

.lp-temoignage-auteur {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.lp-temoignage-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.lp-temoignage-info {
    flex: 1;
}

.lp-temoignage-info strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 3px;
}

.lp-temoignage-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: block;
    margin-bottom: 5px;
}

.lp-temoignage-stars {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.lp-temoignage-stars i {
    margin-right: 2px;
}

@media (max-width: 768px) {
    .lp-confiance {
        padding: 40px 0;
    }
    
    .lp-temoignages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lp-temoignage {
        padding: 20px;
    }
}

/* ===========================================
   V80 - STYLES CORRIGÉS
   =========================================== */

/* FOOTER STYLE PAGE D'ACCUEIL */
.lp-footer-accueil {
    background: #1a365d;
    color: #fff;
    padding: 60px 0 0;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lp-footer-brand .lp-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.lp-footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.lp-footer-contact h4,
.lp-footer-links h4,
.lp-footer-legal h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.lp-footer-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.lp-footer-contact p i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 16px;
}

.lp-footer-contact a,
.lp-footer-links a,
.lp-footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lp-footer-contact a:hover,
.lp-footer-links a:hover,
.lp-footer-legal a:hover {
    color: var(--primary-gold);
}

.lp-footer-links ul,
.lp-footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-links li,
.lp-footer-legal li {
    margin-bottom: 10px;
}

.lp-footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* TÉMOIGNAGES STYLE PROFESSIONNEL */
.lp-temoignages-pro {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 80px 0;
}

.lp-temoignages-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.lp-temoignages-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.lp-temoignages-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-temoignage-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.lp-temoignage-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.lp-temoignage-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-gold);
    font-family: Georgia, serif;
    line-height: 1;
}

.lp-temoignage-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.lp-temoignage-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.lp-temoignage-role {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.lp-temoignage-rating {
    color: var(--primary-gold);
}

.lp-temoignage-rating i {
    margin-right: 3px;
}

/* BANDEAU PARTENAIRES HORIZONTAL */
.lp-partenaires-horizontal {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.lp-partenaires-h-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: 600;
}

.lp-partenaires-h-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.lp-partenaires-h-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.lp-partenaires-h-logos img:hover {
    transform: scale(1.1);
}

/* BARRE FIXE MOBILE */
/* Barre fixe mobile - cachée par défaut sur desktop */
@media (min-width: 769px) {
    .lp-mobile-fixed-bar {
        display: none !important;
    }
}

/* Barre fixe mobile - visible sur mobile */
@media (max-width: 768px) {
    .lp-mobile-fixed-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        padding: 10px 15px;
        z-index: 9999;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        justify-content: space-around;
        gap: 10px;
    }
    
    body {
        padding-bottom: 70px;
    }
}

.lp-mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lp-mobile-phone {
    background: var(--primary-gold);
    color: #fff;
}

.lp-mobile-devis {
    background: #fff;
    color: var(--primary-blue);
}

.lp-mobile-btn i {
    font-size: 1.1rem;
}

/* HEADER MOBILE COMPACT */
@media (max-width: 768px) {
    .lp-header {
        padding: 8px 0;
    }
    
    .lp-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .lp-header-logo img {
        height: 35px;
    }
    
    .lp-header-nav {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .lp-header-back {
        display: none;
    }
    
    .lp-header-phone {
        display: none;
    }
    
    .lp-header-cta {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* Footer responsive */
    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .lp-footer-brand .lp-footer-logo {
        margin: 0 auto 15px;
    }
    
    /* Témoignages responsive */
    .lp-temoignages-cards {
        grid-template-columns: 1fr;
    }
    
    .lp-temoignages-pro {
        padding: 50px 0;
    }
    
    /* Partenaires responsive */
    .lp-partenaires-h-logos {
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
    }
    
    .lp-partenaires-h-logos img {
        height: 30px;
        min-width: auto;
        flex-shrink: 0;
    }
    
    /* Barre mobile visible */
    .lp-mobile-fixed-bar {
        display: flex;
    }
    
    /* Padding en bas pour la barre fixe */
    body {
        padding-bottom: 70px;
    }
}

/* Desktop : cacher la barre mobile */
@media (min-width: 769px) {
    .lp-mobile-fixed-bar {
        display: none;
    }
}
