/* Frontend Styles - Save as: assets/css/style.css */

/* Enhanced Mirror Effect Styles */
.SS-price-wrapper {
    font-family: system-ui, -apple-system, sans-serif !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 20px !important;
}


/* Mirror Effect Tutorial Overlay */
.ss-tutorial-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 14, 26, 0.85) 0%, 
        rgba(30, 38, 55, 0.85) 50%, 
        rgba(10, 14, 26, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    animation: fadeIn 0.3s ease-out;
}

.ss-tutorial-overlay.active {
    display: block;
}

/* Container with glass effect */
.service-selector-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 24px !important;
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
}

/* Header with glass effect */
.ss-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.05) 0%, 
        rgba(191, 247, 71, 0.1) 50%, 
        rgba(191, 247, 71, 0.05) 100%);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 247, 71, 0.2);
    position: relative;
    overflow: hidden;
}

.ss-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    animation: slideShine 6s infinite;
}

.ss-title {
    font-size: 2rem;
    font-weight: bold;
    color: #bff747;
    margin: 0 0 8px 0;
    text-shadow: 0 0 20px rgba(191, 247, 71, 0.5);
    position: relative;
    z-index: 1;
}

.ss-subtitle {
    color: #bff747;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Summary bar with glass effect */
.ss-summary-bar {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.ss-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #bff747 0%, #a6e034 100%);
    color: #0f1724;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(191, 247, 71, 0.4);
}

.ss-selected-count {
    font-weight: 500;
}

.ss-category-count {
    color: #bff747;
}

.ss-summary-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ss-total-price {
    font-weight: bold;
    color: white !important;
}

/* Category cards with mirror effect */
.ss-category-card {
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 15px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.06) 50%, 
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ss-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(191, 247, 71, 0.1) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.ss-category-card:hover::before {
    left: 100%;
}

.ss-category-card:hover {
    border-color: #bff747;
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(191, 247, 71, 0.3),
        inset 0 0 10px rgba(191, 247, 71, 0.1);
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.7) 0%, 
        rgba(30, 41, 59, 0.7) 50%, 
        rgba(17, 24, 39, 0.7) 100%);
}

.ss-category-card.active {
    border-color: #bff747;
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.1) 0%, 
        rgba(191, 247, 71, 0.15) 50%, 
        rgba(191, 247, 71, 0.1) 100%);
    box-shadow: 
        0 0 30px rgba(191, 247, 71, 0.4),
        inset 0 0 20px rgba(191, 247, 71, 0.1);
}

.ss-service-item.selected {
    border-color: #bafa3b;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.8) 0%, 
        rgba(191, 247, 71, 0.1) 50%, 
        rgba(30, 41, 59, 0.8) 100%);
    transform: scale(1.02);
    box-shadow: 
        0 0 25px rgba(186, 250, 59, 0.5),
        inset 0 0 15px rgba(186, 250, 59, 0.1);
}

.ss-main-content {
    display: flex;
    gap: 24px;
}

.ss-categories-column {
    flex: 1;
}

.ss-selected-column {
    width: 320px;
}

.ss-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ss-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.ss-category-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #bff747;
    margin: 0;
    text-shadow: 0 0 10px rgba(191, 247, 71, 0.3);
}

.ss-badges {
    display: flex;
    gap: 4px;
}

