/* ==========================================================================
   Treatment Page Specific Styles
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--text-dark);
    max-width: 1200px;
    width: 100%;
    padding: 2rem 2rem 2rem 4rem;
    margin: 0 auto;
}

.page-hero-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin: 0 0 1.2rem;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.page-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    line-height: 1.9;
    color: var(--text-medium);
    white-space: nowrap;
}

/* Treatment Section */
.treatment-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.treatment-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.treatment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.treatment-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.treatment-icon-circle i {
    font-size: 2.2rem;
    color: var(--bg-white);
}

.treatment-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.treatment-list li {
    background: transparent;
    color: var(--text-dark);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding-left: 1.5rem;
}

.treatment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.treatment-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-medium);
}

.treatment-text p {
    margin-bottom: 1rem;
}

.treatment-text p:last-child {
    margin-bottom: 0;
}

.treatment-text .treatment-note {
    margin-top: 0.5rem;
}

.treatment-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.treatment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.treatment-cta .container {
    max-width: 100%;
    padding: 0;
}

.treatment-cta {
    padding: 0;
    background: transparent;
}

.cta-content {
    background: var(--bg-light-blue);
    border-radius: 0;
    padding: 4rem 8%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: none;
    max-width: 100%;
}

.cta-icon {
    flex-shrink: 0;
}

.cta-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.cta-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cta-phone-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta-web-btn {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta-phone-btn i {
    margin-right: 0.5rem;
}

.cta-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Active Navigation */
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin: 0 0 1.2rem;
}

.page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .treatment-section {
        padding: 3rem 0;
    }

    .treatment-card {
        padding: 2rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-icon img {
        width: 80px;
        height: 80px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-phone-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 300px;
    }

    .page-hero-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin: 0 0 1.2rem;
}

.page-title {
        font-size: 1.6rem;
    }

    .treatment-icon {
        width: 60px;
        height: 60px;
    }

    .treatment-icon i {
        font-size: 1.5rem;
    }

    .treatment-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {
    .page-hero { height: 160px; }
    .page-subtitle { display: none; }
}