/* =========================================================
   AHHC - ALEEM HEALTH AND HIJAMA CENTRE
   Main Stylesheet
   ========================================================= */


/* =========================
   1. RESET & GLOBAL
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #075b3b;
    --dark-green: #03452d;
    --light-green: #eaf5ef;

    --navy: #102f55;
    --dark: #17231f;
    --text: #4f5d57;
    --white: #ffffff;
    --light-bg: #f7faf8;
    --border: #dfe9e3;

    --container-width: 1180px;

    --shadow: 0 12px 35px rgba(7, 91, 59, 0.08);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(92%, var(--container-width));
    margin: 0 auto;
}


/* =========================
   2. HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--border);
}

.header-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 190px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);

    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--primary-green);
}

.header-button {
    background: var(--primary-green);
    color: var(--white);

    padding: 12px 21px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.header-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    border: none;
    background: none;

    font-size: 28px;
    cursor: pointer;

    color: var(--primary-green);
}


/* =========================
   3. HERO
   ========================= */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 69, 45, 0.94) 0%,
            rgba(3, 69, 45, 0.78) 45%,
            rgba(3, 69, 45, 0.20) 100%
        ),
        url("../images/hero.jpg") center/cover no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 255, 255, 0.08),
            transparent 35%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-label {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #d5f1e2;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;

    margin-bottom: 25px;

    font-weight: 800;
}

.hero-description {
    max-width: 570px;

    font-size: 18px;
    line-height: 1.7;

    color: #e7f2ec;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}


    /* =========================
   BUTTONS
   ========================= */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 13px 25px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.primary-button {
    background: var(--white);
    color: var(--primary-green);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.secondary-button:hover {
    background: var(--white);
    color: var(--primary-green);
}


/* =========================
   4. QUICK INFO
   ========================= */

.quick-info {
    position: relative;
    z-index: 5;

    margin-top: -55px;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.info-card {
    min-height: 130px;
    padding: 25px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: 0.25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: #bcd8ca;
}

.info-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--light-green);

    font-size: 22px;
}

.info-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
}

/* ========================================
   SERVICES SECTION
======================================== */

.services-section {

    padding: 110px 0;

    background: #ffffff;
}


/* ========================================
   SERVICES HEADING
======================================== */

.services-section .section-heading {

    max-width: 780px;

    margin: 0 auto 60px;

    text-align: center;
}

.services-section .section-heading span {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.services-section .section-heading h2 {

    margin: 0 0 18px;
}

.services-section .section-heading p {

    max-width: 680px;

    margin: 0 auto;

    line-height: 1.8;
}


/* ========================================
   SERVICES GRID
======================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* ========================================
   SERVICE CARD
======================================== */

.service-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 330px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {

    transform: translateY(-7px);

    border-color: #bcd8ca;

    box-shadow:
        0 18px 40px rgba(7, 91, 59, 0.10);
}


/* ========================================
   SERVICE ICON
======================================== */

.service-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: var(--light-green);

    font-size: 23px;
}


/* ========================================
   SERVICE CONTENT
======================================== */

.service-content {

    display: flex;

    flex-direction: column;

    flex: 1;
}


/* ========================================
   SERVICE CATEGORY
======================================== */

.service-category {

    display: inline-block;

    margin-bottom: 9px;

    color: var(--primary-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1.4;
}


/* ========================================
   SERVICE TITLE
======================================== */

.service-content h3 {

    margin: 0 0 12px;

    color: var(--dark);

    font-size: 20px;

    line-height: 1.3;
}


/* ========================================
   SERVICE DESCRIPTION
======================================== */

.service-content p {

    margin: 0 0 22px;

    font-size: 14px;

    line-height: 1.7;
}


/* ========================================
   SERVICE LINK
======================================== */

.service-content a {

    margin-top: auto;

    color: var(--primary-green);

    font-size: 13px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.service-content a:hover {

    color: var(--dark-green);

    transform: translateX(3px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


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

@media (max-width: 650px) {

    .services-section {

        padding: 80px 0;
    }

    .services-section .section-heading {

        margin-bottom: 40px;
    }

    .services-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {

        min-height: auto;

        padding: 27px;
    }

    .service-content h3 {

        font-size: 19px;
    }

}

   
/* ========================================
   ABOUT AHHC SECTION
======================================== */

.about-section {
    padding: 110px 0;
    background: #f7f9fc;
}


/* ========================================
   ABOUT LAYOUT
======================================== */

.about-layout {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 75px;
}


/* ========================================
   ABOUT IMAGE SLIDER
======================================== */

.about-gallery {
    width: 100%;
}

.about-slider {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;

    border-radius: 24px;

    background: #e9eef3;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.10);
}


/* ========================================
   SLIDES
======================================== */

.about-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.about-slide.active {
    opacity: 1;

    visibility: visible;

    z-index: 1;
}


/* ========================================
   SLIDE IMAGES
======================================== */

.about-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.04);

    transition:
        transform 5s ease;
}

.about-slide.active img {
    transform: scale(1);
}


/* ========================================
   SLIDE OVERLAY
======================================== */

.about-slider::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0, 0, 0, 0.30)
        );
}


