/* ==========================================================================
   DR. RAM'S CLINIC - DISTINCT CLINICAL TREATMENTS PAGES STYLESHEET
   Luxury Aesthetic: Soft Rose Pink (#EDA2A6) + Pale Blush (#FCECEF) + Pure White (#FFFFFF)
   ========================================================================== */

/* Hero Showcase Banner for Treatments */
.rs-treat-hero {
    position: relative;
    height: 400px;
    min-height: 400px;
    padding: 35px 0;
    display: flex;
    align-items: center;
    background: #FCFAF9;
    overflow: hidden;
    border-bottom: 1px solid #F0DDE1;
    box-sizing: border-box;
}

/* Contact Page Hero Specific Override */
.rs-treat-hero.rs-contact-hero,
.rs-contact-hero {
    height: 400px !important;
    min-height: 400px !important;
    padding: 35px 0 !important;
}

.rs-treat-hero.rs-contact-hero .rs-treat-hero-bg,
.rs-contact-hero .rs-treat-hero-bg {
    object-position: right center !important;
}

.rs-treat-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 240, 248, 0.10) 50%, rgba(245, 235, 255, 0.15) 100%);
    pointer-events: none;
}

.rs-treat-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    transform: scale(1);
    transform-origin: center center;
    animation: treatBgZoomPulse 13s ease-in-out infinite;
    will-change: transform;
}

.rs-treat-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.rs-treat-hero-model-wrap {
    position: absolute;
    bottom: 35px;
    right: 12%;
    width: 38%;
    height: 92%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-treat-hero-model {
    height: 94%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translateY(-20px);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.08));
    animation: treatModelZoomPulse 12s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rs-treat-hero:hover .rs-treat-hero-model {
    animation-play-state: paused;
    transform: translateY(-20px) scale(1.06);
}

@keyframes treatModelZoomPulse {
    0% {
        transform: translateY(-20px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.04);
    }

    100% {
        transform: translateY(-20px) scale(1);
    }
}

.rs-treat-hero-copy {
    max-width: 660px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.rs-treat-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(48, 48, 161, 0.08);
    border: 1px solid rgba(48, 48, 161, 0.25);
    border-radius: 999px;
    color: var(--color-blue-primary);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(48, 48, 161, 0.08);
}

.rs-treat-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-blue-primary);
    box-shadow: 0 0 10px rgba(48, 48, 161, 0.45);
    animation: treatPulseDot 2s infinite;
}

@keyframes treatPulseDot {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.rs-treat-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-blue-primary);
    line-height: 1.18;
    margin-bottom: 10px;
}

.rs-treat-hero-title span.highlight {
    color: var(--color-blue-primary);
    position: relative;
    display: inline-block;
}

.rs-treat-hero-subtitle {
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 620px;
}

.rs-hero-breadcrumb-tabs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    margin: 0 0 16px;
    padding: 5px 14px;
    border: 1px solid rgba(48, 48, 161, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(48, 48, 161, 0.08);
    color: #737385;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.rs-hero-breadcrumb-tabs a {
    color: var(--color-blue-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rs-hero-breadcrumb-tabs a:hover {
    color: var(--color-blue-dark);
}

.rs-hero-breadcrumb-tabs i {
    color: rgba(48, 48, 161, 0.45);
    font-size: 0.72rem;
}

.rs-hero-breadcrumb-tabs span {
    color: var(--color-blue-primary);
}

.rs-treat-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.rs-treat-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid rgba(48, 48, 161, 0.12);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-blue-primary);
    box-shadow: var(--shadow-sm);
}

.rs-treat-tag i {
    color: var(--color-pink-primary);
}

/* Treatment Category Filter Bar & Category Blocks */
.rs-treat-hero,
.rs-treat-filter-section,
.rs-treat-category-block,
.rs-treat-filter-section:nth-of-type(even),
.rs-treat-category-block:nth-of-type(even),
section.rs-treat-filter-section,
section.rs-treat-category-block,
.treat-group-block {
    margin: 0 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.rs-treat-filter-section {
    padding: 45px 0 10px 0 !important;
}

.rs-treat-category-block {
    padding: 15px 0 50px 0 !important;
}

.rs-treat-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0 !important;
}

