/* ========================================
   VARIABLES & BASE
======================================== */

:root {
    --gold: #c9a84c;
    --gold-light: #e0c068;
}

/* ========================================
   BREADCRUMB MOBILE
======================================== */

.ld-breadcrumb-mobile {
    display: none;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.65rem 0;
    margin-top: 10px;
}

.ld-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ld-breadcrumb a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ld-breadcrumb a:hover { color: #c9a84c; }

.ld-breadcrumb span:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.ld-breadcrumb-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.8rem;
}

.desktop-only { display: flex; }

@media (max-width: 767px) {
    .ld-breadcrumb-mobile { display: block; }
    .desktop-only { display: none !important; }
}

/* ========================================
   HERO
======================================== */

.ld-hero {
    position: relative;
    padding: 2.5rem 0 2rem;
    background: #111111;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
}

.ld-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at left, rgba(201,168,76,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.ld-hero-breadcrumb {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ld-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ld-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.ld-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ld-hero-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.ld-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.ld-hero-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin: 0;
    max-width: 600px;
}

/* ========================================
   STATS
======================================== */

.ld-stats-section {
    padding: 2rem 0;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.ld-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #111111;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ld-stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    transition: background 0.3s ease;
}

.ld-stat-card:hover {
    background: rgba(201,168,76,0.04);
}

.ld-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.ld-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ld-stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ld-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.ld-stat-number small {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    font-family: inherit;
}

.ld-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* CTA */
.ld-hero-cta {
    display: flex;
    justify-content: center;
}

.ld-btn-open-form {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ld-btn-open-form:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .ld-hero { padding: 2rem 0 1.75rem; }
    .ld-hero-title { font-size: 1.9rem; }
    .ld-hero-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .ld-stat-card { padding: 1.25rem 1.5rem; gap: 0.75rem; }
    .ld-stat-number { font-size: 1.6rem; }
    .ld-breadcrumb a { font-size: 0.78rem; }
    .ld-breadcrumb span:last-child { font-size: 0.78rem; }
}

@media (max-width: 767px) {
    .ld-hero { padding: 1.5rem 0; }
    .ld-hero-content { gap: 1.1rem; }
    .ld-hero-title { font-size: 1.6rem; }
    .ld-hero-icon { width: 50px; height: 50px; font-size: 1.2rem; border-radius: 12px; }
    .ld-hero-subtitle { font-size: 0.82rem; }
    .ld-breadcrumb a { font-size: 0.72rem; }
    .ld-breadcrumb span:last-child { font-size: 0.72rem; }
    .ld-btn-open-form { padding: 0.75rem 1.4rem; font-weight: 600; font-size: 0.78rem; }

    /* Stats en ligne sur mobile */
    .ld-stats-grid {
        flex-direction: row;
        justify-content: center;
    }
    .ld-stat-divider {
        width: 1px;
        height: 50px;
    }
    .ld-stat-card {
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.25rem 0.75rem;
        gap: 0.6rem;
        text-align: center;
    }
    .ld-stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 0.95rem;
    }
    .ld-stat-body { align-items: center; }
    .ld-stat-number { font-size: 1.4rem; }
    .ld-stat-label { font-size: 0.65rem; letter-spacing: 1px; }
}

@media (max-width: 575px) {
    .ld-hero { padding: 1.25rem 0; }
    .ld-hero-title { font-size: 1.4rem; }
    .ld-hero-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 10px; }
    .ld-breadcrumb a { font-size: 0.7rem; }
    .ld-breadcrumb span:last-child { font-size: 0.7rem; }
    .ld-btn-open-form { padding: 0.7rem 1.3rem; font-weight: 600; font-size: 0.72rem; }

    /* Stats encore plus compactes */
    .ld-stat-card { padding: 1rem 0.5rem; gap: 0.5rem; }
    .ld-stat-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 0.85rem;
    }
    .ld-stat-number { font-size: 1.25rem; }
    .ld-stat-label { font-size: 0.6rem; letter-spacing: 0.5px; }
}