.ss-badge {
    background: linear-gradient(135deg, 
        rgba(33, 43, 60, 0.8) 0%, 
        rgba(33, 43, 60, 0.9) 100%);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(191, 247, 71, 0.2);
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.ss-category-desc {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0 0 12px 0;
}

.ss-category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-available-count {
    font-size: 0.875rem;
    color: #94a3b8;
}

.ss-chevron {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.2s;
}

.ss-view-services-btn:hover .ss-chevron {
    transform: translateX(2px);
}

.ss-services-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.ss-services-details.active {
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.ss-services-panel {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.9) 0%, 
        rgba(17, 24, 39, 0.95) 50%, 
        rgba(17, 24, 39, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 12px;
    padding: 24px;
    transform: translateY(0);
    animation: slideIn 0.4s ease-out;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.ss-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ss-services-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
    color: #fed43a;
    text-shadow: 0 0 10px rgba(254, 212, 58, 0.4);
}

.ss-services-desc {
    color: #cbd5e1;
    margin: 0 0 16px 0;
}

.ss-available-services-title {
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #bff747;
    text-shadow: 0 0 8px rgba(191, 247, 71, 0.3);
}

.ss-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-service-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.ss-service-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(209, 213, 219, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.ss-service-item.selected .ss-service-checkbox {
    background: linear-gradient(135deg, #bafa3b 0%, #a6e034 100%);
    border-color: #bafa3b;
    color: black;
    transform: scale(1.2);
    animation: checkboxPop 0.3s ease-out;
    box-shadow: 0 0 15px rgba(186, 250, 59, 0.5);
}

@keyframes checkboxPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.2); }
}

.ss-service-info h4 {
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #bafa3b;
    text-shadow: 0 0 5px rgba(186, 250, 59, 0.3);
}

.ss-service-features {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.ss-service-price {
    text-align: right;
    flex-shrink: 0;
}

.ss-service-amount {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.ss-service-unit {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
    white-space: nowrap;
}

/* Mobile pricing adjustments */
@media (max-width: 768px) {
    .ss-service-amount {
        font-size: 1rem;
    }
    
    .ss-service-unit {
        font-size: 0.75rem;
    }
}

/* Selected panel with glass effect */
.ss-selected-panel {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.8) 0%, 
        rgba(17, 24, 39, 0.9) 50%, 
        rgba(17, 24, 39, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    color: #fff;
}

.ss-selected-panel h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #bafa3b;
    text-shadow: 0 0 10px rgba(186, 250, 59, 0.4);
}

.ss-current-selection {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0 0 16px 0;
}

.ss-selected-services {
    margin-bottom: 24px;
}

.ss-empty-state {
    color: #64748b;
    text-align: center;
    padding: 32px 0;
    margin: 0;
}

.ss-selected-service {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.ss-selected-service:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.ss-selected-info h4 {
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #bafa3b;
    text-shadow: 0 0 5px rgba(186, 250, 59, 0.3);
}

.ss-selected-meta {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.ss-selected-price {
    text-align: right;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.ss-total-section {
    border-top: 1px solid rgba(55, 65, 81, 0.5);
    padding-top: 16px;
    margin-top: 16px;
}

.ss-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
}

.ss-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Enhanced button styles with !important to override theme */
.ss-get-started-btn,
.ss-mobile-get-started-btn {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
}

.ss-get-started-btn:not(.disabled),
.ss-mobile-get-started-btn:not(.disabled) {
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.9) 0%, 
        rgba(191, 247, 71, 1) 50%, 
        rgba(191, 247, 71, 0.9) 100%) !important;
    color: #000 !important;
    box-shadow: 
        0 4px 20px rgba(191, 247, 71, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
}

.ss-get-started-btn:not(.disabled):hover,
.ss-mobile-get-started-btn:not(.disabled):hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 50%, 
        rgba(30, 38, 55, 0.9) 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 0 25px rgba(191, 247, 71, 0.6),
        0 0 50px rgba(191, 247, 71, 0.3) !important;
    border: 2px solid #bafa3b !important;
}

.ss-get-started-btn.disabled,
.ss-mobile-get-started-btn.disabled {
    background: rgba(55, 65, 81, 0.5) !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    border: none !important;
}

.ss-clear-selections-btn,
.ss-mobile-clear-all-btn {
    width: 100% !important;
    padding: 8px !important;
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.8) 0%, 
        rgba(191, 247, 71, 0.9) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #000 !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    border-radius: 10px !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
}

.ss-clear-selections-btn:hover,
.ss-mobile-clear-all-btn:hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    border: 2px solid #bafa3b !important;
}

