/* ===== BASIC RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fff;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* =====================================
   HERO SECTION (MATCH ARTHROSCOPY)
===================================== */

.service-hero-banner-hip-avascular {
    width: 100%;
    background-image: url("/images/hip-banner2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    aspect-ratio: 16 / 7;
}

/* Tablet */
@media (max-width: 768px) {
    .service-hero-banner-hip-avascular {
        aspect-ratio: 16 / 9;
        background-position: center top;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .service-hero-banner-hip-avascular {
        aspect-ratio: 4 / 3;
        height: 158px;
        background-position: center top;
    }
}

/* =====================================
   SERVICE CONTENT (MATCH ARTHROSCOPY)
===================================== */

.service-page-content {
    padding: 20px 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 {
    font-weight: 600;
    color: #000;
}

/* =====================================
   IMAGE GALLERY (MATCH ARTHROSCOPY)
===================================== */

.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: 220px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Effect (Desktop Only) */
@media (hover: hover) {
    .gallery-grid img:hover {
        transform: scale(1.08);
        filter: brightness(1.05);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 190px;
    }
}