.rs-treat-filter-btn {
    padding: 12px 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(48, 48, 161, 0.15);
    color: var(--color-blue-primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rs-treat-filter-btn i {
    font-size: 0.95rem;
    color: var(--color-pink-primary);
    transition: color 0.3s ease;
}

.rs-treat-filter-btn:hover,
.rs-treat-filter-btn.active {
    background: #f5e0e5 !important;
    color: #2A3B53 !important;
    border-color: #e6bcc4 !important;
    box-shadow: 0 8px 24px rgba(185, 111, 125, 0.18) !important;
    transform: translateY(-2px);
}

.rs-treat-filter-btn:hover i,
.rs-treat-filter-btn.active i {
    color: #2A3B53 !important;
}

/* Distinct Treatment Card Grid Layout */
/* Overlapping White Box Card Design Layout (Matching Reference Image) */
.rs-treat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 30px;
}

@media (max-width: 991px) {
    .rs-treat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 575px) {
    .rs-treat-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.rs-treat-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-treat-card-clickable {
    color: inherit;
    text-decoration: none;
}

.rs-treat-card-clickable:focus-visible {
    outline: 3px solid rgba(249, 174, 179, 0.45);
    outline-offset: 4px;
}

.rs-treat-card-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: #F4F5F9 !important;
    border: 1.5px solid rgba(48, 48, 161, 0.14);
    box-shadow: 0 8px 24px rgba(48, 48, 161, 0.07);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.rs-treat-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-treat-card:hover .rs-treat-card-img-wrap {
    border-color: rgba(249, 174, 179, 0.35);
    box-shadow: 0 12px 30px rgba(48, 48, 161, 0.12);
}

.rs-treat-card:hover .rs-treat-card-img-wrap img {
    transform: scale(1.06);
}

.rs-treat-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #b96f7d;
    border: 1.5px solid rgba(242, 216, 205, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(50, 65, 85, 0.08);
    z-index: 2;
}

.rs-treat-card-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #b96f7d;
    border: 1.5px solid rgba(242, 216, 205, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(50, 65, 85, 0.08);
    z-index: 2;
}

/* Overlapping White Box (Enhanced Luxury Aesthetic) */
.rs-treat-card-box {
    position: relative;
    z-index: 3;
    margin: -48px 18px 0 18px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 18px 18px 18px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(50, 65, 85, 0.08), 0 3px 10px rgba(185, 111, 125, 0.04);
    border: 1.5px solid rgba(226, 216, 206, 0.7);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

/* Top Decorative Solid Accent Bar */
.rs-treat-card-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background: #b96f7d;
    border-radius: 0 0 4px 4px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-treat-card:hover .rs-treat-card-box {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(50, 65, 85, 0.12), 0 6px 24px rgba(185, 111, 125, 0.1);
    border-color: rgba(185, 111, 125, 0.5);
}

.rs-treat-card:hover .rs-treat-card-box::before {
    width: 90px;
}

.rs-treat-card-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #20334E;
    line-height: 1.3;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.rs-treat-card:hover .rs-treat-card-title {
    color: #b96f7d;
}

.rs-treat-card-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.88rem;
    line-height: 1.45;
    color: #55606E;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action Link - Clean Pink Text & Sliding Arrow */
.rs-treat-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--color-pink-primary);
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease, gap 0.3s ease;
}

.rs-card-action-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    color: var(--color-pink-primary);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.rs-treat-card:hover .rs-treat-card-action {
    background: transparent;
    color: var(--color-pink-primary);
    box-shadow: none;
    gap: 12px;
}

.rs-treat-card:hover .rs-card-action-icon {
    background: transparent;
    color: var(--color-pink-primary);
    transform: translateX(4px);
}

@media (max-width: 575px) {
    .rs-treat-card-img-wrap {
        height: 220px;
    }

    .rs-treat-card-box {
        margin: -40px 14px 0 14px;
        padding: 20px 16px 16px 16px;
    }

    .rs-treat-card-title {
        font-size: 1.18rem;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   TREATMENT DETAIL PAGE SPECIFIC STYLES
   ========================================================================== */

/* Specs Bar Strip */
.rs-treat-specs-strip {
    background: #F5F2FF;
    color: #171735;
    padding: 30px 0;
    border-top: 1px solid #DDD8F0;
    border-bottom: 1px solid #DDD8F0;
    box-shadow: 0 4px 15px rgba(48, 48, 161, 0.04);
}

.rs-treat-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .rs-treat-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .rs-treat-specs-grid {
        grid-template-columns: 1fr;
    }
}

.rs-treat-spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.rs-treat-spec-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-pink-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rs-treat-spec-text {
    display: flex;
    flex-direction: column;
}

.rs-treat-spec-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.rs-treat-spec-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

/* Detail Section Layout */
.rs-treat-detail-section {
    padding: 80px 0;
    background: #ffffff;
    overflow-x: hidden;
}

.rs-treat-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 100%;
}

.rs-treat-main-hub,
.rs-treat-sidebar {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 991px) {
    .rs-treat-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Procedure Tabs Hub */
.rs-treat-tab-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-bottom: 2px solid rgba(48, 48, 161, 0.1);
    margin-bottom: 35px;
    padding-bottom: 4px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rs-treat-tab-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.rs-treat-nav-btn {
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-pink-primary);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.rs-treat-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-pink-primary);
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.rs-treat-nav-btn.active,
.rs-treat-nav-btn:hover {
    color: var(--color-blue-primary);
}

.rs-treat-nav-btn.active::after {
    transform: scaleX(1);
}

.rs-treat-tab-panel {
    display: none;
}

.rs-treat-tab-panel.active {
    display: block;
    animation: treatFadeIn 0.4s ease;
}

@keyframes treatFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Cards in Tab */
.rs-treat-step-card {
    background: #FFF1F8;
    border: 1px solid #DDD8F0;
    border-left: 5px solid var(--color-pink-primary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rs-treat-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-blue-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rs-treat-step-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    margin-bottom: 6px;
}

.rs-treat-step-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Checkmark List */
.rs-treat-check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

@media (max-width: 575px) {
    .rs-treat-check-list {
        grid-template-columns: 1fr;
    }
}

.rs-treat-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(48, 48, 161, 0.12);
    border-radius: 12px;
    font-weight: 600;
    color: var(--color-blue-primary);
    font-size: 0.95rem;
}

.rs-treat-check-list li i {
    color: var(--color-pink-primary);
}

/* Sidebar Booking Widget */
.rs-treat-booking-widget {
    background: #ffffff;
    border: 1px solid #DDD8F0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 36px rgba(48, 48, 161, 0.08);
    position: sticky;
    top: 100px;
}

.rs-treat-widget-header {
    text-align: center;
    margin-bottom: 24px;
}

.rs-treat-widget-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 8px;
}

