/* =========================================================
   DRY NEEDLING PAGE
   Get Well Physiotherapy & Sports Injury Clinic
   ========================================================= */

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.dry-needling-page .inner-page-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
        url("../images/dry-needling-hero.webp") center center / cover no-repeat;
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.dry-needling-intro {
    padding: 90px 0;
}

.dry-needling-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dry-needling-intro-content h2 {
    margin-bottom: 22px;
}

.dry-needling-intro-content p {
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   WHAT IS DRY NEEDLING
   --------------------------------------------------------- */

.dry-needling-what {
    padding: 90px 0;
    background: #f5f9fc;
}

.dry-needling-what-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.dry-needling-what-content h2 {
    margin-bottom: 25px;
}

.dry-needling-what-content p {
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   BENEFITS
   --------------------------------------------------------- */

.dry-needling-benefits {
    padding: 90px 0;
}

.dry-needling-benefits-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.dry-needling-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dry-needling-benefit-card {
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e4edf3;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dry-needling-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dry-needling-benefit-card h3 {
    margin-bottom: 12px;
    color: #0077B9;
}


/* ---------------------------------------------------------
   CONDITIONS
   --------------------------------------------------------- */

.dry-needling-conditions {
    padding: 90px 0;
    background: #f5f9fc;
}

.dry-needling-conditions-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.dry-needling-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
    max-width: 950px;
    margin: 0 auto;
}

.dry-needling-condition {
    position: relative;
    padding: 18px 22px 18px 48px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5edf2;
}

.dry-needling-condition::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #00A651;
    font-weight: 700;
}


/* ---------------------------------------------------------
   WHY GET WELL
   --------------------------------------------------------- */

.dry-needling-why {
    padding: 90px 0;
}

.dry-needling-why-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.dry-needling-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dry-needling-why-card {
    padding: 35px 28px;
    text-align: center;
    background: #f8fbfd;
    border-radius: 12px;
}

.dry-needling-why-card h3 {
    margin-bottom: 12px;
    color: #0077B9;
}


/* ---------------------------------------------------------
   FIRST VISIT
   --------------------------------------------------------- */

.dry-needling-first-visit {
    padding: 90px 0;
    background: #f5f9fc;
}

.dry-needling-first-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.dry-needling-first-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dry-needling-first-card {
    padding: 30px 22px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e4edf3;
    text-align: center;
}

.dry-needling-first-card h3 {
    margin-bottom: 12px;
    color: #0077B9;
}


/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.dry-needling-faq {
    padding: 90px 0;
}

.dry-needling-faq-header {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.dry-needling-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.dry-needling-faq-item {
    margin-bottom: 15px;
    padding: 22px 25px;
    background: #f8fbfd;
    border-radius: 10px;
    border: 1px solid #e4edf3;
}

.dry-needling-faq-item h3 {
    margin-bottom: 10px;
    color: #0077B9;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.dry-needling-cta {
    padding: 85px 20px;
    background: #0077B9;
    text-align: center;
    color: #ffffff;
}

.dry-needling-cta h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.dry-needling-cta p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: #ffffff;
}

.dry-needling-cta .btn {
    display: inline-block;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .dry-needling-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .dry-needling-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dry-needling-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dry-needling-first-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {

    .dry-needling-intro,
    .dry-needling-what,
    .dry-needling-benefits,
    .dry-needling-conditions,
    .dry-needling-why,
    .dry-needling-first-visit,
    .dry-needling-faq {
        padding: 65px 0;
    }

    .dry-needling-benefits-grid,
    .dry-needling-conditions-grid,
    .dry-needling-why-grid,
    .dry-needling-first-grid {
        grid-template-columns: 1fr;
    }

    .dry-needling-benefits-header,
    .dry-needling-conditions-header,
    .dry-needling-why-header,
    .dry-needling-first-header,
    .dry-needling-faq-header {
        margin-bottom: 35px;
    }

    .dry-needling-condition {
        padding-left: 45px;
    }

    .dry-needling-cta {
        padding: 65px 20px;
    }
}