/* ========================================
   SLIDE INDICATORS
======================================== */

.about-dots {
    position: absolute;

    left: 28px;
    bottom: 25px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;
}

.about-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.about-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #ffffff;
}


/* ========================================
   ABOUT CONTENT
======================================== */

.about-content {
    max-width: 600px;
}

.about-label {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.about-content h2 {
    margin: 0 0 23px;

    font-size: 42px;

    line-height: 1.16;

    letter-spacing: -0.5px;
}


.about-content p {
    margin: 0 0 17px;

    font-size: 15px;

    line-height: 1.8;
}


.about-content .about-intro {
    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   MORE ABOUT CONTENT
======================================== */

.more-about-content {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease;
}

.more-about-content.open {
    max-height: 500px;

    opacity: 1;

    margin-top: 5px;
}


/* ========================================
   MORE ABOUT BUTTON
======================================== */

.more-about-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 14px;

    padding: 14px 20px;

    border: none;

    border-radius: 8px;

    background: transparent;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition:
        gap 0.3s ease,
        opacity 0.3s ease;
}

.more-about-button:hover {
    gap: 17px;

    opacity: 0.75;
}

.more-about-arrow {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}

.more-about-button.active .more-about-arrow {
    transform: rotate(90deg);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .about-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-content {
        max-width: 750px;
    }

    .about-slider {
        height: 520px;
    }

    .about-content h2 {
        font-size: 36px;
    }

}


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

@media (max-width: 650px) {

    .about-section {
        padding: 80px 0;
    }

    .about-layout {
        gap: 38px;
    }

    .about-slider {
        height: 420px;

        border-radius: 18px;
    }

    .about-content h2 {
        font-size: 31px;

        line-height: 1.2;
    }

    .about-content .about-intro {
        font-size: 16px;
    }

    .about-content p {
        font-size: 14px;

        line-height: 1.75;
    }

    .about-dots {
        left: 20px;

        bottom: 20px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 400px) {

    .about-slider {
        height: 360px;
    }

    .about-content h2 {
        font-size: 28px;
    }

}
/* ========================================
   DOCTORS SECTION
======================================== */

.doctors-section {
    padding: 110px 0;
    background: #f7f9fc;
}


/* ========================================
   SECTION HEADING
======================================== */

.doctors-section .section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.doctors-section .section-heading span {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.doctors-section .section-heading h2 {
    margin: 0 0 18px;
}

.doctors-section .section-heading p {
    max-width: 650px;
    margin: 0 auto;

    line-height: 1.8;
}


/* ========================================
   DOCTORS GRID
======================================== */

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


/* ========================================
   DOCTOR CARD
======================================== */

.doctor-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.doctor-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}


/* ========================================
   DOCTOR IMAGE
======================================== */

.doctor-image {
    position: relative;

    width: 100%;
    height: 320px;

    overflow: hidden;

    background: #eef2f6;
}

.doctor-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.04);
}


/* ========================================
   DOCTOR INFORMATION
======================================== */

.doctor-info {
    padding: 25px 26px 28px;
}

.doctor-info span {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.doctor-info h3 {
    margin: 0 0 10px;

    font-size: 21px;
    line-height: 1.3;
}

.doctor-info p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   SUBTLE CARD TOP ACCENT
======================================== */

.doctor-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    z-index: 2;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


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

@media (max-width: 650px) {

    .doctors-section {
        padding: 80px 0;
    }

    .doctors-section .section-heading {
        margin-bottom: 40px;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .doctor-image {
        height: 340px;
    }

    .doctor-info {
        padding: 23px 22px 25px;
    }

}

/* =========================
   9. WHY CHOOSE US
   ========================= */

.why-us-section {
    background: var(--white);
}

.why-us-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    transition: 0.25s ease;
}

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

    box-shadow: var(--shadow);
}

.why-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: var(--light-green);

    color: var(--primary-green);

    font-size: 20px;
    font-weight: 800;
}

.why-card h3 {
    color: var(--dark);

    font-size: 18px;

    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
}


/* ========================================
   FACILITIES SECTION
======================================== */

.facilities-section {
    padding: 110px 0;
    background: #ffffff;
}


/* ========================================
   FACILITIES HEADING
======================================== */

.facilities-section .section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.facilities-section .section-heading span {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.facilities-section .section-heading h2 {
    margin: 0 0 18px;
}

.facilities-section .section-heading p {
    max-width: 680px;

    margin: 0 auto;

    line-height: 1.8;
}


/* ========================================
   FACILITIES GRID
======================================== */

.facilities-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


/* ========================================
   FACILITY CARD
======================================== */

.facility-card {
    position: relative;

    min-height: 340px;

    overflow: hidden;

    border-radius: 20px;

    background: #111;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}


/* ========================================
   FACILITY IMAGE
======================================== */

.facility-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


/* ========================================
   IMAGE HOVER
======================================== */

.facility-card:hover .facility-image img {
    transform: scale(1.06);
}


/* ========================================
   DARK OVERLAY
======================================== */

.facility-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.28) 55%,
            rgba(0, 0, 0, 0.02) 100%
        );
}