.rs-treat-widget-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Sidebar Column */
.rs-treat-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 991px) {
    .rs-treat-sidebar {
        position: static;
    }
}

.rs-cond-widget {
    background: #ffffff;
    border: 1px solid #DDD8F0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.rs-cond-doctor-card {
    text-align: center;
}

.rs-cond-doctor-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-blue-primary);
}

.rs-cond-doctor-deg {
    font-size: 0.85rem;
    color: var(--color-pink-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.rs-cond-doctor-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Form Inputs */
.rs-cond-input {
    border: 1px solid rgba(48, 48, 161, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--color-blue-primary);
    background: #ffffff;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.rs-cond-input:focus {
    border-color: var(--color-pink-primary);
    box-shadow: 0 0 0 3px #DDD8F0;
}

/* Block Shared Styles (used by show.blade) */
.rs-cond-block {
    background: #ffffff;
    border: 1px solid rgba(48, 48, 161, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(48, 48, 161, 0.04);
}

.rs-cond-block-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rs-cond-block-title i {
    color: var(--color-pink-primary);
    font-size: 1.2rem;
}

.rs-cond-block-text {
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: 1rem;
}

.rs-cond-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-cond-sub-title i {
    color: var(--color-pink-primary);
}

/* Two Column Layout */
.rs-cond-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .rs-cond-two-col {
        grid-template-columns: 1fr;
    }
}

.rs-cond-card-sub {
    background: #F5F2FF;
    border: 1px solid #DDD8F0;
    border-radius: 20px;
    padding: 28px;
}

/* Bullet List */
.rs-cond-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.rs-cond-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.rs-cond-list li i {
    color: var(--color-pink-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* FAQ Accordion */
.rs-cond-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rs-treat-faq-full {
    width: 100%;
}

.rs-cond-faq-item {
    border: 1px solid #DDD8F0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.rs-cond-faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--color-blue-primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

.rs-cond-faq-question:hover {
    background: #FFF1F8;
}

.rs-cond-faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-pink-primary);
}

.rs-cond-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.rs-cond-faq-item.active .rs-cond-faq-answer {
    padding: 0 24px 22px;
    max-height: 400px;
}

.rs-cond-faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Banner (shared utility) */
.rs-treat-cta-banner {
    background: linear-gradient(135deg, #FDE6EA 0%, #F8B8BF 50%, #F29EA7 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-treat-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.rs-treat-cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222226;
    margin-bottom: 16px;
}

.rs-treat-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Hero Background Zoom Pulse */
.rs-treat-hero::before {
    z-index: 1;
}

.rs-treat-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    animation: treatBgZoomPulse 13s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
}

@keyframes treatBgZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rs-treat-hero-bg {
        animation: none;
    }
}

/* Responsive Hero */
@media (max-width: 1199px) {
    .rs-treat-hero-model-wrap {
        right: 5%;
        width: 40%;
    }
}

@media (max-width: 991px) {
    .rs-treat-hero {
        height: auto;
        min-height: auto;
        padding: 50px 0 50px;
    }

    .rs-treat-hero-bg {
        object-position: 85% center;
        opacity: 0.35;
    }

    .rs-treat-hero.rs-contact-hero .rs-treat-hero-bg,
    .rs-contact-hero .rs-treat-hero-bg {
        object-position: 85% center !important;
    }

    .rs-treat-hero-model-wrap {
        display: none;
    }

    .rs-treat-hero-copy {
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .rs-treat-hero-title {
        font-size: 2.1rem;
    }

    .rs-treat-detail-section .rs-container {
        display: flex;
        flex-direction: column;
    }

    .rs-treat-detail-grid {
        display: contents;
    }

    .rs-treat-main-hub {
        order: 1;
        width: 100%;
    }

    .rs-treat-faq-grid {
        order: 2;
        width: 100%;
        margin-top: 35px;
    }

    .rs-treat-sidebar {
        order: 3;
        width: 100%;
        margin-top: 40px;
        position: static;
    }

    .rs-treat-booking-widget {
        position: static;
    }

    .rs-treat-tab-nav {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        gap: 8px;
        margin-bottom: 25px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .rs-treat-tab-nav::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .rs-treat-nav-btn {
        flex-shrink: 0;
        font-size: 0.88rem;
        padding: 10px 14px;
    }
}

@media (max-width: 575px) {
    .rs-treat-hero {
        height: auto;
        min-height: auto;
        padding: 35px 0 48px;
    }

    .rs-treat-hero-bg {
        object-position: 90% center;
        opacity: 0.25;
    }

    .rs-treat-hero.rs-contact-hero .rs-treat-hero-bg,
    .rs-contact-hero .rs-treat-hero-bg {
        object-position: 90% center !important;
    }

    .rs-treat-hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .rs-treat-hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .rs-cond-hero-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .rs-cond-hero-actions .rs-btn {
        width: auto;
        font-size: 0.85rem;
        padding: 0.55rem 1.15rem;
        border-radius: 999px;
    }

    .rs-treat-hero-tags {
        gap: 8px;
    }

    .rs-treat-tag {
        font-size: 0.78rem;
        padding: 5px 10px;
    }

    .rs-treat-filter-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .rs-treat-specs-grid {
        grid-template-columns: 1fr;
    }

    .rs-treat-tab-nav {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        max-width: 100%;
        gap: 6px;
        margin-bottom: 22px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .rs-treat-tab-nav::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .rs-treat-nav-btn {
        font-size: 0.88rem;
        padding: 10px 18px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .rs-treat-detail-section {
        padding: 35px 0 50px;
    }

    .rs-cond-block {
        padding: 20px 14px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .rs-treat-related-widget,
    .rs-treat-booking-widget {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .rs-treat-overview-img {
        height: 210px;
        border-radius: 18px;
    }

    .rs-treat-overview-img-wrap {
        padding: 6px;
        border-radius: 25px;
    }

    .rs-treat-step-card {
        padding: 16px 12px;
        gap: 12px;
        border-radius: 14px;
    }

    .rs-treat-step-num {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
}

/* w-100 utility */
.w-100 {
    width: 100%;
}

/* mt-5 utility */
.mt-5 {
    margin-top: 3rem;
}

/* me-1 utility (bootstrap compat) */
.me-1 {
    margin-right: 0.25rem;
}

/* ===================================================
   OVERVIEW SPLIT LAYOUT (Image + Text side by side)
   =================================================== */
.rs-treat-overview-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 991px) {
    .rs-treat-overview-split {
        grid-template-columns: 1fr;
    }
}

.rs-treat-overview-img-wrap {
    position: relative;
    padding: 8px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF1F8 0%, #FFF1F8 100%);
    border: 2px solid rgba(244, 146, 195, 0.72);
    box-shadow: 0 18px 38px rgba(48, 48, 161, 0.08), 0 8px 22px rgba(249, 174, 179, 0.14);
}

.rs-treat-overview-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: transform 0.6s ease;
}

.rs-treat-overview-img-wrap:hover .rs-treat-overview-img {
    transform: scale(1.05);
}

.rs-treat-overview-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rs-treat-overview-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.rs-treat-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFF1F8;
    border: 1px solid #DDD8F0;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-blue-primary);
}

.rs-treat-stat-pill i {
    color: var(--color-pink-primary);
}

/* ===================================================
   TREATMENT TYPES SHOWCASE
   =================================================== */
.rs-treat-types-showcase {
    padding-top: 10px;
    border-top: none;
}

.rs-treat-types-heading {
    text-align: left;
    margin-bottom: 16px;
}

.rs-treat-types-heading h2 {
    margin: 0 0 14px;
    color: var(--color-blue-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
    text-transform: capitalize;
}

.rs-treat-types-heading p,
.rs-treat-type-copy-list p {
    color: var(--color-text-body);
    font-size: 1.04rem;
    line-height: 1.75;
}

.rs-treat-types-heading p {
    max-width: none;
    margin: 0;
    text-align: left;
}

.rs-treat-type-copy-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.rs-treat-type-copy-list p {
    margin: 0;
}

.rs-treat-type-copy-list strong {
    display: inline;
    margin-right: 8px;
    color: var(--color-pink-primary);
    font-size: 1.08rem;
    font-weight: 700;
}

.rs-treat-type-copy-list span {
    overflow-wrap: anywhere;
}

.rs-treat-type-image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 26px;
}

.rs-treat-type-image-row figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #F3F4F6;
    border: 1px solid rgba(13, 43, 69, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(13, 43, 69, 0.08);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.rs-treat-type-image-row img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: filter 260ms ease, transform 320ms ease;
}

.rs-treat-type-image-row figure:hover {
    border-color: rgba(191, 63, 92, 0.28);
    box-shadow: 0 16px 34px rgba(13, 43, 69, 0.15);
    transform: translateY(-4px);
}

.rs-treat-type-image-row figure:hover img {
    filter: brightness(1.04) saturate(1.08);
    transform: scale(1.055);
}

.rs-treat-type-image-row figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 58px;
    display: flex;
    align-items: flex-end;
    padding: 28px 16px 14px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.82) 100%);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    overflow-wrap: anywhere;
}

@media (max-width: 1199px) {
    .rs-treat-type-image-row {
        gap: 22px;
    }
}

@media (max-width: 767px) {
    .rs-treat-types-showcase {
        padding-top: 16px;
    }

    .rs-treat-types-heading h2 {
        font-size: 1.45rem;
    }

    .rs-treat-types-heading p,
    .rs-treat-type-copy-list p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .rs-treat-type-copy-list {
        gap: 12px;
    }

    .rs-treat-type-image-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 22px;
    }

    .rs-treat-type-image-row img {
        height: 235px;
    }

    .rs-treat-type-image-row figcaption {
        min-height: 52px;
        padding: 24px 14px 12px;
        font-size: 0.92rem;
    }
}

/* ===================================================
   STEPS LAYOUT
   =================================================== */
.rs-treat-steps-layout {
    width: 100%;
}

/* ===================================================
   BENEFITS LAYOUT (Checklist + Visual Image)
   =================================================== */
.rs-treat-benefits-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .rs-treat-benefits-layout {
        grid-template-columns: 1fr;
    }

    .rs-treat-benefits-visual {
        display: none;
    }
}

.rs-treat-benefits-visual {
    position: relative;
}

.rs-treat-benefits-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 12px 32px rgba(48, 48, 161, 0.12);
}