/* Buttons with mirror effect and !important */
.ss-view-services-btn {
    background: linear-gradient(135deg, 
        rgba(22, 35, 53, 0.8) 0%, 
        rgba(22, 35, 53, 0.9) 50%, 
        rgba(22, 35, 53, 0.8) 100%) !important;
    color: white !important;
    border: 1px solid rgba(191, 247, 71, 0.3) !important;
    padding: 8px 12px !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(5px) !important;
    text-decoration: none !important;
}

.ss-view-services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(191, 247, 71, 0.3) 50%, 
        transparent 100%);
    transition: left 0.4s ease;
}

.ss-view-services-btn:hover::before {
    left: 100%;
}

.ss-view-services-btn:hover {
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.8) 0%, 
        rgba(166, 224, 52, 0.8) 50%, 
        rgba(191, 247, 71, 0.8) 100%) !important;
    transform: scale(1.05) !important;
    color: black !important;
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5) !important;
}

/* Clear all button with glass effect and !important */
.ss-clear-all-btn {
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.8) 0%, 
        rgba(191, 247, 71, 0.9) 50%, 
        rgba(191, 247, 71, 0.8) 100%) !important;
    color: #000 !important;
    padding: 8px 26px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: bold !important;
    cursor: pointer !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 4px 15px rgba(191, 247, 71, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.ss-clear-all-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 70%);
    animation: slideShine 3s infinite;
}

.ss-clear-all-btn:hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 50%, 
        rgba(30, 38, 55, 0.9) 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 0 20px rgba(191, 247, 71, 0.6),
        0 0 40px rgba(191, 247, 71, 0.3),
        inset 0 0 20px rgba(191, 247, 71, 0.1) !important;
    border: 2px solid #bafa3b !important;
}

/* Service items with glass effect */
.ss-service-item {
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.6) 0%, 
        rgba(17, 24, 39, 0.8) 50%, 
        rgba(17, 24, 39, 0.6) 100%);
    backdrop-filter: blur(5px);
    transform: scale(1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Mobile service item fixes */
@media (max-width: 768px) {
    .ss-service-item {
        padding: 12px;
    }
    
    .ss-service-content {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .ss-service-left {
        flex: 1;
        min-width: 0;
    }
    
    .ss-service-price {
        flex-shrink: 0;
        min-width: 80px;
        text-align: right;
    }
    
    .ss-service-info h4 {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .ss-service-features {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

.ss-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.ss-service-item:hover::before {
    left: 100%;
}

.ss-service-item:hover {
    border-color: rgba(191, 247, 71, 0.5);
    transform: scale(1.02);
    box-shadow: 
        0 0 20px rgba(191, 247, 71, 0.3),
        inset 0 0 10px rgba(191, 247, 71, 0.1);
}

/* Mobile panels */
.ss-mobile-selected-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%, 
        rgba(17, 24, 39, 1) 50%, 
        rgba(17, 24, 39, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid #bff747;
    padding: 12px 16px;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(191, 247, 71, 0.2);
}

.ss-mobile-selected-panel.show {
    transform: translateY(0);
}

.ss-mobile-view-selected-btn {
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.9) 0%, 
        rgba(186, 250, 59, 0.9) 50%, 
        rgba(191, 247, 71, 0.9) 100%) !important;
    color: #000 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.ss-mobile-view-selected-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: slideShine 3s infinite;
}

.ss-mobile-view-selected-btn:hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5) !important;
}

.ss-mobile-selected-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.ss-mobile-selected-overlay.active {
    display: block;
}

/* Mobile selected overlay content */
.ss-mobile-selected-content {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%, 
        rgba(17, 24, 39, 1) 100%);
    border-radius: 16px;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(191, 247, 71, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ss-mobile-selected-content h2 {
    color: #bff747;
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(191, 247, 71, 0.4);
}

.ss-mobile-selected-content h3 {
    color: #bafa3b;
    font-size: 1.125rem;
    margin-bottom: 8px;
    margin-top: 20px;
}

.ss-mobile-selected-content .ss-current-selection {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.ss-mobile-total-section {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin: 20px 0;
}

.ss-mobile-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

/* Mobile overlay close button */
.ss-mobile-close-btn {
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.8) 0%, 
        rgba(191, 247, 71, 0.9) 100%) !important;
    color: #000 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: none !important;
    font-size: 24px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.ss-mobile-close-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 70%);
    animation: slideShine 3s infinite;
}