/* ========================================
   FACILITY CONTENT
======================================== */

.facility-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 30px;
}

.facility-overlay > span {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.75;
}

.facility-overlay h3 {
    margin: 0 0 8px;

    font-size: 23px;

    line-height: 1.3;

    color: #ffffff;
}

.facility-overlay p {
    max-width: 430px;

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}


/* ========================================
   LARGE FACILITY
======================================== */

.facility-large {
    min-height: 430px;
}


/* ========================================
   WIDE FACILITY
======================================== */

.facility-wide {
    min-height: 430px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 850px) {

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

    .facility-card,
    .facility-large,
    .facility-wide {
        min-height: 390px;
    }

}


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

@media (max-width: 600px) {

    .facilities-section {
        padding: 80px 0;
    }

    .facilities-section .section-heading {
        margin-bottom: 40px;
    }

    .facility-card,
    .facility-large,
    .facility-wide {
        min-height: 340px;

        border-radius: 17px;
    }

    .facility-overlay {
        padding: 24px;
    }

    .facility-overlay h3 {
        font-size: 20px;
    }

    .facility-overlay p {
        font-size: 13px;
    }

}

/* ========================================
   APPOINTMENT CTA
======================================== */

.appointment-section {
    padding: 75px 0;

    background: #f1f5f9;
}

.appointment-container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.appointment-content {
    max-width: 700px;
}

.appointment-content > span {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.appointment-content h2 {
    margin: 0 0 15px;

    font-size: 34px;
    line-height: 1.2;
}

.appointment-content p {
    max-width: 650px;

    margin: 0;

    font-size: 15px;
    line-height: 1.75;
}

.appointment-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    padding: 110px 0;

    background: #ffffff;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 75px;

    align-items: stretch;
}


/* ========================================
   CONTACT CONTENT
======================================== */

.contact-content {
    max-width: 600px;
}