.rs-treat-benefits-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 2px solid #DDD8F0;
    border-radius: 20px;
    padding: 14px 22px;
    box-shadow: 0 8px 24px #DDD8F0;
    white-space: nowrap;
}

.rs-treat-benefits-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.rs-treat-benefits-badge-inner i {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.rs-treat-benefits-badge-inner strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-blue-primary);
}

.rs-treat-benefits-badge-inner span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ===================================================
   AFTERCARE LAYOUT
   =================================================== */
.rs-treat-aftercare-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

@media (max-width: 767px) {
    .rs-treat-aftercare-layout {
        grid-template-columns: 1fr;
    }
}

.rs-treat-aftercare-img-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 12px 32px rgba(48, 48, 161, 0.12);
}

.rs-treat-aftercare-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rs-treat-aftercare-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(48, 48, 161, 0.82) 0%, rgba(48, 48, 161, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    gap: 20px;
}

.rs-treat-aftercare-img-overlay span {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-treat-aftercare-img-overlay span i {
    color: #F9AEB3;
}

.rs-btn-sm {
    padding: 10px 22px !important;
    font-size: 0.9rem !important;
}

/* ===================================================
   RELATED TREATMENTS WIDGET
   =================================================== */
.rs-treat-related-widget {
    background: #ffffff;
    border: 1px solid rgba(48, 48, 161, 0.12);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(48, 48, 161, 0.06);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rs-treat-related-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DDD8F0;
}

.rs-treat-parts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-pink-primary) rgba(48, 48, 161, 0.08);
}