.ss-mobile-close-btn:hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 100%) !important;
    color: white !important;
    transform: rotate(90deg) scale(1.1) !important;
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5) !important;
}

/* Contact form */
.ss-contact-form {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.8) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    padding: 20px !important;
    overflow-y: auto !important;
}

.ss-contact-form-content {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.95) 0%, 
        rgba(17, 24, 39, 1) 100%) !important;
    padding: 2rem !important;
    border-radius: 16px !important;
    max-width: 500px !important;
    width: 100% !important;
    color: #fff !important;
    border: 2px solid rgba(191, 247, 71, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    overflow: hidden !important;
}

.ss-contact-form-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(191, 247, 71, 0.05) 50%, 
        transparent 70%);
    animation: slideShine 6s infinite;
    pointer-events: none;
}

.ss-contact-form h2 {
    color: #bff747 !important;
    margin-bottom: 8px !important;
    text-shadow: 0 0 15px rgba(191, 247, 71, 0.4) !important;
    position: relative !important;
    z-index: 1 !important;
}

.ss-contact-form h3 {
    color: #bff747 !important;
    font-size: 1.2rem !important;
    margin-bottom: 16px !important;
    position: relative !important;
    z-index: 1 !important;
}

.ss-contact-form input,
.ss-contact-form textarea {
    width: 100% !important;
    padding: 12px !important;
    margin: 8px 0 !important;
    border: 1px solid rgba(191, 247, 71, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(30, 41, 59, 0.8) !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
}

.ss-contact-form input:focus,
.ss-contact-form textarea:focus {
    outline: none !important;
    border-color: #bff747 !important;
    box-shadow: 0 0 15px rgba(191, 247, 71, 0.3) !important;
}

.ss-contact-form textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

/* Contact form buttons container */
.ss-contact-form-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Submit button (Send Request) - Primary action with mirror effect */
.ss-contact-form-submit,
button.ss-contact-form-submit,
.ss-contact-form button[type="submit"] {
    width: 100% !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    background: linear-gradient(135deg, 
        #bff747 0%, 
        #bafa3b 50%, 
        #bff747 100%) !important;
    color: #000 !important;
    box-shadow: 
        0 4px 20px rgba(191, 247, 71, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
    order: 1 !important;
    margin: 0 !important;
}

.ss-contact-form-submit::before,
button.ss-contact-form-submit::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 70%) !important;
    animation: slideShine 3s infinite !important;
    z-index: 0 !important;
}

.ss-contact-form-submit:hover,
button.ss-contact-form-submit:hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 50%, 
        rgba(30, 38, 55, 0.9) 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 
        0 0 25px rgba(191, 247, 71, 0.6),
        0 0 50px rgba(191, 247, 71, 0.3) !important;
    border: 2px solid #bafa3b !important;
}

/* Cancel button - Secondary action with mirror effect */
.ss-contact-form-cancel,
button.ss-contact-form-cancel,
.ss-contact-form button[type="button"] {
    width: 100% !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    background: linear-gradient(135deg, 
        rgba(191, 247, 71, 0.85) 0%, 
        rgba(191, 247, 71, 0.95) 100%) !important;
    color: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 4px 15px rgba(191, 247, 71, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
    order: 2 !important;
    margin: 0 !important;
}

.ss-contact-form-cancel::before,
button.ss-contact-form-cancel::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 70%) !important;
    animation: slideShine 3s infinite !important;
    z-index: 0 !important;
}