.contact-content .section-label {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.contact-content h2 {
    margin: 0 0 18px;

    font-size: 42px;
    line-height: 1.2;
}

.contact-intro {
    margin: 0 0 38px;

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   CONTACT DETAILS
======================================== */

.contact-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px 35px;
}

.contact-item {
    padding-bottom: 20px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-item-label {
    margin-bottom: 8px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.contact-item a {
    font-size: 15px;

    font-weight: 700;

    text-decoration: none;
}

.contact-item p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;
}


/* ========================================
   MAP / LOCATION CARD
======================================== */

.map-container {
    min-height: 500px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #e9eef3,
            #dce5ec
        );
}

.map-placeholder {
    height: 100%;

    min-height: 500px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    padding: 55px;
}

.map-placeholder > span {
    margin-bottom: 13px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.map-placeholder h3 {
    margin: 0 0 14px;

    font-size: 30px;

    line-height: 1.25;
}

.map-placeholder p {
    max-width: 420px;

    margin: 0 0 28px;

    font-size: 15px;

    line-height: 1.7;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .appointment-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-content {
        max-width: 750px;
    }

}


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

@media (max-width: 600px) {

    .appointment-section {
        padding: 60px 0;
    }

    .appointment-content h2 {
        font-size: 29px;
    }

    .appointment-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .appointment-buttons a {
        text-align: center;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-content h2 {
        font-size: 32px;
    }

    .contact-details {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .map-container,
    .map-placeholder {
        min-height: 400px;
    }

    .map-placeholder {
        padding: 35px;
    }

}

/* =========================
   13. FOOTER
   ========================= */

.site-footer {
    padding-top: 75px;

    background: #082d20;

    color: #c8d8d1;
}


/* =========================
   FOOTER GRID
========================= */

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 65px;

    padding-bottom: 60px;
}


/* =========================
   FOOTER ABOUT
========================= */

.footer-about img {
    width: 185px;

    margin-bottom: 22px;

    filter: brightness(0) invert(1);
}

.footer-about p {
    max-width: 390px;

    margin: 0 0 7px;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   FOOTER HEADINGS
========================= */

.footer-grid h3 {
    margin: 0 0 22px;

    color: var(--white);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.3px;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-links a,
.footer-contact a {
    color: #c8d8d1;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);

    transform: translateX(3px);
}


/* =========================
   FOOTER CONTACT
========================= */

.footer-contact p {
    margin: 0;

    color: #c8d8d1;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #9fb4aa;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================
   14. MOBILE NAVIGATION
========================= */

@media (max-width: 900px) {

    /* Header */

    .main-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-container {
        min-height: 72px;
    }

    .logo img {
        width: 165px;
    }


    /* Quick Info */

    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Why Us */

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Doctors */

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* About */

    .about-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* Appointment */

    .appointment-container {
        flex-direction: column;

        align-items: flex-start;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

}


/* =========================
   SMALL MOBILE FOOTER
========================= */

@media (max-width: 600px) {

    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 45px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-about img {
        width: 165px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

}


/* =========================
   15. TABLET
   ========================= */

@media (max-width: 700px) {

    .hero {
        min-height: 600px;

        background:
            linear-gradient(
                90deg,
                rgba(3, 69, 45, 0.92),
                rgba(3, 69, 45, 0.65)
            ),
            url("../images/hero.jpg") center/cover no-repeat;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .services-section,
    .about-section,
    .doctors-section,
    .why-us-section,
    .facilities-section,
    .contact-section {
        padding: 75px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 350px;
    }

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

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


/* =========================
   16. MOBILE
   ========================= */

@media (max-width: 520px) {

    .container {
        width: min(90%, var(--container-width));
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }

    .quick-info {
        margin-top: -30px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: 100px;
    }

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 32px;
    }

    .service-card {
        padding: 28px;
    }

    .appointment-buttons {
        width: 100%;

        flex-direction: column;
    }

    .appointment-buttons a {
        width: 100%;
    }

    .map-placeholder {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   MOBILE NAVIGATION
======================================== */

@media (max-width: 768px) {

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

}
/* ========================================
   MOBILE NAVIGATION
======================================== */

@media (max-width: 768px) {

    .header-container {
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: flex-start;

        padding: 20px;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;
        border: none;
        background: transparent;
    }

}
/* =========================
   MOBILE MENU
========================= */

.main-nav.active {
    display: flex;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 15px 4% 20px;

    background: var(--white);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.main-nav.active a {
    width: 100%;

    padding: 13px 0;

    font-size: 15px;
}

.menu-toggle.active {
    font-size: 0;
}

.menu-toggle.active::before {
    content: "×";

    font-size: 32px;

    line-height: 1;
}

/* ========================================
   HEADER SCROLL EFFECT
======================================== */

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


/* ========================================
   PHYSIOTHERAPY & REHABILITATION SECTION
======================================== */

.physio-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #eef8f3 0%,
            #f7faf8 55%,
            #ffffff 100%
        );
}


/* ========================================
   MAIN LAYOUT
======================================== */

.physio-layout {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 70px;
}


/* ========================================
   LEFT CONTENT
======================================== */

.physio-content {

    max-width: 560px;
}

.physio-content .section-label {

    margin-bottom: 15px;
}

.physio-content h2 {

    margin: 0 0 22px;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;
}

.physio-content p {

    margin-bottom: 17px;

    font-size: 15px;

    line-height: 1.8;
}

.physio-content .physio-intro {

    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   PHYSIOTHERAPY BUTTON
======================================== */

.physio-button {

    margin-top: 15px;

    background: var(--primary-green);

    color: var(--white);
}

.physio-button:hover {

    background: var(--dark-green);

    color: var(--white);
}


/* ========================================
   SPECIALITY GRID
======================================== */

.physio-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* ========================================
   SPECIALITY CARD
======================================== */

.physio-card {

    position: relative;

    min-height: 245px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(7, 91, 59, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.physio-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(7, 91, 59, 0.11);
}


/* ========================================
   ICON
======================================== */

.physio-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background: var(--light-green);

    font-size: 23px;
}


/* ========================================
   CARD CONTENT
======================================== */

.physio-card h3 {

    margin: 0 0 10px;

    color: var(--dark);

    font-size: 19px;

    line-height: 1.35;
}

.physio-card p {

    margin: 0;

    font-size: 14px;

    line-height: 1.7;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .physio-layout {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .physio-content {

        max-width: 750px;
    }

}


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

@media (max-width: 650px) {

    .physio-section {

        padding: 80px 0;
    }

    .physio-layout {

        gap: 38px;
    }

    .physio-content h2 {

        font-size: 31px;

        line-height: 1.2;
    }

    .physio-content .physio-intro {

        font-size: 16px;
    }

    .physio-content p {

        font-size: 14px;

        line-height: 1.75;
    }

    .physio-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .physio-card {

        min-height: auto;

        padding: 27px;
    }
/* =========================================================
   AHHC - PHYSIOTHERAPY SERVICE PAGE
   services/physiotherapy.html
   ========================================================= */


/* =========================
   1. RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #075b3b;
    --dark-green: #03452d;

    --dark: #17231f;
    --text: #4f5d57;

    --white: #ffffff;

    --light-bg: #f7faf8;
    --light-green: #eaf5ef;

    --border: #dfe9e3;

    --container-width: 1180px;

    --radius: 18px;

    --shadow: 0 12px 35px rgba(7, 91, 59, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--container-width));

    margin: 0 auto;
}


/* =========================
   2. HEADER
   ========================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--border);
}

.header-container {
    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 190px;

    height: auto;
}

.main-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.main-nav a {
    font-size: 14px;

    font-weight: 600;

    color: var(--dark);

    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--primary-green);
}

.header-button {
    background: var(--primary-green);

    color: var(--white);

    padding: 12px 21px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s ease;
}

.header-button:hover {
    background: var(--dark-green);

    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    border: none;

    background: none;

    font-size: 28px;

    cursor: pointer;

    color: var(--primary-green);
}


/* =========================
   3. COMMON BUTTONS
   ========================= */

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 13px 25px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s ease;
}

.primary-button {
    background: var(--primary-green);

    color: var(--white);
}

.primary-button:hover {
    background: var(--dark-green);

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(7, 91, 59, 0.18);
}

.secondary-button {
    border: 1px solid var(--primary-green);

    color: var(--primary-green);

    background: transparent;
}

.secondary-button:hover {
    background: var(--primary-green);

    color: var(--white);

    transform: translateY(-2px);
}


/* =========================
   4. SERVICE PAGE HERO
   ========================= */

.service-page-hero {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 69, 45, 0.94),
            rgba(3, 69, 45, 0.76),
            rgba(3, 69, 45, 0.35)
        ),
        url("../images/physiotherapy-hero.jpg")
        center/cover no-repeat;
}

.service-page-hero-content {
    max-width: 700px;

    color: var(--white);

    padding: 70px 0;
}

.service-page-hero .section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #d5f1e2;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.service-page-hero h1 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.08;

    margin-bottom: 24px;

    color: var(--white);
}

.service-page-hero p {
    max-width: 650px;

    margin-bottom: 32px;

    color: #e7f2ec;

    font-size: 18px;

    line-height: 1.7;
}

.service-page-hero .hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.service-page-hero .primary-button {
    background: var(--white);

    color: var(--primary-green);
}

.service-page-hero .primary-button:hover {
    background: var(--light-green);

    color: var(--dark-green);
}

.service-page-hero .secondary-button {
    border-color: rgba(255, 255, 255, 0.7);

    color: var(--white);
}

.service-page-hero .secondary-button:hover {
    background: var(--white);

    color: var(--primary-green);
}


/* =========================
   5. INTRODUCTION
   ========================= */

.service-intro-section {
    padding: 95px 0;

    background: var(--white);
}

.service-intro-content {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.service-intro-content .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.service-intro-content h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    margin-bottom: 25px;
}

.service-intro-content p {
    max-width: 800px;

    margin: 0 auto 17px;

    font-size: 16px;
}


/* =========================
   6. PHYSIOTHERAPY SERVICES
   ========================= */

.physio-services-section {
    padding: 100px 0;

    background: var(--light-bg);
}

.section-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin-bottom: 18px;
}

.section-heading p {
    font-size: 16px;

    color: var(--text);
}


/* =========================
   7. PHYSIO SERVICE CARDS
   ========================= */

.physio-page-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.physio-page-card {
    padding: 35px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);

    transition: 0.3s ease;
}

.physio-page-card:hover {
    transform: translateY(-6px);

    border-color: #bcd8ca;

    box-shadow: var(--shadow);
}

.physio-page-icon {
    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 16px;

    background: var(--light-green);

    font-size: 25px;
}

.physio-page-card h3 {
    color: var(--dark);

    font-size: 22px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.physio-page-card p {
    font-size: 15px;

    margin-bottom: 20px;
}

.physio-page-card ul {
    list-style: none;

    display: grid;

    gap: 9px;
}

.physio-page-card li {
    position: relative;

    padding-left: 22px;

    font-size: 14px;
}

.physio-page-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--primary-green);

    font-weight: 800;
}

/* =========================
   8. WHO CAN BENEFIT
   ========================= */

.physio-benefits-section {
    padding: 100px 0;

    background: var(--white);
}

.benefits-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: start;
}

.benefits-content {
    position: sticky;

    top: 120px;
}

.benefits-content .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.benefits-content h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin-bottom: 20px;
}

.benefits-content p {
    font-size: 16px;
}

.benefits-list {
    display: grid;

    gap: 15px;
}

.benefit-item {
    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--light-bg);

    transition: 0.25s ease;
}

.benefit-item:hover {
    transform: translateX(5px);

    border-color: #bcd8ca;

    box-shadow: var(--shadow);
}

.benefit-item strong {
    display: block;

    margin-bottom: 5px;

    color: var(--dark);

    font-size: 17px;
}

.benefit-item span {
    display: block;

    font-size: 14px;
}


/* =========================
   9. LOCAL PHYSIOTHERAPY
   ========================= */

.local-physio-section {
    padding: 100px 0;

    background: var(--light-bg);
}

.local-physio-content {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.local-physio-content .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-green);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.local-physio-content h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin-bottom: 22px;
}

.local-physio-content p {
    max-width: 800px;

    margin: 0 auto 17px;

    font-size: 16px;
}

.local-physio-content .primary-button {
    margin-top: 18px;
}


/* =========================
   10. SERVICE CTA
   ========================= */

.service-page-cta {
    padding: 75px 0;

    background: var(--primary-green);

    color: var(--white);
}

.service-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.service-cta-inner > div:first-child {
    max-width: 650px;
}

.service-cta-inner span {
    display: inline-block;

    margin-bottom: 10px;

    color: #c9ead8;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.service-cta-inner h2 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.15;
}

.service-cta-inner p {
    color: #d9ede3;

    font-size: 16px;
}

.service-page-cta .appointment-buttons {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}

.service-page-cta .primary-button {
    background: var(--white);

    color: var(--primary-green);
}

.service-page-cta .primary-button:hover {
    background: var(--light-green);
}

.service-page-cta .secondary-button {
    border-color: rgba(255, 255, 255, 0.6);

    color: var(--white);
}

.service-page-cta .secondary-button:hover {
    background: var(--white);

    color: var(--primary-green);
}


/* =========================
   11. FOOTER
   ========================= */

.site-footer {
    padding-top: 70px;

    background: #082d20;

    color: #c8d8d1;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 55px;
}

.footer-about img {
    width: 190px;

    margin-bottom: 20px;

    filter: brightness(0) invert(1);
}

.footer-about p {
    max-width: 360px;

    margin-bottom: 6px;

    font-size: 14px;
}

.footer-grid h3 {
    color: var(--white);

    font-size: 16px;

    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;

    transition: 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
}

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}

.footer-bottom p {
    color: #9fb4aa;

    font-size: 12px;
}


/* =========================
   12. TABLET
   ========================= */

@media (max-width: 900px) {

    .main-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-container {
        min-height: 72px;
    }

    .logo img {
        width: 165px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .benefits-content {
        position: static;
    }

    .service-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .service-page-cta .appointment-buttons {
        width: 100%;
    }
}


/* =========================
   13. MOBILE
   ========================= */

@media (max-width: 700px) {

    .service-page-hero {
        min-height: 600px;

        background:
            linear-gradient(
                90deg,
                rgba(3, 69, 45, 0.93),
                rgba(3, 69, 45, 0.70)
            ),
            url("../images/physiotherapy-hero.jpg")
            center/cover no-repeat;
    }

    .service-page-hero-content {
        padding: 55px 0;
    }

    .service-page-hero h1 {
        font-size: 42px;
    }

    .service-page-hero p {
        font-size: 16px;
    }

    .service-page-hero .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .service-page-hero .hero-buttons a {
        width: 100%;
    }

    .service-intro-section,
    .physio-services-section,
    .physio-benefits-section,
    .local-physio-section {
        padding: 75px 0;
    }

    .physio-page-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .service-intro-content h2,
    .benefits-content h2,
    .local-physio-content h2 {
        font-size: 32px;
    }

    .physio-page-card {
        padding: 28px;
    }

    .service-cta-inner h2 {
        font-size: 32px;
    }

    .service-page-cta .appointment-buttons {
        flex-direction: column;
    }

    .service-page-cta .appointment-buttons a {
        width: 100%;
    }

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


/* =========================
   14. SMALL MOBILE
   ========================= */

@media (max-width: 520px) {

    .container {
        width: min(90%, var(--container-width));
    }

    .service-page-hero {
        min-height: 650px;
    }

    .service-page-hero h1 {
        font-size: 38px;
    }

    .service-intro-content h2,
    .section-heading h2,
    .benefits-content h2,
    .local-physio-content h2 {
        font-size: 30px;
    }

    .physio-page-card h3 {
        font-size: 20px;
    }

    .benefit-item {
        padding: 22px;
    }

    .footer-grid {
        gap: 35px;
    }
}
/* =========================================================
   AHHC SERVICE PAGES
   CARDIAC + NEURO REHABILITATION
   PART 1 — SHARED + CARDIAC
   ========================================================= */


/* =========================
   SHARED SERVICE PAGE
   ========================= */

.cr-page-hero,
.nr-page-hero {
    padding: 110px 0;
    color: #ffffff;
}

.cr-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(18, 60, 53, 0.94),
            rgba(18, 60, 53, 0.72)
        ),
        url("../images/cardiac-rehab-hero.jpg") center/cover no-repeat;
}

.nr-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(23, 59, 92, 0.94),
            rgba(23, 59, 92, 0.72)
        ),
        url("../images/neuro-rehab-hero.jpg") center/cover no-repeat;
}