/* ========================================
   SECTION FORMULAIRE
======================================== */

.ld-form-section {
    padding: 2rem 0;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}

.ld-form-wrapper {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

/* Header formulaire */
.ld-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(201,168,76,0.03);
}

.ld-form-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ld-form-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1rem;
    flex-shrink: 0;
}

.ld-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ld-form-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.ld-form-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.ld-form-close:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

/* Grid formulaire */
.ld-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 2rem;
}

.ld-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ld-form-group-full { grid-column: 1 / -1; }

.ld-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.ld-label i { color: #c9a84c; font-size: 0.72rem; }
.ld-required { color: #c9a84c; }
.ld-optional { color: rgba(255,255,255,0.25); font-size: 0.72rem; font-weight: 400; }

.ld-input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.ld-input::placeholder { color: rgba(255,255,255,0.2); }

.ld-input:focus {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.04);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.ld-input.error {
    border-color: rgba(220,53,69,0.5);
    box-shadow: 0 0 0 3px rgba(220,53,69,0.08);
}

.ld-textarea {
    resize: vertical;
    min-height: 120px;
}

.ld-char-counter {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    text-align: right;
    margin-top: 0.25rem;
}

.ld-char-counter.warning { color: #c9a84c; }
.ld-char-counter.error { color: #dc3545; }

/* Étoiles */
.ld-star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    padding: 0.5rem 0;
}

.ld-star-rating input { display: none; }

.ld-star-rating label {
    cursor: pointer;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.15);
    transition: color 0.2s ease;
}

.ld-star-rating label:hover,
.ld-star-rating label:hover ~ label,
.ld-star-rating input:checked ~ label {
    color: #c9a84c;
}

/* Zone upload */
.ld-upload-zone {
    position: relative;
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.ld-upload-zone:hover {
    border-color: rgba(201,168,76,0.35);
}

.ld-upload-zone.dragover {
    border-color: #c9a84c;
    background: rgba(201,168,76,0.04);
}

.ld-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.ld-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 0.5rem;
    text-align: center;
}

.ld-upload-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.ld-upload-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.ld-upload-hint {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}

/* Prévisualisation */
.ld-upload-preview {
    position: relative;
    width: 100%;
}

.ld-upload-preview img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.ld-upload-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 3;
}

.ld-upload-remove:hover {
    background: rgba(220,53,69,0.8);
    border-color: #dc3545;
}

.ld-upload-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: rgba(0,0,0,0.65);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}

.ld-upload-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.ld-upload-note i { color: #c9a84c; font-size: 0.65rem; }

/* Feedback */
#formFeedback {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
}

#formFeedback.success {
    background: rgba(40,167,69,0.1);
    border: 1px solid rgba(40,167,69,0.25);
    color: #5cb85c;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

#formFeedback.error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.25);
    color: #dc3545;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

/* Actions */
.ld-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.ld-btn-cancel {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.ld-btn-cancel:hover {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

.ld-btn-submit {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ld-btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.ld-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========================================
   RESPONSIVE FORMULAIRE
======================================== */

@media (max-width: 767px) {
    .ld-form-grid { grid-template-columns: 1fr; padding: 1.5rem; }
    .ld-form-header { padding: 1.25rem 1.5rem; }
    .ld-form-actions { flex-direction: column-reverse; }
    .ld-btn-cancel, .ld-btn-submit { width: 100%; justify-content: center; }
}

@media (max-width: 575px) {
    .ld-form-header { padding: 1rem 1.25rem; gap: 0.75rem; }
    .ld-form-grid { padding: 1.25rem; gap: 1rem; }
    .ld-form-header-icon { display: none; }
    .ld-star-rating label { font-size: 1.2rem; }
}

/* ========================================
   SECTION TÉMOIGNAGES
======================================== */

.ld-testimonials-section {
    padding: 3rem 0 4rem;
    background: #0d0d0d;
}

/* Header section */
.ld-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.ld-section-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ld-label-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    width: fit-content;
}

.ld-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ld-gold { color: #c9a84c; }

.ld-section-counter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.ld-counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
}

.ld-counter-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Card témoignage */
.ld-card {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    isolation: isolate;
}

.ld-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.07);
}