.ss-contact-form-cancel:hover,
button.ss-contact-form-cancel:hover {
    background: linear-gradient(135deg, 
        rgba(30, 38, 55, 0.9) 0%, 
        rgba(30, 38, 55, 1) 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 
        0 0 20px rgba(191, 247, 71, 0.6),
        0 0 40px rgba(191, 247, 71, 0.3) !important;
    border: 2px solid #bafa3b !important;
}

/* Ensure button text is above shine effect */
.ss-contact-form-submit span,
.ss-contact-form-cancel span,
button.ss-contact-form-submit span,
button.ss-contact-form-cancel span {
    position: relative !important;
    z-index: 1 !important;
}

/* Selected services display in form */
.ss-form-selected-services {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(191, 247, 71, 0.2) !important;
    border-radius: 10px !important;
    padding: 16px !important;
    margin: 16px 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

.ss-form-selected-services h4 {
    color: #bff747 !important;
    margin-bottom: 12px !important;
    font-size: 1rem !important;
}

.ss-form-selected-services ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ss-form-selected-services li {
    color: #cbd5e1 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.ss-form-selected-services li:last-child {
    border-bottom: none !important;
}

.ss-form-service-price {
    color: #bff747 !important;
    font-weight: bold !important;
}

/* Animations */
@keyframes slideShine {
    0% { transform: rotate(0deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .SS-price-wrapper {
        padding: 10px !important;
        padding-bottom: 80px !important;
    }
    
    .ss-main-content {
        flex-direction: column;
    }
    
    .ss-desktop-only {
        display: none !important;
    }
    
    .ss-mobile-selected-panel {
        display: block;
    }
    
    .ss-categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile contact form adjustments */
    .ss-contact-form {
        padding: 10px !important;
        align-items: flex-start !important;
    }
    
    .ss-contact-form-content {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .ss-contact-form-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .ss-contact-form-submit,
    .ss-contact-form-cancel,
    button.ss-contact-form-submit,
    button.ss-contact-form-cancel {
        width: 100% !important;
        padding: 14px 20px !important;
        margin: 0 !important;
        font-size: 16px !important;
    }
    
    .ss-contact-form h2 {
        font-size: 1.5rem !important;
    }
    
    .ss-contact-form h3 {
        font-size: 1.1rem !important;
    }
    
    .ss-contact-form input,
    .ss-contact-form textarea {
        font-size: 16px !important;
    }
    
    /* Mobile service cards in overlay */
    .ss-mobile-selected-content .ss-selected-service {
        padding: 12px;
        margin-bottom: 12px;
        background: rgba(30, 41, 59, 0.6);
        border: 1px solid rgba(191, 247, 71, 0.2);
        border-radius: 10px;
        border-bottom: none;
        animation: slideInRight 0.3s ease-out;
    }
    
    .ss-mobile-selected-content .ss-selected-service:last-child {
        margin-bottom: 0;
    }
    
    .ss-mobile-selected-content .ss-selected-info h4 {
        color: #bafa3b;
        font-size: 1rem;
        margin-bottom: 4px;
        text-shadow: 0 0 5px rgba(186, 250, 59, 0.3);
    }
    
    .ss-mobile-selected-content .ss-selected-meta {
        color: #94a3b8;
        font-size: 0.8rem;
    }
    
    .ss-mobile-selected-content .ss-selected-price {
        color: white;
        font-weight: bold;
        font-size: 1rem;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    
    /* Mobile action buttons spacing */
    .ss-mobile-selected-content .ss-action-buttons {
        margin-top: 20px;
        gap: 10px;
    }
    
    /* Ensure mobile buttons are full width */
    .ss-mobile-get-started-btn,
    .ss-mobile-clear-all-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
    }
}