.cr-hero-content,
.nr-hero-content {
    max-width: 760px;
}

.cr-hero-content h1,
.nr-hero-content h1 {
    margin: 15px 0 20px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.cr-hero-content p,
.nr-hero-content p {
    max-width: 680px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.75;
    color: #eef7f3;
}

.cr-page-hero .hero-buttons,
.nr-page-hero .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================
   SHARED CONTENT SECTIONS
   ========================= */

.cr-intro-section,
.cr-program-section,
.cr-monitoring-section,
.cr-education-section,
.nr-intro-section,
.nr-conditions-section,
.nr-assessment-section,
.nr-approach-section,
.nr-functional-section,
.nr-home-section,
.nr-recovery-section {
    padding: 90px 0;
}

.cr-intro-section,
.cr-monitoring-section,
.cr-education-section,
.nr-intro-section,
.nr-assessment-section,
.nr-functional-section,
.nr-recovery-section {
    background: #ffffff;
}

.cr-program-section,
.nr-conditions-section,
.nr-approach-section,
.nr-home-section {
    background: #f7f9fc;
}


/* =========================
   CARDIAC INTRO
   ========================= */

.cr-intro-grid,
.cr-program-grid,
.cr-monitoring-layout,
.cr-education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cr-intro-content,
.cr-program-content,
.cr-monitoring-content,
.cr-education-content {
    max-width: 650px;
}

.cr-intro-content h2,
.cr-program-content h2,
.cr-monitoring-content h2,
.cr-education-content h2 {
    margin: 15px 0 20px;
    color: #123c35;
    font-size: 40px;
    line-height: 1.2;
}

.cr-intro-content p,
.cr-program-content p,
.cr-monitoring-content p,
.cr-education-content p {
    margin-bottom: 17px;
    color: #596b66;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   CARDIAC IMAGES
   ========================= */

.cr-intro-image,
.cr-program-image,
.cr-monitoring-image,
.cr-education-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    background: #e9efec;
}

.cr-intro-image img,
.cr-program-image img,
.cr-monitoring-image img,
.cr-education-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================
   CARDIAC BENEFITS
   ========================= */

.cr-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.cr-benefit-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #dfe9e3;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.cr-benefit-card h3 {
    margin-bottom: 10px;
    color: #123c35;
    font-size: 19px;
}

