/* pilates.css - Styles spécifiques à la page Pilates
   Les styles communs sont dans styles.css */

.page-hero {
    background: linear-gradient(135deg, #eef8f8 0%, #f8f5ef 52%, #f9eef2 100%);
    padding: 60px 70px 50px;
    position: relative;
    overflow: hidden;
}


.page-hero::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0,172,193,0.12) 0%, transparent 72%);
    border-radius: 50%;
    pointer-events: none;
}


.page-hero::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: -35px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(233,70,122,0.08) 0%, transparent 72%);
    border-radius: 50%;
    pointer-events: none;
}


.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 52px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}


.page-hero-text {
    min-width: 0;
}


.page-hero-image {
    width: 400px;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,172,193,0.12);
    justify-self: end;
    background: linear-gradient(135deg, #eef8f8 0%, #f8f5ef 100%);
}


.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,172,193,0.10);
    border: 1px solid rgba(0,172,193,0.20);
    color: #0b8a9a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}


.page-hero-badge i {
    color: #00acc1;
}


.page-hero h1 {
    font-size: 2.8rem;
    color: #1a4a52;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px 0;
    font-family: 'Nunito', sans-serif;
}


.page-hero h1 span {
    color: #e6467a;
    font-style: italic;
    font-weight: 400;
}


.page-hero-desc {
    font-size: 1.05rem;
    color: #4f6e76;
    line-height: 1.8;
    margin: 0 0 32px 0;
    font-family: 'Nunito', sans-serif;
    max-width: 660px;
}


.page-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}


.page-hero-ctas .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00acc1;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Nunito', sans-serif;
    transition: background 0.3s, transform 0.2s;
}


.page-hero-ctas .btn-primary:hover {
    background: #0097a7;
    transform: translateY(-2px);
}


.page-hero-ctas .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00acc1;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Nunito', sans-serif;
    transition: gap 0.2s;
}


.page-hero-ctas .btn-secondary:hover {
    gap: 14px;
}


.intro-section {
    padding: 60px 70px;
    background: #fff;
}


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


.intro-text h2 {
    font-size: 2rem;
    color: #1a4a52;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.25;
    font-family: 'Nunito', sans-serif;
}


.intro-text h2 em {
    color: #e6467a;
    font-style: italic;
    font-weight: 400;
}


.intro-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-family: 'Nunito', sans-serif;
}


.intro-visual {
    background: linear-gradient(135deg, #eef8f8 0%, #f8f5ef 100%);
    border-radius: 30px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.intro-visual-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b8a9a;
    margin-bottom: 4px;
    font-family: 'Nunito', sans-serif;
}


.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.76);
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(4px);
}


.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    box-shadow: 0 2px 10px rgba(0,172,193,0.10);
}


.benefit-icon i {
    color: #00acc1;
    font-size: 1rem;
}


.benefit-text strong {
    display: block;
    font-size: 0.92rem;
    color: #1a4a52;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: 'Nunito', sans-serif;
}


.benefit-text span {
    font-size: 0.83rem;
    color: #6a8a92;
    line-height: 1.45;
    font-family: 'Nunito', sans-serif;
}


.section-alt {
    background: #fafcfd;
    padding: 60px 70px;
}


.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}


.offer-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,172,193,0.08);
    border: 1px solid rgba(0,172,193,0.10);
    display: flex;
    flex-direction: column;
}


.offer-header {
    background: linear-gradient(135deg, #00acc1, #0097a7);
    padding: 24px;
    text-align: center;
    color: white;
}


.offer-header.alt {
    background: linear-gradient(135deg, #1a4a52, #0d3038);
}


.offer-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif;
}


.offer-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    font-family: 'Nunito', sans-serif;
}


.offer-header p {
    font-size: 0.84rem;
    opacity: 0.88;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}


.offer-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.offer-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.offer-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}


.offer-body ul li i {
    color: #00acc1;
    font-size: 0.76rem;
    margin-top: 4px;
    flex-shrink: 0;
}


