/*-----------------------------------*\
  #style.css
\*-----------------------------------*/


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
   * colors
   */

    --green-blue-crayola: hsl(32, 100%, 50%);
    --prussian-blue: hsl(202, 72%, 15%);
    --eerie-black: hsl(210, 11%, 15%);
    --dark-orange: hsl(202, 75%, 47%);
    --alice-blue: hsl(203, 100%, 97%);
    --light-gray: hsl(0, 0%, 80%);
    --indigo-dye: hsl(202, 64%, 26%);
    --cultured-1: hsl(0, 0%, 94%);
    --cultured-2: hsl(0, 0%, 95%);
    --cultured-3: hsl(0, 0%, 95%);
    --plutinum: hsl(0, 0%, 91%);
    --black_60: hsla(0, 0%, 0%, 0.6);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --onyx: hsl(0, 0%, 24%);

    /**
   * typography
   */

    --ff-oswald: 'Oswald', sans-serif;
    --ff-rubik: 'Rubik', sans-serif;

    --fs-1: 6rem;
    --fs-2: 5rem;
    --fs-3: 4rem;
    --fs-4: 3rem;
    --fs-5: 2.2rem;
    --fs-6: 2rem;
    --fs-7: 1.8rem;
    --fs-8: 1.5rem;
    --fs-9: 1.4rem;
    --fs-10: 1.2rem;

    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /**
   * spacing
   */

    --section-padding: 50px;

    /**
   * shadow
   */

    --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
    --shadow-2: 0px 40px 60px hsla(202, 75%, 47%, 0.7);
    --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);

    /**
   * transition
   */

    --transition: 0.25s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

.prestation,
.container_location {
    background: linear-gradient(to right, #f7f7f7, #e3f2f7);
    color: #333;
    padding-top: 140px;
    padding-bottom: 70px;
}

.prestation h1 {
    text-align: center;
    font-size: var(--fs-3);
    color: var(--dark-orange);
    margin-bottom: 30px;
    font-family: "Oswald";
}

.prestation .section-text {
    text-align: center;
    font-size: 18px;
    font-family: "Rubik";
    color: var(--eerie-black);
    margin-bottom: 50px;
}

.prestation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.prestation-item {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    height: 550px;
    box-shadow: var(--shadow-1);
    transition: transform var(--transition);
    text-align: center;
}

.prestation-item:hover {
    transform: translateY(-5px);
}

.prestation-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.prestation-item h2 {
    font-size: var(--fs-7);
    margin-bottom: 10px;
    color: var(--dark-orange);
    text-transform: uppercase;
}

.price {
    font-weight: var(--fw-700);
    color: var(--green-blue-crayola);
    margin-bottom: 10px;
}

.details {
    font-size: 18px;
    color: var(--onyx);
    line-height: 1.5;
}

.devis-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--dark-orange);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: var(--fw-600);
    transition: background-color var(--transition);
}

.devis-btn:hover {
    background-color: var(--indigo-dye);
}

.section-contact {
    margin-top: 60px;
    font-size: 18px;
    text-align: center;
}

.section-contact a {
    color: var(--dark-orange);
    text-decoration: none;
    font-weight: var(--fw-600);
}

.section-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .prestation-item {
        width: 100%;
    }
}

#btn {
    width: 250px !important;
    font-size: 18px;
    padding-inline: 15px 30px;
    margin-top: 20px;
}

.container_location {
    margin: 0 auto;
}

.titre_location {
    font-size: var(--fs-3);
    color: var(--dark-orange);
    margin-bottom: 30px;
    text-align: center;
    font-family: "Oswald";
}

p.description {
    text-align: center;
    font-size: 1.1em;
    color: var(--black);
    margin-top: 10px;
    line-height: 1.6em;
}

.items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: white;
    border-left: 10px solid var(--green-blue-crayola);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 320px;
    height: 360px;
}

.card img {
    width: 200px;
}

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

.card h2 {
    margin: 0 0 10px;
    color: var(--dark-orange);
    font-size: 1.3em;
}

.card p {
    margin: 0;
    font-weight: bold;
}

.note {
    text-align: center;
    margin-top: 30px;
    color: var(--black);
}

/* Image responsive */
.img-responsive {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 8px;
}

/* Renommage des classes */
.nettoyage-container {
    padding: 160px 20px 60px 20px;
    background-color: #f0f8ff;
}

.nettoyage-container .container-custom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

h1.nettoyage-title {
    text-align: center;
    font-size: var(--fs-3);
    color: var(--dark-orange);
    margin-bottom: 10px;
    font-family: "Oswald";
}

.nettoyage-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.contenu2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 70px;
    margin-bottom: 30px;
}

