/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 01 2025 | 02:26:08 */
    .massage-services-wrapper {
            font-family: 'Raleway', sans-serif;
            background: linear-gradient(135deg, #faf8f9 0%, #f5f1f2 100%);
            min-height: 100vh;
            padding: 2rem 0;
        }
        
        .massage-services-container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .massage-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3a3a3a !important;
            margin-bottom: 1rem;
            position: relative; /* Added this to make ::after work */
            -webkit-background-clip: text;
            background-clip: text;
			padding-bottom: 1rem;
        }

        .massage-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            transform: translateX(0);
            width: 90px;
            height: 4px;
            background-color: #F6BFC0!important;
            border-radius: 2px;
        }

        .massage-section-subtitle {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 3.5rem;
            line-height: 1.8;
        }

        .massage-cta-button {
            display: inline-block;
            background: #D99496!important;
            color: white;
            padding: 12px 28px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(246, 191, 192, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: 30px;
            margin-bottom: 25px;
        }

        .massage-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .massage-cta-button:hover::before {
            left: 100%;
        }

        .massage-cta-button:hover {
           transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(246, 191, 192, 0.4);
			color: #fff!important;
        }

        .massage-overview-cta {
            text-align: left !important;
            margin-bottom: 2.5rem !important;
            margin-top: -1.5rem !important;
        }

        .massage-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .massage-service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(246, 191, 192, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(246, 191, 192, 0.1);
            display: flex; /* Added flexbox */
            flex-direction: column; /* Stack content vertically */
        }

        .massage-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F6BFC0 0%, #e8a7a9 100%);
        }

        .massage-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(246, 191, 192, 0.2);
        }

        .massage-service-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #F6BFC0 0%, #fac7c8 100%) !important;
            box-shadow: 0 8px 20px rgba(246, 191, 192, 0.3);
            transition: all 0.3s ease;
        }

        .massage-service-card:hover .massage-service-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(246, 191, 192, 0.4);
        }

        .massage-service-icon-wrapper i {
            font-size: 2rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .massage-service-content {
            flex: 1; /* Added to take up available space */
            display: flex; /* Added flexbox */
            flex-direction: column; /* Stack content vertically */
        }

        .massage-service-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3a3a3a !important;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .massage-service-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            flex: 1; /* Added to take up available space and push buttons down */
        }

        .massage-service-details {
            align-items: center;
            gap: 0.5rem;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            padding: 8px 16px;
            background: rgba(246, 191, 192, 0.05);
            border-radius: 10px;
            border-left: 3px solid #F6BFC0;
        }

        .massage-service-details i {
            color: #F6BFC0;
            font-size: 0.8rem;
        }

        .massage-price-separator {
            color: #ddd;
            margin: 0 4px;
        }

        .massage-additional-pricing {
            background: rgba(246, 191, 192, 0.08);
            border-left-color: #e8a7a9;
        }

        .massage-additional-pricing strong {
            color: #2c2c2c;
            display: block;
            margin-bottom: 4px;
            font-size: 0.85rem;
        }

        .massage-service-card-cta-container {
            margin-top: auto; /* Changed to auto to push to bottom */
            padding-top: 1.5rem;
            border-top: 1px solid rgba(246, 191, 192, 0.1);
        }

        .massage-service-card .massage-cta-button {
            width: 100%;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.9rem;
            margin: 0; /* Reset margins for card buttons */
        }

        @media (max-width: 768px) {
            .massage-services-container {
                padding: 0 1rem;
            }
            
            .massage-services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .massage-service-card {
                padding: 1.5rem;
            }
            
            .massage-section-title {
                font-size: 2rem;
            }
        }

        /* Subtle animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        .massage-service-icon-wrapper {
            animation: float 3s ease-in-out infinite;
        }

        .massage-service-card:nth-child(2) .massage-service-icon-wrapper {
            animation-delay: 0.5s;
        }

        .massage-service-card:nth-child(3) .massage-service-icon-wrapper {
            animation-delay: 1s;
        }


.cta-button {
    display: inline-block;
    background: #D99496!important;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 191, 192, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 191, 192, 0.4);
    text-decoration: none;
    color: white;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(246, 191, 192, 0.3);
}



.mp-btn {
    display: inline-block;
    background: #D99496!important;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 191, 192, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.mp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.mp-btn:hover::before {
    left: 100%;
}

.mp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 191, 192, 0.4);
    text-decoration: none;
    color: white;
}

.mp-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(246, 191, 192, 0.3);
}