.offer-note {
    margin-top: auto;
    background: #f6fbfc;
    border: 1px solid rgba(0,172,193,0.10);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 0.84rem;
    color: #5d7b84;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}


.seance-section {
    padding: 60px 70px;
    background: #fff;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.step-card {
    background: #fff;
    border: 1px solid rgba(0,172,193,0.10);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0,172,193,0.06);
    text-align: center;
}


.step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #00acc1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 16px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 8px 18px rgba(0,172,193,0.22);
}


.step-card h3 {
    font-size: 1.03rem;
    color: #1a4a52;
    margin: 0 0 10px 0;
    font-family: 'Nunito', sans-serif;
}


.step-card p {
    font-size: 0.88rem;
    color: #6e7376;
    line-height: 1.72;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}


.domicile-section {
    background: linear-gradient(135deg, #1a4a52 0%, #0d3038 100%);
    padding: 60px 70px;
}


.domicile-box {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 38px;
    color: white;
    backdrop-filter: blur(4px);
}


.domicile-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    font-family: 'Nunito', sans-serif;
    text-align: center;
}


.domicile-box p {
    font-size: 0.96rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin: 0 auto 22px;
    max-width: 760px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}


.domicile-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}


.domicile-point {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}


.domicile-point i {
    font-size: 1.2rem;
    color: #7ee3ee;
    margin-bottom: 10px;
}


.domicile-point strong {
    display: block;
    font-size: 0.92rem;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 6px;
}


.domicile-point span {
    display: block;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    font-family: 'Nunito', sans-serif;
}


.tarif-banner {
    background: linear-gradient(90deg, #eef8f8 0%, #f7fcfc 100%);
    border-top: 3px solid #00acc1;
    padding: 40px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}


.tarif-info {
    display: flex;
    align-items: center;
    gap: 22px;
}


.tarif-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,172,193,0.12);
    flex: 0 0 64px;
}


.tarif-icon i {
    font-size: 1.6rem;
    color: #00acc1;
}


.tarif-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4a52;
    margin: 0 0 6px 0;
    font-family: 'Nunito', sans-serif;
}


.tarif-text p {
    font-size: 0.9rem;
    color: #5a8090;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}


.tarif-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}


.tarif-ctas .btn-contact {
    background: #00acc1;
}


.faq-section {
    padding: 60px 70px;
    background: #fafcfd;
}


.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}


.faq-item {
    background: #fff;
    border: 1px solid #dff3f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,172,193,0.05);
}


.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}


.faq-question:hover {
    background: #f7fcfd;
}


.faq-q-left {
    display: flex;
    align-items: center;
    gap: 14px;
}


.faq-q-icon {
    width: 36px;
    height: 36px;
    background: rgba(0,172,193,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
}


.faq-q-icon i {
    color: #00acc1;
    font-size: 0.9rem;
}


.faq-question span {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a4a52;
    font-family: 'Nunito', sans-serif;
}


.faq-chevron {
    color: #00acc1;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}


.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}


.faq-answer {
    display: none;
    padding: 0 26px 22px 76px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}


.faq-item.open .faq-answer {
    display: block;
}


@media (max-width: 1100px) {
    .page-hero-inner,
    .intro-grid,
    .offers-grid,
    .steps-grid,
    .domicile-points {
        grid-template-columns: 1fr;
    }

    .page-hero-image {
        width: 280px;
        height: 280px;
        justify-self: center;
    }
}


@media (max-width: 1280px) {
    .page-hero, .breadcrumb, .intro-section, .section-alt, .seance-section, .domicile-section, .faq-section, .tarif-banner, .cta-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}


@media (max-width: 768px) {
    .page-hero, .breadcrumb, .intro-section, .section-alt, .seance-section, .domicile-section, .faq-section, .tarif-banner, .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-hero h1 {
        font-size: 1.95rem;
    }

    .tarif-banner {
        flex-direction: column;
        text-align: center;
    }

    .tarif-info {
        flex-direction: column;
        text-align: center;
    }

    .cta-box {
        padding: 36px 24px;
    }

    .faq-answer {
        padding-left: 26px;
    }
}
