/* ===== MASSAGE PAGE CUSTOM STYLES ===== */
:root {
    --massage-rose: #D4A5A5;
    --massage-rose-dark: #B88B8B;
    --massage-gold: #C9A962;
    --massage-gold-light: #E8D5A3;
    --massage-blush: #F9E4E4;
    --massage-cream: #FFF8F0;
}

/* Intro Card */
.massage-intro-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(212, 165, 165, 0.12);
    border-left: 4px solid var(--massage-rose);
}

.massage-intro-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.massage-intro-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: var(--massage-blush);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.4rem;
    min-width: 35px;
    text-align: center;
}

/* Massage Types Section */
.massage-types-section {
    background: var(--massage-cream);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.massage-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 165, 165, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.massage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.2);
}

.card-header-massage {
    padding: 25px;
    text-align: center;
    color: #fff;
}

.card-header-massage.classic {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-header-massage.anticellulite {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-header-massage.lymph {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-header-massage.relax {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-header-massage.sport {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
}

.card-header-massage.back-neck {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.card-emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.card-header-massage h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.card-body-massage {
    padding: 25px;
}

.card-body-massage p {
    color: #666;
    margin-bottom: 18px;
    min-height: 50px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features .check {
    color: #4CAF50;
    font-weight: bold;
}

.card-price {
    text-align: center;
    padding: 15px;
    background: var(--massage-blush);
    border-radius: 12px;
    margin-bottom: 15px;
}

.card-price .from {
    font-size: 0.85rem;
    color: #888;
}

.card-price .amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--massage-rose-dark);
}

.card-price .duration {
    font-size: 0.85rem;
    color: #666;
}

.card-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #D4A5A5 0%, #E8C4C4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.card-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Infographic Section */
.infographic-section {
    padding: 60px 0;
}

.info-card {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.info-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--massage-rose-dark);
    margin-bottom: 5px;
}

.info-label {
    color: #666;
    font-size: 0.95rem;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #C9A962 0%, #E8D5A3 100%);
    padding: 35px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '✨';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    top: -15px;
    left: 15px;
}

.promo-banner::after {
    content: '✨';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    bottom: -15px;
    right: 15px;
}

.promo-text {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.promo-text strong {
    font-size: 1.5rem;
}

/* Who Needs Section */
.who-needs-section {
    padding: 60px 0;
}

.who-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
    height: 100%;
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.who-list li:last-child {
    border-bottom: none;
}

.who-list .check {
    color: #4CAF50;
    font-weight: bold;
}

.who-list .cross {
    color: #e57373;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: #E0F0E8;
}

.step-card {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
    position: relative;
    margin-bottom: 20px;
    margin-top: 15px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #D4A5A5 0%, #E8C4C4 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.step-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #3D3D3D;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Pricing Table */
.pricing-section {
    padding: 60px 0;
    background: #E8E0F0;
}

.pricing-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 165, 165, 0.12);
}

.pricing-table table {
    width: 100%;
    margin: 0;
}

.pricing-table thead {
    background: linear-gradient(135deg, #D4A5A5 0%, #E8C4C4 100%);
}

.pricing-table th {
    padding: 18px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.pricing-table th:first-child {
    text-align: left;
    padding-left: 25px;
}

.pricing-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-table td:first-child {
    text-align: left;
    padding-left: 25px;
    font-weight: 500;
}

.pricing-table tbody tr:hover {
    background: var(--massage-blush);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.price-value {
    font-weight: 700;
    color: var(--massage-rose-dark);
    font-size: 1.05rem;
}

.price-na {
    color: #888;
}

/* FAQ Section */
.faq-massage-section {
    padding: 60px 0;
}

.faq-item-massage {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
    overflow: hidden;
}

.faq-question-massage {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #3D3D3D;
    transition: background 0.3s;
}

.faq-question-massage:hover {
    background: var(--massage-blush);
}

.faq-question-massage span {
    text-align: left;
    display: block;
    flex: 1;
    padding-right: 15px;
}

.faq-question-massage::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--massage-rose);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-question-massage[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer-massage {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

.faq-massage-section a {
    text-decoration: underline;
    color: var(--massage-rose-dark);
}

.faq-massage-section a:hover {
    color: var(--massage-rose);
}

/* CTA Section */
.cta-massage-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F9E4E4 0%, #E8E0F0 100%);
    text-align: center;
}

.cta-massage-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-massage-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-massage-primary {
    display: inline-block;
    background: linear-gradient(135deg, #D4A5A5 0%, #E8C4C4 100%);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
    margin: 5px;
}

.btn-massage-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-massage-outline {
    display: inline-block;
    background: transparent;
    color: var(--massage-rose-dark);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid var(--massage-rose);
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-massage-outline:hover {
    background: var(--massage-rose);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .massage-intro-card {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table table {
        min-width: 500px;
    }
}