/* Image */
.ld-card-image {
    min-height: 300px !important;
    height: 300px !important;
    overflow: hidden;
    position: relative;
    display: block;
}

.ld-card-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.ld-card:hover .ld-card-image img {
    transform: scale(1.05);
}

/* Corps */
.ld-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Étoiles */
.ld-card-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ld-card-stars .fa-star {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.15);
}

.ld-card-stars .fa-star.active {
    color: #c9a84c;
}

.ld-card-stars-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    margin-left: 0.35rem;
}

/* Nom du chien */
.ld-card-dog {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ld-card-dog i {
    color: #c9a84c;
    font-size: 0.8rem;
}

/* Texte */
.ld-card-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 0;
    flex: 1;
    font-style: italic;

    /* Limite à 4 lignes */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer card */
.ld-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
}

.ld-card-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ld-card-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c9a84c;
    flex-shrink: 0;
}

.ld-card-author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.ld-card-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

.ld-card-date i { font-size: 0.65rem; }

/* Empty state */
.ld-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #111111;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
}

.ld-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,0.35);
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
}

.ld-empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ld-empty-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

/* ========================================
   CTA BAS DE PAGE
======================================== */

.ld-cta-section {
    padding: 0 0 4rem;
    background: #0d0d0d;
}

.ld-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #111111;
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 3px solid #c9a84c;
    border-radius: 12px;
    padding: 2.5rem;
}

.ld-cta-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.ld-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.ld-cta-text {
    color: rgba(255,255,255,0.55);
    font-size: 0.87rem;
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}

.ld-cta-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ld-btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ld-btn-cta-primary:hover {
    opacity: 0.9;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.ld-btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ld-btn-cta-secondary:hover {
    border-color: rgba(201,168,76,0.4);
    color: #c9a84c;
    background: rgba(201,168,76,0.06);
}

/* ========================================
   RESPONSIVE TÉMOIGNAGES + CTA
======================================== */

@media (max-width: 991px) {
    .ld-testimonials-section { padding: 2.5rem 0 3rem; }
    .ld-cta-section { padding: 0 0 3rem; }
    .ld-section-title { font-size: 1.4rem; }
    .ld-cta-title { font-size: 1.4rem; }
}

@media (max-width: 767px) {
    .ld-testimonials-section { padding: 2rem 0 2.5rem; }
    .ld-section-header { flex-wrap: wrap; gap: 0.75rem; }
    .ld-cta-box { flex-direction: column; padding: 2rem; }
    .ld-cta-right { flex-direction: row; width: 100%; }
    .ld-btn-cta-primary, .ld-btn-cta-secondary { flex: 1; }
    .ld-section-title { font-size: 1.25rem; }
    .ld-cta-title { font-size: 1.25rem; text-align: center; }
    .ld-cta-text { text-align: center; max-width: 100%; }
    .ld-cta-left { align-items: center; }
        .ld-card-image {
        min-height: 300px !important;
        height: 300px !important;
    }
    .ld-card-image img {
        min-height: 300px !important;
    }
}

@media (max-width: 575px) {
    .ld-testimonials-section { padding: 1.5rem 0 2rem; }
    .ld-cta-section { padding: 0 0 2.5rem; }
    .ld-cta-box { padding: 1.5rem; }
    .ld-cta-right { flex-direction: column; }
    .ld-card-image { height: 160px; }
        .ld-card-image {
        min-height: 280px !important;
        height: 280px !important;
    }
    .ld-card-image img {
        min-height: 280px !important;
    }
}