.cr-benefit-card p {
    color: #596b66;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   CARDIAC PROGRAM / LIST
   ========================= */

.cr-program-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.cr-program-item {
    padding: 17px 20px;
    background: #f1f7f4;
    border-left: 4px solid #075b3b;
    border-radius: 0 12px 12px 0;
}

.cr-program-item strong {
    display: block;
    margin-bottom: 4px;
    color: #123c35;
    font-size: 16px;
}

.cr-program-item span {
    color: #596b66;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   CARDIAC CTA
   ========================= */

.cr-page-cta {
    padding: 75px 0;
    background: #123c35;
}

.cr-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cr-cta-content {
    max-width: 700px;
}

.cr-cta-content > span {
    display: block;
    margin-bottom: 12px;
    color: #b9ddd2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cr-cta-content h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
}

.cr-cta-content p {
    margin: 0;
    color: #d5e6e0;
    font-size: 16px;
    line-height: 1.7;
}

.cr-page-cta .appointment-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .cr-intro-grid,
    .cr-program-grid,
    .cr-monitoring-layout,
    .cr-education-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


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

@media (max-width: 600px) {

    .cr-page-hero {
        padding: 70px 0;
    }

    .cr-hero-content h1 {
        font-size: 34px;
    }

    .cr-hero-content p {
        font-size: 16px;
    }

    .cr-page-hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cr-page-hero .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .cr-intro-section,
    .cr-program-section,
    .cr-monitoring-section,
    .cr-education-section {
        padding: 65px 0;
    }

    .cr-intro-content h2,
    .cr-program-content h2,
    .cr-monitoring-content h2,
    .cr-education-content h2 {
        font-size: 30px;
    }

    .cr-intro-image,
    .cr-program-image,
    .cr-monitoring-image,
    .cr-education-image {
        height: 280px;
        border-radius: 16px;
    }

    .cr-benefit-grid {
        grid-template-columns: 1fr;
    }

    .cr-page-cta {
        padding: 60px 0;
    }

    .cr-cta-content h2 {
        font-size: 30px;
    }

    .cr-page-cta .appointment-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cr-page-cta .appointment-buttons a {
        width: 100%;
        text-align: center;
    }
   }

   /* =========================================================
   AHHC SERVICE PAGES
   NEURO REHABILITATION
   PART 2
   ========================================================= */


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

.nr-page-hero {
    padding: 110px 0;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(23, 59, 92, 0.94),
            rgba(23, 59, 92, 0.72)
        ),
        url("../images/neuro-rehab-hero.jpg") center/cover no-repeat;
}

.nr-hero-content {
    max-width: 760px;
}

.nr-hero-content h1 {
    margin: 15px 0 20px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.1;
}

.nr-hero-content p {
    max-width: 680px;

    margin-bottom: 30px;

    font-size: 18px;

    line-height: 1.75;

    color: #eef4f8;
}

.nr-page-hero .hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================
   NEURO INTRO
   ========================= */

.nr-intro-grid,
.nr-assessment-grid,
.nr-approach-grid,
.nr-functional-grid,
.nr-home-grid,
.nr-recovery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.nr-intro-section,
.nr-assessment-section,
.nr-functional-section,
.nr-recovery-section {
    padding: 90px 0;

    background: #ffffff;
}

.nr-approach-section,
.nr-home-section,
.nr-conditions-section {
    padding: 90px 0;

    background: #f7f9fc;
}


/* =========================
   NEURO CONTENT
   ========================= */

.nr-intro-content,
.nr-assessment-content,
.nr-approach-content,
.nr-functional-content,
.nr-home-content,
.nr-recovery-content {
    max-width: 650px;
}

.nr-intro-content h2,
.nr-assessment-content h2,
.nr-approach-content h2,
.nr-functional-content h2,
.nr-home-content h2,
.nr-recovery-content h2 {
    margin: 15px 0 20px;

    color: #173b5c;

    font-size: 40px;

    line-height: 1.2;
}

.nr-intro-content p,
.nr-assessment-content > p,
.nr-approach-content p,
.nr-functional-content p,
.nr-home-content p,
.nr-recovery-content p {
    margin-bottom: 17px;

    color: #5d6d79;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   NEURO IMAGES
   ========================= */

.nr-intro-image,
.nr-assessment-image,
.nr-approach-image,
.nr-functional-image,
.nr-home-image,
.nr-recovery-image {
    width: 100%;

    height: 420px;

    overflow: hidden;

    border-radius: 20px;

    background: #e9eef3;
}

.nr-intro-image img,
.nr-assessment-image img,
.nr-approach-image img,
.nr-functional-image img,
.nr-home-image img,
.nr-recovery-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================
   NEURO CONDITIONS
   ========================= */

.nr-conditions-section .section-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}

.nr-conditions-section .section-heading h2 {
    margin: 15px 0;

    color: #173b5c;

    font-size: 40px;

    line-height: 1.2;
}

.nr-conditions-section .section-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #667681;

    line-height: 1.8;
}

