/* ===== BASIC RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

body {
    background: #fff;
}

/* =====================================
   HERO SECTION (FULLY RESPONSIVE)
===================================== */
.service-hero-banner-physiotherapy {
    width: 100%;
    background-image: url("/images/servicebanner4.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    /* ✅ Responsive height using aspect-ratio */
    aspect-ratio: 16 / 7;
}

/* Tablet */
@media (max-width: 768px) {
    .service-hero-banner-physiotherapy {
        aspect-ratio: 16 / 9;
        background-position: center top;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .service-hero-banner-physiotherapy {
        aspect-ratio: 4 / 3;
        height: 158px;
        background-position: center top;
    }
}

/* =====================================
   SERVICE CONTENT
===================================== */
.service-page-content {
    padding: 50px 0;
}

.service-page-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.service-page-content h3 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: #000;
}

.service-page-content ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.service-page-content li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
}

/* Highlight Text */
.highlight-text {
    font-weight: 600;
    color: #000;
}

/* =====================================
   IMAGE GALLERY (LIKE ARTHROPLASTY)
===================================== */
.service-image-gallery {
    padding: 40px 0 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

/* Hover Zoom Effect */
@media (hover: hover) {
    .gallery-grid img:hover {
        transform: scale(1.08);
        filter: brightness(1.05);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-hero-banner-physiotherapy {
        aspect-ratio: 16 / 9;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero-banner-physiotherapy {
        aspect-ratio: 4 / 3;
        height: 160px;
    }
}