/* ====================================
            SERVICE HERO
==================================== */

.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;

    background:
        linear-gradient(
            rgba(30, 30, 30, 0.35),
            rgba(30, 30, 30, 0.45)
        ),
        url("../images/services/service-detail-hero.jpg");

    background-size: cover;
    background-position: center;

    color: var(--white-color);
}


.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.35)
        );
}


.service-hero .container {
    position: relative;
    z-index: 2;
}


.service-hero span {
    display: inline-block;
    margin-bottom: 20px;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--primary-color);
}


.service-hero h1 {
    color: var(--white-color);
    margin-bottom: 25px;
}


.service-hero p {
    max-width: 650px;
    margin: auto;

    color: rgba(255,255,255,0.9);

    font-size: 1.1rem;
}



/* ====================================
          SERVICE OVERVIEW
==================================== */

.service-overview {
    padding: 120px 0;
    background: var(--white-color);
}


.service-image {
    overflow: hidden;
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);
}


.service-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;

    transition: transform .8s ease;
}


.service-image:hover img {
    transform: scale(1.05);
}



/* Info Box */

.service-info-box {
    padding: 40px 50px;

    background: var(--secondary-color);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);
}


.service-category {
    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 20px;

    border-radius: 30px;

    background: rgba(201,162,126,0.15);

    color: var(--accent-color);

    font-size: .9rem;

    font-weight: 600;

    letter-spacing: 1px;
}


.service-info-box h2 {
    margin-bottom: 25px;
}


.service-info-box p {
    margin-bottom: 35px;
}



/* ====================================
            SERVICE META
==================================== */

.service-meta {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 35px;
}


.service-meta div {
    background: var(--white-color);

    padding: 20px;

    border-radius: var(--radius-medium);

    text-align: center;

    box-shadow: var(--shadow-soft);

    transition: var(--transition);
}


.service-meta div:hover {
    transform: translateY(-6px);
}


.service-meta strong {
    display: block;

    margin-bottom: 10px;

    color: var(--accent-color);
}


.service-meta span {
    font-weight: 500;
}



/* ====================================
             TRUST LIST
==================================== */

.trust-list {
    margin-bottom: 35px;

    padding: 0;

    list-style: none;
}


.trust-list li {
    margin-bottom: 15px;

    font-size: 1rem;

    color: var(--text-color);
}



/* Booking Button */

.hero-btn {
    padding: 15px 35px;

    font-size: 1rem;
}



/* ====================================
        ABOUT TREATMENT
==================================== */

.treatment-about {
    background: var(--secondary-color);
}


.about-content {
    max-width: 900px;

    margin: auto;

    text-align: center;
}


.about-content p {
    font-size: 1.05rem;

    line-height: 1.9;

    margin-bottom: 20px;
}

/* ====================================
            BENEFITS SECTION
==================================== */

.benefits-section {
    background: var(--white-color);
}


.benefit-card {
    height: 100%;

    padding: 40px 30px;

    background: var(--secondary-color);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);

    text-align: center;

    transition: var(--transition);

    position: relative;

    overflow: hidden;
}


.benefit-card:hover {
    transform: translateY(-10px);
}


.benefit-card h3 {
    font-size: 3rem;

    color: rgba(201, 162, 126, 0.25);

    margin-bottom: 15px;

    font-family: var(--heading-font);
}


.benefit-card h4 {
    margin-bottom: 15px;
}


.benefit-card p {
    margin-bottom: 0;
}


/* ====================================
          TREATMENT PROCESS
==================================== */

.treatment-process {
    background: var(--secondary-color);
}


.process-timeline {
    display: flex;

    justify-content: space-between;

    gap: 25px;

    position: relative;

    margin-top: 60px;
}


/* Connecting Line */

.process-timeline::before {
    content: "";

    position: absolute;

    top: 40px;

    left: 10%;

    width: 80%;

    height: 2px;

    background: var(--accent-color);

    opacity: 0.3;
}


.process-item {
    flex: 1;

    position: relative;

    text-align: center;

    z-index: 2;
}


.process-item span {
    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;


    border-radius: 50%;

    background: var(--white-color);

    box-shadow: var(--shadow-soft);


    font-size: 1.4rem;

    font-weight: 600;

    color: var(--accent-color);
}


.process-item h3 {
    font-size: 1.25rem;

    margin-bottom: 15px;
}


.process-item p {
    font-size: 0.95rem;

    max-width: 220px;

    margin: auto;
}



/* ====================================
          SUITABLE SKIN TYPES
==================================== */

.skin-types {
    background: var(--white-color);

    text-align: center;
}