.nr-conditions-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.nr-condition-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #dfe7ed;

    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(23, 59, 92, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

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

    box-shadow:
        0 16px 35px rgba(23, 59, 92, 0.09);
}

.nr-card-icon {
    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    background: #e7f1f8;

    border-radius: 14px;

    font-size: 24px;
}

.nr-condition-card h3 {
    margin: 0 0 12px;

    color: #173b5c;

    font-size: 20px;

    line-height: 1.3;
}

.nr-condition-card p {
    margin: 0;

    color: #667681;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   NEURO ASSESSMENT
   ========================= */

.nr-assessment-list {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 25px;
}

.nr-assessment-item {
    padding: 17px 20px;

    background: #f4f8fc;

    border-left: 4px solid #25658f;

    border-radius: 0 12px 12px 0;
}

.nr-assessment-item strong {
    display: block;

    margin-bottom: 4px;

    color: #173b5c;

    font-size: 16px;
}

.nr-assessment-item span {
    display: block;

    color: #667681;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   NEURO FUNCTIONAL POINTS
   ========================= */

.nr-functional-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 25px;
}

.nr-functional-point {
    padding: 17px 18px;

    background: #f4f8fc;

    border-radius: 12px;
}

.nr-functional-point strong {
    display: block;

    margin-bottom: 5px;

    color: #173b5c;

    font-size: 15px;
}

.nr-functional-point span {
    color: #667681;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   NEURO CTA
   ========================= */

.nr-page-cta {
    padding: 75px 0;

    background: #173b5c;
}

.nr-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.nr-cta-content {
    max-width: 700px;
}

.nr-cta-content > span {
    display: block;

    margin-bottom: 12px;

    color: #c4dceb;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.nr-cta-content h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 40px;

    line-height: 1.2;
}

.nr-cta-content p {
    margin: 0;

    color: #dce9f1;

    font-size: 16px;

    line-height: 1.7;
}

.nr-page-cta .appointment-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .nr-intro-grid,
    .nr-assessment-grid,
    .nr-approach-grid,
    .nr-functional-grid,
    .nr-home-grid,
    .nr-recovery-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .nr-conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nr-functional-points {
        grid-template-columns: 1fr 1fr;
    }

    .nr-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }
}


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

