/*
 * ========================================
 * CARD ÉQUICOACHING HORIZONTALE
 * ========================================
 */

.equicoaching-banner {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-top: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equicoaching-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Image équicoaching */
.equicoaching-image {
    flex: 0 0 35%;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.equicoaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equicoaching-banner:hover .equicoaching-image img {
    transform: scale(1.05);
}

/* Contenu équicoaching */
.equicoaching-content {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equicoaching-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(94, 180, 174);
    margin: 0 0 0.75rem 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.equicoaching-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, rgb(94, 180, 174), rgb(45, 106, 79));
    border-radius: 2px;
}

.equicoaching-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

/* Bouton équicoaching */
.equicoaching-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 3px 12px rgba(26, 71, 42, 0.25);
}

.equicoaching-btn:hover {
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    box-shadow: 0 5px 18px rgba(26, 71, 42, 0.35);
}

.equicoaching-btn .btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.equicoaching-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive tablette et mobile */
@media (max-width: 900px) {
    .equicoaching-banner {
        flex-direction: column;
    }

    .equicoaching-image {
        flex: none;
        min-height: 200px;
        max-height: 220px;
    }

    .equicoaching-content {
        padding: 1.5rem;
    }

    .equicoaching-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .equicoaching-content {
        padding: 1.25rem;
    }

    .equicoaching-btn {
        width: 100%;
        justify-content: center;
    }
}
/*
 * ========================================
 * PAGE ÉQUICOACHING - STYLES
 * À ajouter dans ton styles.css
 * ========================================
 */

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.equicoaching-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    background: url("../images/Images-illustrations/chevaux-hero.jpeg") center
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.equicoaching-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(239, 239, 239, 0.85),
        rgba(104, 104, 104, 0.75)
    );
}

.equicoaching-hero .hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 0 1.5rem;
}

.equicoaching-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.equicoaching-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ----------------------------------------
   SECTION INTRODUCTION
   ---------------------------------------- */
.equicoaching-intro {
    padding: 4rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: rgb(94, 180, 174);
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.intro-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(
        135deg,
        rgb(94, 180, 174) 0%,
        rgb(69, 144, 150) 100%
    );
    border-radius: 2px;
}

.intro-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ----------------------------------------
   SECTION POURQUOI LE CHEVAL
   ---------------------------------------- */
.equicoaching-why {
    padding: 4rem 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.why-feature {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-feature h3 {
    font-size: 1.1rem;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    margin: 0 0 0.75rem 0;
}

.why-feature p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.why-conclusion {
    text-align: center;
    font-size: 1.15rem;
    color: #1a472a;
    margin: 2rem 0 0 0;
}

/* ----------------------------------------
   SECTION NOS OFFRES
   ---------------------------------------- */
.equicoaching-offers {
    padding: 4rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.offer-image {
    height: 180px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.offer-content {
    padding: 1.5rem;
}

.offer-tag {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 153, 102) 100%
    );
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.offer-content h3 {
    font-size: 1.25rem;
    color: rgb(94, 180, 174);
    margin: 0 0 0.5rem 0;
}

.offer-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.offer-duration {
    display: inline-block;
    color: rgb(94, 180, 174);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

/* Offre entreprise */
.enterprise-offer {
    background: linear-gradient(45deg, rgb(94, 180, 174), rgb(69, 144, 150));
    border-radius: 12px;
    padding: 2.5rem;
    color: #ffffff;
}

.enterprise-content h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.enterprise-content > p {
    opacity: 0.95;
    margin-bottom: 1rem;
}

.enterprise-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.enterprise-content ul li {
    padding-left: 1.5rem;
    position: relative;
}

.enterprise-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90ee90;
}

.enterprise-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.enterprise-contact p {
    margin: 0 0 0.75rem 0;
}

.contact-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

/* ----------------------------------------
   SECTION PARTENAIRE
   ---------------------------------------- */
.equicoaching-partner {
    padding: 4rem 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.partner-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.partner-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgb(94, 180, 174);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #fd4f4f;
}

/* ----------------------------------------
   SECTION TÉMOIGNAGES
   ---------------------------------------- */
.equicoaching-testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card .quote-icon {
    font-size: 4rem;
    color: #1a472a;
    opacity: 0.15;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   SECTION ÉQUICOACHS PROS
   ---------------------------------------- */
.equicoaching-pros {
    padding: 3rem 0;
}

.bg-accent {
    background: #f0f7f4;
}

.pros-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pros-content h3 {
    font-size: 1.4rem;
    color: #1a472a;
    margin: 0 0 1rem 0;
}

.pros-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.pros-contacts {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pros-link {
    color: #1a472a;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.pros-link:hover {
    background: #e8f5e9;
}

.pros-contacts .separator {
    color: #888;
}

/* ----------------------------------------
   CTA FINAL
   ---------------------------------------- */
.equicoaching-cta {
    padding: 4rem 0;
}

.cta-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f5e9;
}

.cta-box h3 {
    font-size: 1.75rem;
    color: rgb(94, 180, 174);
    margin: 0 0 0.75rem 0;
}

.cta-box > p {
    color: #666;
    margin: 0 0 1.5rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.equicoaching-cta .cta-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(
        135deg,
        rgb(94, 180, 174) 0%,
        rgb(69, 144, 150) 100%
    );
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.25);
}

.equicoaching-cta .cta-primary:hover {
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.35);
}

.equicoaching-cta .cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(
        135deg,
        rgb(94, 180, 174) 0%,
        rgb(69, 144, 150) 100%
    );
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.25);
}

.equicoaching-cta .cta-secondary:hover {
    background: linear-gradient(
        135deg,
        rgb(255, 107, 107) 0%,
        rgb(255, 94, 77) 100%
    );
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.35);
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 992px) {
    .intro-grid,
    .why-content,
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image,
    .why-image,
    .partner-image {
        order: -1;
    }

    .partner-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .enterprise-content ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .equicoaching-hero h1 {
        font-size: 2.25rem;
    }

    .equicoaching-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-text h2,
    .section-title {
        font-size: 1.75rem;
    }

    .enterprise-offer {
        padding: 1.75rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .equicoaching-hero {
        min-height: 280px;
    }

    .equicoaching-hero h1 {
        font-size: 1.85rem;
    }

    .partner-socials {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .equicoaching-cta .cta-primary,
    .equicoaching-cta .cta-secondary {
        width: 100%;
        text-align: center;
    }
}