.skin-tags {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 40px;
}


.skin-tags span {
    display: inline-block;

    padding: 12px 28px;

    border-radius: 50px;

    background: var(--secondary-color);

    color: var(--text-color);

    font-weight: 500;

    box-shadow: var(--shadow-soft);

    transition: var(--transition);
}


.skin-tags span:hover {
    background: var(--accent-color);

    color: var(--white-color);

    transform: translateY(-5px);
}



/* ====================================
          BEFORE & AFTER CARE
==================================== */

.care-guide {
    background: var(--secondary-color);
}


.care-card {
    height: 100%;

    background: var(--white-color);

    padding: 45px;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);

    transition: var(--transition);
}


.care-card:hover {
    transform: translateY(-8px);
}


.care-card h2 {
    margin-bottom: 25px;

    font-size: 1.7rem;
}


.care-card ul {
    margin: 0;

    padding-left: 20px;
}


.care-card li {
    margin-bottom: 15px;

    line-height: 1.8;
}



/* ====================================
                FAQ
==================================== */

.service-faq {
    background: var(--white-color);
}


.service-faq .accordion {
    max-width: 900px;

    margin: 60px auto 0;
}


.service-faq .accordion-item {
    border: none;

    margin-bottom: 20px;

    border-radius: var(--radius-medium);

    overflow: hidden;

    box-shadow: var(--shadow-soft);
}


.service-faq .accordion-button {
    padding: 25px 30px;

    background: var(--secondary-color);

    font-size: 1rem;

    font-weight: 600;

    color: var(--heading-color);

    box-shadow: none;
}


.service-faq .accordion-button:not(.collapsed) {
    background: var(--accent-color);

    color: var(--white-color);
}


.service-faq .accordion-button:focus {
    box-shadow: none;
}


.service-faq .accordion-body {
    padding: 25px 30px;

    line-height: 1.8;

    background: var(--white-color);
}

/* ====================================
            CUSTOMER REVIEWS
==================================== */

.reviews-section {
    background: var(--secondary-color);
}


.review-card {
    height: 100%;

    background: var(--white-color);

    padding: 40px 35px;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);

    text-align: center;

    transition: var(--transition);

    position: relative;
}


.review-card:hover {
    transform: translateY(-10px);
}


.review-card .stars {
    color: var(--accent-color);

    font-size: 1.4rem;

    margin-bottom: 25px;

    letter-spacing: 3px;
}


.review-card p {
    font-style: italic;

    line-height: 1.9;

    margin-bottom: 25px;
}


.review-card h4 {
    font-size: 1rem;

    margin-bottom: 0;

    color: var(--heading-color);
}



/* ====================================
            RELATED SERVICES
==================================== */

.related-services {
    background: var(--white-color);
}


.related-card {
    height: 100%;

    overflow: hidden;

    background: var(--white-color);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);

    transition: var(--transition);
}


.related-card:hover {
    transform: translateY(-10px);
}


.related-card img {
    width: 100%;

    height: 260px;

    object-fit: cover;

    transition: transform .7s ease;
}


.related-card:hover img {
    transform: scale(1.06);
}


.related-card h3 {
    padding: 30px 30px 15px;
}


.related-card p {
    padding: 0 30px;

    min-height: 70px;
}


.related-card .btn {
    margin: 20px 30px 30px;

    display: inline-block;
}



/* ====================================
              FINAL CTA
==================================== */

.service-cta {
    padding: 120px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(255,255,255,0.88),
            rgba(255,255,255,0.88)
        ),
        url("../images/services/cta-bg.jpg");

    background-size: cover;

    background-position: center;
}


.service-cta h2 {
    max-width: 700px;

    margin: 0 auto 25px;
}


.service-cta p {
    max-width: 600px;

    margin: 0 auto 35px;
}


.service-cta .cta-btn {
    padding: 15px 45px;

    font-size: 1rem;
}



/* ====================================
            SCROLL ANIMATION
==================================== */

.fade-up {
    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.fade-up.show {
    opacity: 1;

    transform: translateY(0);
}



/* ====================================
            SMALL DETAILS
==================================== */

/* Softer text selection */

::selection {
    background: var(--accent-color);

    color: var(--white-color);
}


/* Smooth image rendering */

.service-image img,
.related-card img {
    backface-visibility: hidden;
}


/* Better button transition */

.service-cta .btn,
.related-card .btn,
.hero-btn {
    transition: all .3s ease;
}


/* Luxury hover glow */

.review-card:hover,
.benefit-card:hover,
.care-card:hover,
.related-card:hover {
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}