/* Spiritual Treatment Pill Color Fix - Earthly Brown Theme */

/* Homepage About Section Treatment Pills - Smaller Size & No Icons */
.about-section .treatment-pill {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    gap: 0.5rem !important;
}

.about-section .treatment-pill i {
    display: none !important;
}

/* Testimonials Redesign */
.testimonial-card {
    background: var(--white) !important;
    padding: 2rem !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.testimonial-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    margin-bottom: 1rem !important;
}

.profile-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.testimonial-author {
    font-weight: 600 !important;
    color: var(--primary-green) !important;
    font-size: 0.95rem !important;
}

.testimonial-text {
    font-style: italic !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* Popup Spiritual Pill */
.welcome-popup .treatment-pill.spiritual {
    background: linear-gradient(135deg, #6B4423, #8B5A3C) !important;
    color: white;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3) !important;
}

.welcome-popup .treatment-pill.spiritual:hover {
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.4) !important;
}

/* About Section Spiritual Pill */
.about-section .treatment-pill.spiritual {
    background: linear-gradient(135deg, #6B4423, #8B5A3C) !important;
    color: white;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3) !important;
}

.about-section .treatment-pill.spiritual:hover {
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.4) !important;
}

/* Center the Learn More Button */
.about-text .btn {
    display: block;
    text-align: center;
    margin: 2rem auto 0;
    width: fit-content;
}