.rs-treat-parts-container::-webkit-scrollbar {
    width: 5px;
}

.rs-treat-parts-container::-webkit-scrollbar-track {
    background: rgba(249, 174, 179, 0.06);
    border-radius: 10px;
}

.rs-treat-parts-container::-webkit-scrollbar-thumb {
    background: var(--color-pink-primary);
    border-radius: 10px;
}

.rs-treat-part-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rs-treat-part-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-pink-primary);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #DDD8F0;
}

.rs-treat-related-item.active-item {
    background: #FFF1F8;
    border-color: var(--color-pink-primary);
}

.rs-treat-related-item.active-item h4 {
    color: var(--color-pink-primary);
    font-weight: 800;
}

.rs-treat-related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.rs-treat-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F5F2FF;
    border-radius: 14px;
    border: 1px solid rgba(48, 48, 161, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rs-treat-related-item:hover {
    background: #FFF1F8;
    border-color: var(--color-pink-primary);
    transform: translateX(4px);
}

.rs-treat-related-item img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.rs-treat-related-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.rs-treat-related-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    margin: 0;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.rs-treat-related-info span {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rs-treat-related-info span i {
    color: var(--color-pink-primary);
}

/* Parallel Grid layout for FAQ and Care Card */
.rs-treat-faq-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    align-items: start;
    margin-top: 40px;
}

.rs-treat-faq-grid .rs-cond-widget {
    margin-top: 0;
}

@media (max-width: 992px) {
    .rs-treat-faq-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ===================================================
   TREATMENT DOCTOR'S VIDEO GUIDE & EMBED
   =================================================== */
.rs-treat-video-showcase,
.rs-treat-overview-video-card {
    margin-top: 36px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #FAF1EB 100%);
    border: 1px solid #E8DED3;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 59, 83, 0.06);
}

.rs-treat-overview-video-header {
    margin-bottom: 18px;
}

.rs-treat-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #ffffff;
    color: #cc0000;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(204, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.08);
    margin-bottom: 12px;
}

.rs-treat-video-badge i {
    font-size: 1.15rem;
    color: #ff0000;
}

.rs-treat-video-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2A3B53;
    margin: 0 0 6px 0;
}

.rs-treat-video-sub {
    font-size: 0.95rem;
    color: #4A5568;
    margin: 0;
    line-height: 1.6;
}

.rs-treat-video-frame-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.rs-treat-video-frame-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 767px) {

    .rs-treat-overview-video-card,
    .rs-treat-video-showcase {
        padding: 18px;
        border-radius: 16px;
        margin-top: 24px;
    }

    .rs-treat-video-title {
        font-size: 1.15rem;
    }
}