/* HERO SECTION */
.service-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.service-hero-text {
    padding-right: 30px;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4eabe4, #fecf33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.service-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin-left: auto;
}

.service-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(78, 171, 228, 0.2);
    transition: transform 0.3s ease;
}

.service-image-circle:hover {
    transform: scale(1.02);
}

.service-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-to-services {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(78, 171, 228, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.back-to-services:hover {
    transform: translateX(-5px);
}

.back-to-services i {
    font-size: 20px;
}

@media (max-width: 992px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-image-wrapper {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .service-hero-text {
        text-align: center;
        padding-right: 0;
    }

    .back-to-services {
        margin: 0 auto 30px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 60px 0;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .service-image-circle {
        border-width: 8px;
    }
}

/* INFO CARDS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(78, 171, 228, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4eabe4, #fecf33);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-card-icon i {
    font-size: 28px;
    color: #fff;
}

.info-card h3 {
    font-size: 2.2rem;
    color: #333;
    font-weight: 300;
    margin-bottom: 20px;
}

/* STEP SECTION */
.treatment-steps {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.steps-container {
    position: relative;
}

.step-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(78, 171, 228, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(78, 171, 228, 0.12);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(78, 171, 228, 0.1), rgba(254, 207, 51, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #4eabe4;
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #111;
    margin: 0;
}

/* CONTENT FILTER */
.content-filter {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-filter p {
    margin-bottom: 1rem !important;
}

.content-filter p:last-child {
    margin-bottom: 0 !important;
}

.content-filter ul {
    list-style-type: disc !important;
    padding-left: 2rem !important;
    margin-bottom: 1rem !important;
}

.content-filter ul li {
    display: list-item !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.4 !important;
}

.content-filter ul li:last-child {
    margin-bottom: 0 !important;
}

.content-filter br + br,
.content-filter br + br + br {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }

    .service-image {
        height: 350px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 2.6875em 0 !important;
    }
}

.spine-shape {
    position: absolute;
    opacity: 0.10;
    z-index: 1;
    pointer-events: none;
    animation: spine-float 10s ease-in-out infinite;
}
.spine-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    transform: rotate(-20deg);
    fill: #4eabe4;
    --spine-rotation: -20deg;
}
.spine-2 {
    bottom: 15%;
    right: 8%;
    width: 100px;
    transform: rotate(30deg);
    fill: #fecf33;
    --spine-rotation: 30deg;
}
.spine-3 {
    top: 40%;
    left: 30%;
    width: 80px;
    transform: rotate(10deg);
    fill: #4eabe4;
    --spine-rotation: 10deg;
}
@keyframes spine-float {
    0%, 100% { transform: translateY(0) rotate(var(--spine-rotation)); }
    50% { transform: translateY(-18px) rotate(calc(var(--spine-rotation) + 5deg)); }
}
@media (max-width: 768px) {
    .spine-shape { display: none; }
}