@media (max-width: 600px) {

    .nr-page-hero {
        padding: 70px 0;
    }

    .nr-hero-content h1 {
        font-size: 34px;
    }

    .nr-hero-content p {
        font-size: 16px;
    }

    .nr-page-hero .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .nr-page-hero .hero-buttons a {
        width: 100%;

        text-align: center;
    }


    .nr-intro-section,
    .nr-conditions-section,
    .nr-assessment-section,
    .nr-approach-section,
    .nr-functional-section,
    .nr-home-section,
    .nr-recovery-section {
        padding: 65px 0;
    }


    .nr-intro-content h2,
    .nr-assessment-content h2,
    .nr-approach-content h2,
    .nr-functional-content h2,
    .nr-home-content h2,
    .nr-recovery-content h2,
    .nr-conditions-section .section-heading h2 {
        font-size: 30px;
    }


    .nr-intro-image,
    .nr-assessment-image,
    .nr-approach-image,
    .nr-functional-image,
    .nr-home-image,
    .nr-recovery-image {
        height: 280px;

        border-radius: 16px;
    }


    .nr-conditions-grid {
        grid-template-columns: 1fr;
    }


    .nr-functional-points {
        grid-template-columns: 1fr;
    }


    .nr-page-cta {
        padding: 60px 0;
    }

    .nr-cta-inner {
        gap: 30px;
    }

    .nr-cta-content h2 {
        font-size: 30px;
    }

    .nr-page-cta .appointment-buttons {
        width: 100%;

        flex-direction: column;
    }

    .nr-page-cta .appointment-buttons a {
        width: 100%;

        text-align: center;
    }
}
