/* =======================================
   TINT PAGE — STANDARDIZED DESIGN
   Responsive with consistent UI/UX
========================================== */

/* HERO SECTION */
.service-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    min-height: 300px;
    background-size: cover;
    background-position: center 55%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero h1 {
    color: #ea0188;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
    padding: 0 1rem;
}

/* SERVICE CONTENT CONTAINER */
.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* MAIN IMAGE - STANDARDIZED */
.tint-main-img,
.service-main-image {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    object-fit: cover;
    object-position: center 55%;
    border-radius: 12px;
    display: block;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* SECTION TITLES */
.desc-title,
.service-content h2 {
    text-align: center;
    color: #ea0188;
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
}

/* DESCRIPTION BLOCK */
.service-description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-description p {
    color: #afa0a4;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
    padding: 0 1rem;
}

/* GALLERY - 3 COLUMN GRID */
.additional-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    max-width: 1000px;
}

.additional-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.additional-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(234, 1, 136, 0.3);
}

/* Individual image crop overrides - only position */
.tint-img-1 {
    object-position: 50% 50%;
}

.tint-img-2 {
    object-position: 50% 70%;
}

.tint-img-3 {
    object-position: 50% 70%;
}

/* CTA BUTTON */
.cta-btn {
    display: block;
    background: #ea0188;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin: 3rem auto;
    max-width: 320px;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 1, 136, 0.3);
}

.cta-btn:hover {
    background-color: #b8006a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 1, 136, 0.5);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    
    .service-hero {
        min-height: 250px;
        padding-top: 6rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 2rem 1rem;
    }

    /* MAIN IMAGE */
    .tint-main-img,
    .service-main-image {
        height: 280px;
        margin-bottom: 2rem;
    }
    
    /* SECTION TITLES */
    .desc-title,
    .service-content h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }
    
    /* DESCRIPTION */
    .service-description p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* GALLERY - STACK ON MOBILE */
    .additional-images {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .additional-images img {
        height: 220px;
    }

    /* CTA BUTTON */
    .cta-btn {
        width: 90%;
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}