.plus {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.description h2,
.contenu h2,
.contenu2 h2 {
    font-size: 1.8rem;
    color: var(--dark-orange);
    margin-bottom: 15px;
}

.description ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.description ul li {

    color: #333;
    margin-bottom: 10px;
}

.description p {

    color: #333;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .nettoyage-container .container-custom {
        padding: 20px;
    }

    h1.nettoyage-title {
        font-size: 2rem;
    }

    .nettoyage-text {
        font-size: 1.1rem;
    }

    .img-responsive {
        margin-bottom: 30px;
    }

    .description h2 {
        font-size: 1.6rem;
    }

    .description ul li {
        font-size: 1.1rem;
    }

}


/* ========= VARIABLES (adapte aux couleurs du site) ========= */
:root {
    --brand-blue: hsl(202, 75%, 47%);
    /* bleu principal */
    --brand-orange: hsl(32, 100%, 50%);
    /* orange secondaire */
    --text: #1f2937;
    /* gris très foncé */
    --muted: #6b7280;
    /* gris moyen */
    --bg: #f5f7fb;
    /* fond doux */
    --radius: 16px;
    --shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* ========= CONTAINER & TYPO ========= */
.service-page {
    padding-top: 150px;
    color: var(--text);
    background: transparent;
}

.service-page .container {
    max-width: 1100px;
    margin-inline: auto;
    padding: 24px 16px;
}

.service-page h1 {
    font-size: clamp(1.6rem, 1.2vw + 1.2rem, 2.2rem);
    line-height: 1.2;
    margin: 8px 0 10px;
}

.service-page h2 {
    font-size: clamp(1.2rem, .7vw + 1rem, 1.5rem);
    margin: 22px 0 12px;
}

.service-page p.lead {
    color: var(--text);
}

.service-page .price-tag {
    margin: .25rem 0 .5rem;
    color: var(--brand-blue);
}

.service-page .badge {
    color: #0f5132;
    background: #d1fae5;
    border: 1px solid #10b98122;
    display: inline-block;
    padding: .35rem .6rem;
    border-radius: 999px;
    font-size: 1.3rem;
}

/* ========= BREADCRUMB ========= */
.service-page .breadcrumb {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.service-page .breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.service-page .breadcrumb a:hover {
    color: var(--brand-blue);
    text-decoration: underline;
}

/* ========= HERO ========= */
.service-page .heropresta {
    display: grid;
    gap: 18px;
    align-items: center;
}

.service-page .hero-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
}

.service-page .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

@media (min-width:768px) {
    .service-page .heropresta {
        grid-template-columns: 5fr 7fr;
        gap: 28px;
    }
}

/* ========= BUTTONS ========= */
.service-page .btn3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.15rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(245, 158, 11, .25);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.service-page .btn3:hover {
    transform: translateY(-1px);
}

.service-page .btn3:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(21, 53, 91, .35);
}

.service-page .btn3--outline {
    background: #fff;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 4px 14px rgba(21, 53, 91, .10);
}

.service-page .btn3--wide {
    width: 100%;
}

/* ========= LISTS ========= */
.service-page .list {
    padding-left: 1.1rem;
}

.service-page .list li {
    margin: .4rem 0;
}

.service-page .list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    padding-left: 0;
}

.service-page .list--inline li {
    list-style: none;
}

/* ========= STEPS (numérotation) ========= */
.service-page .steps {
    counter-reset: st;
    padding-left: 0;
}

.service-page .steps li {
    list-style: none;
    position: relative;
    padding-left: 2.2rem;
    margin: .6rem 0;
}

.service-page .steps li::before {
    counter-increment: st;
    content: counter(st);
    position: absolute;
    left: 0;
    top: .1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem;
}

/* ========= GRID (cards/formules) ========= */
.service-page .cards-grid {
    margin-top: 28px;
}

.service-page .grid {
    display: grid;
    gap: 14px;
}

.service-page .grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-page .grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.service-page .card {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 16px 14px;
    box-shadow: var(--shadow);
}

.service-page .card h3 {
    margin: 6px 0 8px;
}

.service-page .card .price {
    color: var(--brand-orange);
    font-weight: 700;
    margin: 0 0 6px;
}

/* ========= FAQ (details) ========= */
.service-page .faq details {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: .9rem 1rem;
    margin: .6rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

.service-page .faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--brand-blue);
    outline: none;
}

.service-page .faq details[open] {
    border-color: #dbeafe;
    box-shadow: 0 6px 18px rgba(21, 53, 91, .08);
}

.service-page .faq details[open] summary {
    margin-bottom: .4rem;
}

/* ========= STICKY CTA (mobile) ========= */
.service-page .cta-bottom {
    display: none;
}

@media (max-width:767.98px) {
    .service-page {
        /* espace pour la barre sticky */
    }

    .service-page .cta-bottom {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: #ffffffcc;
        backdrop-filter: saturate(140%) blur(6px);
        padding: 10px 14px;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, .12);
    }

    .service-page .btn.btn--wide {
        width: 100%;
    }

    /* évite que la barre masque le contenu bas de page */
    .service-page .container {
        padding-bottom: 100px;
    }
}

/* ========= ACCESSIBILITÉ / MISC ========= */
@media (prefers-reduced-motion:reduce) {
    .service-page .btn {
        transition: none;
    }
}