/* Services Page Specific Styles */

.services-hero {
    padding: 480px 0 80px;
    background: linear-gradient(135deg, #E2C4FF 0%, #F5E6FF 50%, #FFE6F0 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    color: #8B5A9F;
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #D196E0;
}

.pricing-card.special {
    border-color: #D196E0;
    background: linear-gradient(135deg, #F5E6FF 0%, #FFE6F0 100%);
}

.pricing-card .service-icon {
    font-size: 3.5rem;
    color: #D196E0;
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    color: #8B5A9F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5A9F;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
}

.pricing-options {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    gap: 1rem;
}

.price-option {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: #D196E0;
    background: #F5E6FF;
}

.price-option .price {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.price-option .session-info {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.session-info {
    color: #888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.book-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #D196E0;
}

.modal h2 {
    color: #8B5A9F;
    margin-bottom: 1rem;
    padding-right: 30px;
}

#selectedService {
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #D196E0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 160px 0 60px;
    }
    
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

/* Payment Options Styling */
.payment-options {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-methods-label {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
}

.payment-form {
    margin: 8px 0;
}

.btn-payment {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.paypal-btn {
    background: #0070ba;
    color: white;
}

.paypal-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
}

.venmo-btn {
    background: #3d95ce;
    color: white;
}

.venmo-btn:hover {
    background: #2a7bb0;
    transform: translateY(-2px);
}

.cashapp-btn {
    background: #00d632;
    color: white;
}

.cashapp-btn:hover {
    background: #00b82a;
    transform: translateY(-2px);
}

.payment-info {
    margin: 12px 0;
    padding: 12px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #6c757d;
    text-align: left;
}

.payment-info-header {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-details p {
    margin: 4px 0;
    font-size: 0.85rem;
    color: #555;
}

.payment-details p strong {
    color: #333;
}

.memo-note {
    font-style: italic;
    color: #666 !important;
}

/* Mobile responsiveness for payment options */
@media (max-width: 768px) {
    .payment-options {
        padding: 12px;
    }
    
    .btn-payment {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .payment-details p {
        font-size: 0.8rem;
    }
}

/* Pay Now Button */
.pay-now-btn {
    background: linear-gradient(135deg, #8B5A9F 0%, #D196E0 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 10px 0;
}

.pay-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 90, 159, 0.4);
}

/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #8B5A9F;
    font-size: 1.3rem;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #8B5A9F;
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    margin-bottom: 20px;
    color: #666;
    text-align: center;
}

.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method-card:hover {
    border-color: #8B5A9F;
    background: #f9f7fc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 159, 0.15);
}

.payment-method-icon {
    font-size: 2rem;
    margin-right: 16px;
    width: 60px;
    text-align: center;
}

.payment-method-icon .fa-paypal {
    color: #003087;
}

.payment-method-icon .fa-venmo {
    color: #3D95CE;
}

/* Fallback for Venmo icon if not available */
.payment-method-icon .fa-venmo:before {
    content: "\f4f7"; /* Venmo Unicode */
    font-family: "Font Awesome 6 Brands";
}

/* Alternative Venmo styling */
.venmo-fallback {
    background: #3D95CE;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.payment-method-icon .fa-dollar-sign {
    color: #00D632;
}

.payment-method-info h4 {
    margin: 0 0 4px 0;
    color: #333;
    font-size: 1.1rem;
}

.payment-method-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .payment-method-card {
        padding: 12px;
    }
    
    .payment-method-icon {
        font-size: 1.5rem;
        width: 50px;
        margin-right: 12px;
    }
    
    .payment-method-info h4 {
        font-size: 1rem;
    }
    
    .payment-method-info p {
        font-size: 0.8rem;
    }
}
