/* _content/Detalis/Components/Pages/AdminAccount.razor.rz.scp.css */
*[b-p7plsskgra] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin-container[b-p7plsskgra] {
    display: flex;
    min-height: 100vh;
    background: #0f172a;
}

.admin-main[b-p7plsskgra] {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #0a0a0a;
}

.admin-header[b-p7plsskgra] {
    background-color: #111111;
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content h1[b-p7plsskgra] {
    font-size: 32px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.header-subtitle[b-p7plsskgra] {
    font-size: 16px;
    color: #94a3b8;
    margin: 0;
}

.admin-content[b-p7plsskgra] {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

/* Settings Grid */
.settings-grid[b-p7plsskgra] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
}

/* Settings Card */
.settings-card[b-p7plsskgra] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid #334155;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.settings-card:hover[b-p7plsskgra] {
    border-color: #475569;
}

/* Card Header */
.card-header[b-p7plsskgra] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid #334155;
}

.card-icon[b-p7plsskgra] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #94a3b8;
}



.card-title-section h2[b-p7plsskgra] {
    font-size: 20px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 4px 0;
    letter-spacing: -0.025em;
}

.card-subtitle[b-p7plsskgra] {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Card Body */
.card-body[b-p7plsskgra] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* Info Row */
.info-row[b-p7plsskgra] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
}

.info-row:last-of-type[b-p7plsskgra] {
    border-bottom: none;
}

.info-label[b-p7plsskgra] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
}

.info-label i[b-p7plsskgra] {
    font-size: 16px;
}

.info-value[b-p7plsskgra] {
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
}

.role-badge[b-p7plsskgra] {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

/* Status Banner */
.status-banner[b-p7plsskgra] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid;
}

.status-banner.inactive[b-p7plsskgra] {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.status-banner.active[b-p7plsskgra] {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.status-icon[b-p7plsskgra] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.status-banner.inactive .status-icon[b-p7plsskgra] {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.status-banner.active .status-icon[b-p7plsskgra] {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-content[b-p7plsskgra] {
    flex: 1;
}

.status-title[b-p7plsskgra] {
    font-size: 16px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 4px 0;
}

.status-text[b-p7plsskgra] {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Feature List */
.feature-list[b-p7plsskgra] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item[b-p7plsskgra] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #e2e8f0;
}

.feature-item i[b-p7plsskgra] {
    font-size: 18px;
    color: #22c55e;
}

/* Card Actions */
.card-actions[b-p7plsskgra] {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-primary[b-p7plsskgra] {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.btn-primary:hover[b-p7plsskgra] {
    background: #1e40af;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.btn-secondary[b-p7plsskgra] {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #475569;
    border-radius: 10px;
    background: #334155;
    color: #f8fafc;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover[b-p7plsskgra] {
    background: #475569;
    border-color: #64748b;
    transform: translateY(-1px);
}

.btn-danger[b-p7plsskgra] {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-danger:hover[b-p7plsskgra] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
}

.btn-danger-outline[b-p7plsskgra] {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #ef4444;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-danger-outline:hover[b-p7plsskgra] {
    background: rgba(239, 68, 68, 0.2);
    border-color: #dc2626;
    transform: translateY(-1px);
}

/* Password Requirements */
.password-requirements[b-p7plsskgra] {
    background: #334155;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #475569;
}

.requirement-title[b-p7plsskgra] {
    font-size: 14px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 12px;
}

.requirement-item[b-p7plsskgra] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.requirement-item:last-child[b-p7plsskgra] {
    margin-bottom: 0;
}

.requirement-item i[b-p7plsskgra] {
    font-size: 8px;
    color: #64748b;
}

/* Session Management */
.session-item[b-p7plsskgra] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #334155;
    border-radius: 12px;
    border: 1px solid #475569;
    transition: all 0.2s ease;
}

.session-item:hover[b-p7plsskgra] {
    background: #3d4b5f;
    border-color: #64748b;
}

.session-item.current[b-p7plsskgra] {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.session-icon[b-p7plsskgra] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #94a3b8;
    flex-shrink: 0;
}

.session-item.current .session-icon[b-p7plsskgra] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.session-details[b-p7plsskgra] {
    flex: 1;
}

.session-device[b-p7plsskgra] {
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 4px;
}

.session-info[b-p7plsskgra] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.session-dot[b-p7plsskgra] {
    font-size: 10px;
}

.session-current[b-p7plsskgra] {
    color: #3b82f6;
    font-weight: 600;
}

.session-time[b-p7plsskgra] {
    font-size: 13px;
    color: #64748b;
}

.session-revoke[b-p7plsskgra] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.session-revoke:hover[b-p7plsskgra] {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .settings-grid[b-p7plsskgra] {
        grid-template-columns: 1fr;
    }
    
    .admin-content[b-p7plsskgra] {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .admin-header[b-p7plsskgra] {
        padding: 24px;
    }
    
    .header-content h1[b-p7plsskgra] {
        font-size: 26px;
    }
    
    .header-subtitle[b-p7plsskgra] {
        font-size: 14px;
    }
    
    .admin-content[b-p7plsskgra] {
        padding: 16px;
    }
    
    .settings-grid[b-p7plsskgra] {
        gap: 16px;
    }
    
    .card-header[b-p7plsskgra] {
        padding: 20px;
    }
    
    .card-body[b-p7plsskgra] {
        padding: 20px;
    }
}
/* _content/Detalis/Components/Pages/AdminArchive.razor.rz.scp.css */
*[b-f633ysyxlp] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin-container[b-f633ysyxlp] {
    display: flex;
    min-height: 100vh;
    background-color: #09090b;
    color: #fafafa;
}

.admin-main[b-f633ysyxlp] {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Header */
.admin-header[b-f633ysyxlp] {
    padding: 40px 48px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-content h1[b-f633ysyxlp] {
    font-size: 32px;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.header-subtitle[b-f633ysyxlp] {
    font-size: 15px;
    color: #a1a1aa;
}

.admin-content[b-f633ysyxlp] {
    padding: 0 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Stats Grid */
.archive-stats[b-f633ysyxlp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stat-card[b-f633ysyxlp] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover[b-f633ysyxlp] {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.stat-header[b-f633ysyxlp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label[b-f633ysyxlp] {
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
}

.stat-icon[b-f633ysyxlp] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-icon.success[b-f633ysyxlp] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-icon.warning[b-f633ysyxlp] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-value[b-f633ysyxlp] {
    font-size: 36px;
    font-weight: 700;
    color: #fafafa;
    line-height: 1;
}

/* Archive Section */
.archive-section[b-f633ysyxlp] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.section-header[b-f633ysyxlp] {
    padding: 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2[b-f633ysyxlp] {
    font-size: 18px;
    font-weight: 600;
}

.archive-controls[b-f633ysyxlp] {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box[b-f633ysyxlp] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-f633ysyxlp] {
    position: absolute;
    left: 12px;
    color: #a1a1aa;
    width: 16px;
    height: 16px;
}

.search-input[b-f633ysyxlp] {
    background: #09090b;
    border: 1px solid #27272a;
    color: #fafafa;
    padding: 10px 12px 10px 36px;
    border-radius: 12px;
    font-size: 14px;
    width: 240px;
    transition: border-color 0.2s;
}

.search-input:focus[b-f633ysyxlp] {
    outline: none;
    border-color: #3b82f6;
}

.filter-select[b-f633ysyxlp] {
    background: #09090b;
    border: 1px solid #27272a;
    color: #fafafa;
    padding: 10px 36px 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:focus[b-f633ysyxlp] {
    outline: none;
    border-color: #3b82f6;
}

.archive-list[b-f633ysyxlp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 24px;
    background: #09090b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.archive-item[b-f633ysyxlp] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}



.item-header[b-f633ysyxlp] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.client-info[b-f633ysyxlp] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-name[b-f633ysyxlp] {
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
}

.client-contact[b-f633ysyxlp] {
    font-size: 13px;
    color: #a1a1aa;
}

.status-badge[b-f633ysyxlp] {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.completed[b-f633ysyxlp] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.cancelled[b-f633ysyxlp] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.item-details[b-f633ysyxlp] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #27272a;
}

.detail-row[b-f633ysyxlp] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #a1a1aa;
}

.detail-row svg[b-f633ysyxlp] {
    color: #3b82f6;
}

.item-footer[b-f633ysyxlp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #27272a;
}

.price[b-f633ysyxlp] {
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
}

.date-completed[b-f633ysyxlp] {
    font-size: 12px;
    color: #a1a1aa;
}

/* Pagination */
.pagination[b-f633ysyxlp] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid #27272a;
    background: #18181b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.page-btn[b-f633ysyxlp] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover:not(:disabled)[b-f633ysyxlp] {
    background: #27272a;
    border-color: #a1a1aa;
}

.page-btn:disabled[b-f633ysyxlp] {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info[b-f633ysyxlp] {
    font-size: 14px;
    color: #a1a1aa;
}

/* Loading State */
.loading-state[b-f633ysyxlp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
    gap: 16px;
    color: #a1a1aa;
}

.spinner[b-f633ysyxlp] {
    width: 32px;
    height: 32px;
    border: 3px solid #27272a;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-f633ysyxlp 1s linear infinite;
}

@keyframes spin-b-f633ysyxlp {
    to { transform: rotate(360deg); }
}

/* Empty State */
.empty-state[b-f633ysyxlp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
    gap: 16px;
    color: #a1a1aa;
    text-align: center;
}

.empty-state svg[b-f633ysyxlp] {
    color: #27272a;
}

.empty-state p[b-f633ysyxlp] {
    font-size: 15px;
}
.service-actions[b-f633ysyxlp] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.btn-icon[b-f633ysyxlp] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #a1a1aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon:hover[b-f633ysyxlp] {
    background: #27272a;
    color: #fafafa;
    border-color: #a1a1aa;
}

.btn-icon.danger:hover[b-f633ysyxlp] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}
/* _content/Detalis/Components/Pages/AdminPanel.razor.rz.scp.css */
*[b-13mwm5uw29] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin-container[b-13mwm5uw29] {
    display: flex;
    min-height: 100vh;
    background-color: #09090b;
    color: #fafafa;
}

.admin-main[b-13mwm5uw29] {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

*:focus[b-13mwm5uw29] {
    outline: none;
}

.admin-header[b-13mwm5uw29] {
    padding: 40px 48px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-content h1[b-13mwm5uw29] {
    font-size: 32px;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.header-subtitle[b-13mwm5uw29] {
    font-size: 15px;
    color: #a1a1aa;
}

.admin-content[b-13mwm5uw29] {
    padding: 0 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Metrics */
.metrics-grid[b-13mwm5uw29] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.metric-card[b-13mwm5uw29] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.metric-header[b-13mwm5uw29] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label[b-13mwm5uw29] {
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
}

.metric-icon[b-13mwm5uw29] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.metric-icon.success[b-13mwm5uw29] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.metric-icon.warning[b-13mwm5uw29] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.metric-value[b-13mwm5uw29] {
    font-size: 36px;
    font-weight: 700;
    color: #fafafa;
    line-height: 1;
}

.metric-change[b-13mwm5uw29] {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.metric-change.positive[b-13mwm5uw29] { color: #10b981; }
.metric-change.negative[b-13mwm5uw29] { color: #ef4444; }
.metric-change.neutral[b-13mwm5uw29] { color: #a1a1aa; }

/* Notifications */
.notifications-section[b-13mwm5uw29] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    overflow: hidden;
}

.notifications-header[b-13mwm5uw29] {
    padding: 20px 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notifications-title[b-13mwm5uw29] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notifications-title h2[b-13mwm5uw29] {
    font-size: 16px;
    font-weight: 600;
}

.notifications-count[b-13mwm5uw29] {
    background: #3b82f6;
    color: white;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.dismiss-all-btn[b-13mwm5uw29] {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.dismiss-all-btn:hover[b-13mwm5uw29] {
    color: #fafafa;
}

.notification-item[b-13mwm5uw29] {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #27272a;
    transition: background 0.2s;
}

.notification-item:last-child[b-13mwm5uw29] {
    border-bottom: none;
}

.notification-item:hover[b-13mwm5uw29] {
    background: #27272a;
}

.notification-icon[b-13mwm5uw29] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content[b-13mwm5uw29] {
    flex: 1;
}

.notification-title[b-13mwm5uw29] {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.notification-details[b-13mwm5uw29] {
    font-size: 13px;
    color: #a1a1aa;
    display: flex;
    gap: 16px;
}

.notification-details span[b-13mwm5uw29] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.notification-actions[b-13mwm5uw29] {
    display: flex;
    gap: 8px;
}

.notification-btn[b-13mwm5uw29] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #a1a1aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.notification-btn:hover[b-13mwm5uw29] {
    background: #27272a;
    color: #fafafa;
}

/* Reservations Section */
.reservations-section[b-13mwm5uw29] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.section-header[b-13mwm5uw29] {
    padding: 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2[b-13mwm5uw29] {
    font-size: 18px;
    font-weight: 600;
}

.section-actions[b-13mwm5uw29] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-container[b-13mwm5uw29] {
    position: relative;
}

.search-input[b-13mwm5uw29] {
    background: #09090b;
    border: 1px solid #27272a;
    color: #fafafa;
    padding: 10px 16px 10px 40px;
    border-radius: 12px;
    font-size: 14px;
    width: 280px;
    transition: border-color 0.2s, box-shadow 0.2s;
}


.search-icon[b-13mwm5uw29] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a1aa;
}

.action-button[b-13mwm5uw29] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.action-button.primary[b-13mwm5uw29] {
    background: #22c55e; /* emerald green */
    color: white;
}

.action-button.primary:hover[b-13mwm5uw29] {
    background: #16a34a;
}

.action-button.secondary[b-13mwm5uw29] {
    background: #09090b;
    border-color: #27272a;
    color: #fafafa;
}

.action-button.secondary:hover[b-13mwm5uw29] {
    border-color: #a1a1aa;
}

/* Card Layout for Reservations */
.reservations-list[b-13mwm5uw29] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 24px;
    background: #09090b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.reservation-card[b-13mwm5uw29] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.reservation-card-header[b-13mwm5uw29] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reservation-card-time[b-13mwm5uw29] {
    display: flex;
    flex-direction: column;
}

.reservation-card-time .time[b-13mwm5uw29] {
    font-size: 20px;
    font-weight: 700;
    color: #fafafa;
    letter-spacing: -0.02em;
}

.reservation-card-time .date[b-13mwm5uw29] {
    font-size: 13px;
    color: #a1a1aa;
    margin-top: 2px;
}

.status-badge[b-13mwm5uw29] {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.pending[b-13mwm5uw29] { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.2); }
.status-badge.confirmed[b-13mwm5uw29] { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.2); }
.status-badge.completed[b-13mwm5uw29] { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.status-badge.urgent[b-13mwm5uw29] { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.status-badge.cancelled[b-13mwm5uw29] { background: rgba(161, 161, 170, 0.1); color: #a1a1aa; border: 1px solid rgba(161, 161, 170, 0.2); }

.reservation-card-body[b-13mwm5uw29] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.reservation-card-client[b-13mwm5uw29] {
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reservation-card-detail[b-13mwm5uw29] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #a1a1aa;
}

.reservation-card-detail svg[b-13mwm5uw29] {
    color: #3b82f6;
    opacity: 0.8;
}

.reservation-card-footer[b-13mwm5uw29] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #27272a;
    margin-top: auto;
}

.reservation-card-price[b-13mwm5uw29] {
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
}

.reservation-card-actions[b-13mwm5uw29] {
    display: flex;
    gap: 8px;
}

.btn-icon[b-13mwm5uw29] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #a1a1aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon:hover[b-13mwm5uw29] {
    background: #27272a;
    color: #fafafa;
    border-color: #a1a1aa;
}

.btn-icon.danger:hover[b-13mwm5uw29] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Pagination */
.pagination-container[b-13mwm5uw29] {
    padding: 20px 24px;
    border-top: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #18181b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.pagination-info[b-13mwm5uw29] {
    font-size: 14px;
    color: #a1a1aa;
}

.pagination-controls[b-13mwm5uw29] {
    display: flex;
    gap: 6px;
}

.pagination-btn[b-13mwm5uw29] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-13mwm5uw29] {
    border-color: #a1a1aa;
    background: #27272a;
}

.pagination-btn.active[b-13mwm5uw29] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pagination-btn:disabled[b-13mwm5uw29] {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-size-selector[b-13mwm5uw29] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #a1a1aa;
}

.page-size-selector select[b-13mwm5uw29] {
    background: #09090b;
    border: 1px solid #27272a;
    color: #fafafa;
    padding: 6px 12px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.page-size-selector select:focus[b-13mwm5uw29] {
    border-color: #3b82f6;
}

/* Modal */
.modal-overlay[b-13mwm5uw29] {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.modal-container[b-13mwm5uw29] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.modal-header[b-13mwm5uw29] {
    padding: 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-title[b-13mwm5uw29] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.modal-subtitle[b-13mwm5uw29] {
    font-size: 14px;
    color: #a1a1aa;
}

.modal-close[b-13mwm5uw29] {
    background: transparent;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-close:hover[b-13mwm5uw29] {
    background: #27272a;
    color: #fafafa;
}

.modal-body[b-13mwm5uw29] {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-section[b-13mwm5uw29] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title[b-13mwm5uw29] {
    font-size: 14px;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-grid[b-13mwm5uw29] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item[b-13mwm5uw29] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label[b-13mwm5uw29] {
    font-size: 13px;
    color: #a1a1aa;
}

.info-value[b-13mwm5uw29] {
    font-size: 15px;
    font-weight: 500;
}

.edit-form-grid[b-13mwm5uw29] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group[b-13mwm5uw29] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width[b-13mwm5uw29] {
    grid-column: 1 / -1;
}

.form-label[b-13mwm5uw29] {
    font-size: 13px;
    font-weight: 500;
    color: #a1a1aa;
}

.form-input[b-13mwm5uw29], .form-select[b-13mwm5uw29], .form-textarea[b-13mwm5uw29] {
    background: #09090b;
    border: 1px solid #27272a;
    color: #fafafa;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input:focus[b-13mwm5uw29], .form-select:focus[b-13mwm5uw29], .form-textarea:focus[b-13mwm5uw29] {
    outline: none;
    border-color: #3b82f6;
}

.modal-footer[b-13mwm5uw29] {
    padding: 20px 24px;
    border-top: 1px solid #27272a;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn[b-13mwm5uw29] {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-secondary[b-13mwm5uw29] {
    background: #09090b;
    color: #fafafa;
    border: 1px solid #27272a;
}

.btn-secondary:hover[b-13mwm5uw29] {
    border-color: #a1a1aa;
}

.btn-primary[b-13mwm5uw29] {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover[b-13mwm5uw29] {
    background: #2563eb;
}

.btn-danger[b-13mwm5uw29] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-danger:hover[b-13mwm5uw29] {
    background: #ef4444;
    color: white;
}

.btn-success[b-13mwm5uw29] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.btn-success:hover[b-13mwm5uw29] {
    background: #10b981;
    color: white;
}

/* Loading State */
.loading-state[b-13mwm5uw29] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
    gap: 16px;
    color: #a1a1aa;
}

.spinner[b-13mwm5uw29] {
    width: 32px;
    height: 32px;
    border: 3px solid #27272a;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-13mwm5uw29 1s linear infinite;
}

@keyframes spin-b-13mwm5uw29 {
    to { transform: rotate(360deg); }
}

/* Dropdown */
.filter-dropdown-container[b-13mwm5uw29] {
    position: relative;
}

.sort-dropdown[b-13mwm5uw29] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    z-index: 10;
}

.sort-option[b-13mwm5uw29] {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.sort-option:hover[b-13mwm5uw29] {
    background: #27272a;
}

.sort-option.active[b-13mwm5uw29] {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-weight: 500;
}

.no-reservations[b-13mwm5uw29], .loading-reservations[b-13mwm5uw29] {
    padding: 48px;
    text-align: center;
    color: #a1a1aa;
    font-size: 15px;
}
/* _content/Detalis/Components/Pages/AdminPricing.razor.rz.scp.css */
*[b-78vn28wzwx] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Layout */
.admin-container[b-78vn28wzwx] {
    display: flex;
    min-height: 100vh;
    background-color: #09090b;
    color: #fafafa;
}

.admin-main[b-78vn28wzwx] {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Header */
.admin-header[b-78vn28wzwx] {
    background-color: #09090b;
    padding: 40px 48px 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-info[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-info h1[b-78vn28wzwx] {
    font-size: 32px;
    font-weight: 700;
    color: #fafafa;
    margin: 0;
    letter-spacing: -0.02em;
}

.back-btn[b-78vn28wzwx] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn:hover[b-78vn28wzwx] {
    background: #27272a;
    color: #fafafa;
    border-color: #a1a1aa;
}

.header-actions[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.unsaved-indicator[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #f59e0b;
    padding-right: 12px;
    border-right: 1px solid #27272a;
}

.unsaved-indicator i[b-78vn28wzwx] {
    font-size: 6px;
}

/* Tab Navigation */
.tab-navigation[b-78vn28wzwx] {
    display: flex;
    gap: 4px;
    padding: 0 48px;
    background: #09090b;
    border-bottom: 1px solid #27272a;
    overflow-x: auto;
}



.tab-btn[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
}

.tab-btn:hover[b-78vn28wzwx] {
    color: #e4e4e7;
    background: #18181b;
}

.tab-btn.active[b-78vn28wzwx] {
    color: #fafafa;
    border-bottom-color: #fafafa;
    background: #18181b;
}

/* Content */
.admin-content[b-78vn28wzwx] {
    padding: 32px 48px 48px;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Tab Content */
.tab-content[b-78vn28wzwx] {
    animation: fadeIn-b-78vn28wzwx 0.2s ease;
}

@keyframes fadeIn-b-78vn28wzwx {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-header[b-78vn28wzwx] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #27272a;
}

.tab-header-text h2[b-78vn28wzwx] {
    font-size: 24px;
    font-weight: 600;
    color: #fafafa;
    margin: 0 0 8px 0;
}

.tab-header-text p[b-78vn28wzwx] {
    font-size: 15px;
    color: #a1a1aa;
    margin: 0;
}

/* Content Grid */
.content-grid[b-78vn28wzwx] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.content-grid.with-sidebar[b-78vn28wzwx] {
    grid-template-columns: 1fr 400px;
}

.content-main[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-sidebar[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

/* Settings Grid */
.settings-grid[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
}

/* Loading & Error States */
.loading-state[b-78vn28wzwx],
.error-state[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; 
    min-height: 300px; 
    gap: 16px;
    color: #a1a1aa;
}

.error-state i[b-78vn28wzwx] {
    font-size: 48px;
    color: #ef4444;
}

.error-state h2[b-78vn28wzwx] {
    font-size: 20px;
    color: #fafafa;
    margin: 0;
}

.error-state p[b-78vn28wzwx] {
    color: #a1a1aa;
    margin: 0;
}

.spinner[b-78vn28wzwx] {
    width: 32px;
    height: 32px;
    border: 3px solid #27272a;
    border-top-color: #cc0000;
    border-radius: 50%;
    animation: spin-b-78vn28wzwx 0.8s linear infinite;
}

@keyframes spin-b-78vn28wzwx {
    to { transform: rotate(360deg); }
}

/* Alerts */
.alert[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.alert-success[b-78vn28wzwx] {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.alert-error[b-78vn28wzwx] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Sections */
.edit-section[b-78vn28wzwx] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    overflow: hidden;
}

.section-header[b-78vn28wzwx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #27272a;
    background: #18181b;
}

.section-header h3[b-78vn28wzwx] {
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
    margin: 0;
}

.section-body[b-78vn28wzwx] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-description[b-78vn28wzwx] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: -8px 0 8px 0;
    line-height: 1.5;
}

/* Forms */
.form-row[b-78vn28wzwx] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-78vn28wzwx] {
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
}

.form-label-sm[b-78vn28wzwx] {
    font-size: 11px;
    font-weight: 500;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Fix for number inputs */
[b-78vn28wzwx] input[type="number"] {
    -moz-appearance: textfield;
}

[b-78vn28wzwx] input[type="number"]::-webkit-outer-spin-button,
[b-78vn28wzwx] input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-input[b-78vn28wzwx],
.form-textarea[b-78vn28wzwx] {
    padding: 12px 16px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #fafafa;
    font-size: 15px;
    transition: all 0.15s ease;
    outline: none;
    width: 100%;
}

.form-input:focus[b-78vn28wzwx],
.form-textarea:focus[b-78vn28wzwx] {
    border-color: #a1a1aa;
    background: #09090b;
    box-shadow: 0 0 0 1px #a1a1aa;
}

.form-input[b-78vn28wzwx]::placeholder,
.form-textarea[b-78vn28wzwx]::placeholder {
    color: #71717a;
}

.form-textarea[b-78vn28wzwx] {
    resize: vertical;
    min-height: 70px;
    font-family: inherit;
    line-height: 1.5;
}

.form-textarea.large[b-78vn28wzwx] {
    min-height: 140px;
}

.form-hint[b-78vn28wzwx] {
    font-size: 11px;
    color: #71717a;
    line-height: 1.4;
}

/* Input Variants */
.input-with-prefix[b-78vn28wzwx] {
    display: flex;
    align-items: stretch;
    border: 1px solid #27272a;
    border-radius: 8px;
    overflow: hidden;
    background: #09090b;
    transition: all 0.15s ease;
}

.input-with-prefix:focus-within[b-78vn28wzwx] {
    border-color: #a1a1aa;
    box-shadow: 0 0 0 1px #a1a1aa;
}

.input-prefix[b-78vn28wzwx] {
    padding: 12px 16px;
    background: #18181b;
    color: #71717a;
    font-size: 15px;
    border-right: 1px solid #27272a;
    white-space: nowrap;
}

.input-with-prefix .form-input[b-78vn28wzwx] {
    border: none;
    border-radius: 0;
    background: transparent;
}

.input-with-prefix .form-input:focus[b-78vn28wzwx] {
    box-shadow: none;
}

.input-with-suffix[b-78vn28wzwx] {
    display: flex;
    align-items: stretch;
    border: 1px solid #27272a;
    border-radius: 8px;
    overflow: hidden;
    background: #09090b;
    transition: all 0.15s ease;
}

.input-with-suffix:focus-within[b-78vn28wzwx] {
    border-color: #a1a1aa;
    box-shadow: 0 0 0 1px #a1a1aa;
}

.input-suffix[b-78vn28wzwx] {
    padding: 12px 16px;
    background: #18181b;
    color: #71717a;
    font-size: 15px;
    border-left: 1px solid #27272a;
    white-space: nowrap;
}

.input-with-suffix .form-input[b-78vn28wzwx] {
    border: none;
    border-radius: 0;
    background: transparent;
}

.input-with-suffix .form-input:focus[b-78vn28wzwx] {
    box-shadow: none;
}

.input-with-preview[b-78vn28wzwx] {
    display: flex;
    align-items: stretch;
    border: 1px solid #27272a;
    border-radius: 8px;
    overflow: hidden;
    background: #09090b;
    transition: all 0.15s ease;
}

.input-with-preview:focus-within[b-78vn28wzwx] {
    border-color: #a1a1aa;
    box-shadow: 0 0 0 1px #a1a1aa;
}

.input-with-preview .form-input[b-78vn28wzwx] {
    border: none;
    border-radius: 0;
    background: transparent;
}

.input-with-preview .form-input:focus[b-78vn28wzwx] {
    box-shadow: none;
}

.icon-preview[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: #18181b;
    border-left: 1px solid #27272a;
    color: #fafafa;
    font-size: 18px;
    flex-shrink: 0;
}

/* Tags Preview */
.tags-preview[b-78vn28wzwx] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
}

.tag-item[b-78vn28wzwx] {
    padding: 6px 12px;
    background: rgba(204, 0, 0, 0.15);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: 16px;
    font-size: 12px;
    color: #fafafa;
    font-weight: 500;
}

/* Features Grid */
.features-grid[b-78vn28wzwx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.feature-card[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-card:hover[b-78vn28wzwx] {
    background: #27272a;
    border-color: #a1a1aa;
}


.feature-card .form-input[b-78vn28wzwx] {
    font-size: 13px;
}


.preview-section[b-78vn28wzwx] {
    background-color: #18181b;
    border-color: #27272a;
}

.preview-card[b-78vn28wzwx] {
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

.preview-image[b-78vn28wzwx] {
    flex: 1 1 300px; 
    display: flex;
    flex-direction: column;
    background-color: #18181b;
    backdrop-filter: blur(10px);
    min-height: 300px;
}

.preview-image img[b-78vn28wzwx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.preview-placeholder[b-78vn28wzwx] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #52525b;
    font-size: 48px;
}

.preview-content[b-78vn28wzwx] {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.preview-icon[b-78vn28wzwx] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 0, 0, 0.15);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: 12px;
    color: #cc0000;
    font-size: 18px;
    margin-bottom: 14px;
}

.preview-content h4[b-78vn28wzwx] {
    font-size: 18px;
    font-weight: 600;
    color: #fafafa;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.preview-content p[b-78vn28wzwx] {
    font-size: 13px;
    color: #a1a1aa;
    margin: 0 0 16px 0;
    line-height: 1.6;
    flex: 1;
}

.preview-meta[b-78vn28wzwx] {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #27272a;
}

.preview-meta span[b-78vn28wzwx] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #a1a1aa;
}

.preview-meta i[b-78vn28wzwx] {
    font-size: 14px;
    color: rgba(204, 0, 0, 0.7);
}

/* Pricing Grid */
.pricing-grid[b-78vn28wzwx] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.pricing-card[b-78vn28wzwx] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.pricing-card.new[b-78vn28wzwx] {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

.pricing-card-header[b-78vn28wzwx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #18181b;
    border-bottom: 1px solid #27272a;
}

.pricing-card-order[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-input[b-78vn28wzwx] {
    width: 60px;
    padding: 6px 10px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 6px;
    color: #fafafa;
    font-size: 13px;
    text-align: center;
    outline: none;
}

.order-input:focus[b-78vn28wzwx] {
    border-color: #a1a1aa;
    box-shadow: 0 0 0 1px #a1a1aa;
}

.pricing-card-body[b-78vn28wzwx] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card-footer[b-78vn28wzwx] {
    padding: 16px 20px;
    background: #18181b;
    border-top: 1px solid #27272a;
}

.pricing-preview[b-78vn28wzwx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-preview-label[b-78vn28wzwx] {
    font-size: 14px;
    font-weight: 500;
    color: #e4e4e7;
}

.pricing-preview-price[b-78vn28wzwx] {
    font-size: 16px;
    font-weight: 600;
    color: #cc0000;
}

/* Empty State */
.empty-state-large[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    background: #18181b;
    border: 1px dashed #27272a;
    border-radius: 16px;
}

.empty-icon[b-78vn28wzwx] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #18181b;
    border-radius: 50%;
    font-size: 32px;
    color: #52525b;
}

.empty-state-large h3[b-78vn28wzwx] {
    font-size: 18px;
    font-weight: 600;
    color: #a1a1aa;
    margin: 0;
}

.empty-state-large p[b-78vn28wzwx] {
    font-size: 14px;
    color: #71717a;
    margin: 0;
}

/* Info Grid */
.info-grid[b-78vn28wzwx] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item[b-78vn28wzwx] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
}

.info-label[b-78vn28wzwx] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #71717a;
    font-weight: 500;
}

.info-value[b-78vn28wzwx] {
    font-size: 14px;
    color: #fafafa;
    font-weight: 500;
}

.info-value.code[b-78vn28wzwx] {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
}

/* Danger Zone */
.danger-zone[b-78vn28wzwx] {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.03);
}

.danger-zone .section-header[b-78vn28wzwx] {
    background: rgba(239, 68, 68, 0.05);
    border-bottom-color: rgba(239, 68, 68, 0.1);
}

.danger-zone .section-header h3[b-78vn28wzwx] {
    color: #ef4444;
}

.danger-item[b-78vn28wzwx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.danger-info[b-78vn28wzwx] {
    flex: 1;
}

.danger-info strong[b-78vn28wzwx] {
    display: block;
    font-size: 14px;
    color: #fafafa;
    margin-bottom: 6px;
    font-weight: 600;
}

.danger-info p[b-78vn28wzwx] {
    font-size: 13px;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.5;
}

/* Buttons */
.btn[b-78vn28wzwx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}
.error-state .btn[b-78vn28wzwx] {
    padding: 8px 16px;
    font-size: 13px;
}
.btn:disabled[b-78vn28wzwx] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary[b-78vn28wzwx] {
    background: #09090b;
    color: #fafafa;
    border: 1px solid #27272a;
}

.btn-secondary:hover:not(:disabled)[b-78vn28wzwx] {
    background: #18181b;
    color: #fafafa;
    border-color: #a1a1aa;
}

.btn-primary[b-78vn28wzwx] {
    background: #3b82f6;
    color: #fafafa;
}

.btn-primary:hover:not(:disabled)[b-78vn28wzwx] {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-danger[b-78vn28wzwx] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover:not(:disabled)[b-78vn28wzwx] {
    background: #dc2626;
    color: #fafafa;
    border-color: #dc2626;
}

.btn-icon[b-78vn28wzwx] {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-icon:hover[b-78vn28wzwx] {
    background: #27272a;
    color: #fafafa;
    border-color: #a1a1aa;
}

.btn-icon.danger:hover[b-78vn28wzwx] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-spinner[b-78vn28wzwx] {
    width: 14px;
    height: 14px;
    border: 2px solid #71717a;
    border-top-color: #fafafa;
    border-radius: 50%;
    animation: spin-b-78vn28wzwx 0.6s linear infinite;
}

/* Modal */
.modal-overlay[b-78vn28wzwx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-container[b-78vn28wzwx] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    animation: modalSlideUp-b-78vn28wzwx 0.2s ease;
}

@keyframes modalSlideUp-b-78vn28wzwx {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header[b-78vn28wzwx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #27272a;
}

.modal-title[b-78vn28wzwx] {
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
    margin: 0;
}

.modal-close[b-78vn28wzwx] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.15s ease;
}

.modal-close:hover[b-78vn28wzwx] {
    background: #27272a;
    color: #fafafa;
}

.modal-body[b-78vn28wzwx] {
    padding: 22px;
}

.modal-body p[b-78vn28wzwx] {
    font-size: 14px;
    color: #e4e4e7;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.modal-body .modal-subinfo[b-78vn28wzwx] {
    color: #a1a1aa;
    font-size: 13px;
}

.modal-footer[b-78vn28wzwx] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 22px;
    border-top: 1px solid #27272a;
}


.preview-features[b-78vn28wzwx] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    align-content: flex-start;
}

.preview-feature-tag[b-78vn28wzwx] {
    background-color: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.2);
    color: #fafafa;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}


.preview-cta[b-78vn28wzwx] {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #27272a;
}

.preview-cta-text[b-78vn28wzwx] {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #cc0000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.preview-cta-text[b-78vn28wzwx]::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 1px;
    background: #cc0000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}


.preview-content[b-78vn28wzwx] {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #18181b;
}

.preview-content p[b-78vn28wzwx] {
    font-size: 14px;
    color: #a1a1aa;
    margin: 0 0 16px 0;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 1400px) {
    .content-grid.with-sidebar[b-78vn28wzwx] {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .admin-main[b-78vn28wzwx] {
        margin-left: 70px;
    }
    
    .admin-content[b-78vn28wzwx] {
        padding: 24px;
    }
}

@media (max-width: 1024px) {
    .content-grid.with-sidebar[b-78vn28wzwx] {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar[b-78vn28wzwx] {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .features-grid[b-78vn28wzwx] {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid[b-78vn28wzwx] {
        grid-template-columns: 1fr;
    }
    
    .info-grid[b-78vn28wzwx] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-main[b-78vn28wzwx] {
        margin-left: 0;
    }
    
    .admin-header[b-78vn28wzwx] {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .header-actions[b-78vn28wzwx] {
        width: 100%;
        justify-content: flex-end;
    }
    
    .tab-navigation[b-78vn28wzwx] {
        padding: 0 20px;
    }
    
    .admin-content[b-78vn28wzwx] {
        padding: 20px;
    }
    
    .tab-header[b-78vn28wzwx] {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-row[b-78vn28wzwx] {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar[b-78vn28wzwx] {
        grid-template-columns: 1fr;
    }
    
    .danger-item[b-78vn28wzwx] {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* _content/Detalis/Components/Pages/AdminServices.razor.rz.scp.css */
*[b-lz9em8ro4x] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin-container[b-lz9em8ro4x] {
    display: flex;
    min-height: 100vh;
    background-color: #09090b;
    color: #fafafa;
}

.admin-main[b-lz9em8ro4x] {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Header */
.admin-header[b-lz9em8ro4x] {
    padding: 40px 48px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-content h1[b-lz9em8ro4x] {
    font-size: 32px;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.header-subtitle[b-lz9em8ro4x] {
    font-size: 15px;
    color: #a1a1aa;
}

.admin-content[b-lz9em8ro4x] {
    padding: 0 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Metrics */
.metrics-grid[b-lz9em8ro4x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.metric-card[b-lz9em8ro4x] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-header[b-lz9em8ro4x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label[b-lz9em8ro4x] {
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
}

.metric-icon[b-lz9em8ro4x] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.metric-icon.success[b-lz9em8ro4x] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.metric-icon.warning[b-lz9em8ro4x] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.metric-value[b-lz9em8ro4x] {
    font-size: 36px;
    font-weight: 700;
    color: #fafafa;
    line-height: 1;
}

.metric-change[b-lz9em8ro4x] {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.metric-change.positive[b-lz9em8ro4x] { color: #10b981; }
.metric-change.negative[b-lz9em8ro4x] { color: #ef4444; }
.metric-change.neutral[b-lz9em8ro4x] { color: #a1a1aa; }

/* Services Section */
.services-section[b-lz9em8ro4x] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.section-header[b-lz9em8ro4x] {
    padding: 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2[b-lz9em8ro4x] {
    font-size: 18px;
    font-weight: 600;
}

.section-actions[b-lz9em8ro4x] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-button[b-lz9em8ro4x] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.action-button.primary[b-lz9em8ro4x] {
    background: #3b82f6;
    color: white;
}

.action-button.primary:hover[b-lz9em8ro4x] {
    background: #2563eb;
}

/* Card Layout for Services */
.services-grid[b-lz9em8ro4x] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 24px;
    background: #09090b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.service-card[b-lz9em8ro4x] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}


.service-content[b-lz9em8ro4x] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.service-title[b-lz9em8ro4x] {
    font-size: 20px;
    font-weight: 700;
    color: #fafafa;
    letter-spacing: -0.02em;
}

.service-description[b-lz9em8ro4x] {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.5;
}

.service-details[b-lz9em8ro4x] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #27272a;
}

.detail-item[b-lz9em8ro4x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.detail-label[b-lz9em8ro4x] {
    color: #a1a1aa;
}

.detail-value[b-lz9em8ro4x] {
    color: #fafafa;
    font-weight: 500;
}

.service-actions[b-lz9em8ro4x] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.btn-icon[b-lz9em8ro4x] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #27272a;
    background: #09090b;
    color: #a1a1aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon:hover[b-lz9em8ro4x] {
    background: #27272a;
    color: #fafafa;
    border-color: #a1a1aa;
}

.btn-icon.danger:hover[b-lz9em8ro4x] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Modal */
.modal-overlay[b-lz9em8ro4x] {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.modal-container[b-lz9em8ro4x] {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.modal-header[b-lz9em8ro4x] {
    padding: 24px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-title[b-lz9em8ro4x] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.modal-close[b-lz9em8ro4x] {
    background: transparent;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-close:hover[b-lz9em8ro4x] {
    background: #27272a;
    color: #fafafa;
}

.modal-body[b-lz9em8ro4x] {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group[b-lz9em8ro4x] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label[b-lz9em8ro4x] {
    font-size: 13px;
    font-weight: 500;
    color: #a1a1aa;
}

.form-input[b-lz9em8ro4x], .form-textarea[b-lz9em8ro4x] {
    background: #09090b;
    border: 1px solid #27272a;
    color: #fafafa;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color 0.2s;
    width: 100%;
}

.form-textarea[b-lz9em8ro4x] {
    min-height: 100px;
    resize: vertical;
}

.form-input:focus[b-lz9em8ro4x], .form-textarea:focus[b-lz9em8ro4x] {
    outline: none;
    border-color: #3b82f6;
}

.modal-footer[b-lz9em8ro4x] {
    padding: 20px 24px;
    border-top: 1px solid #27272a;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn[b-lz9em8ro4x] {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-secondary[b-lz9em8ro4x] {
    background: #09090b;
    color: #fafafa;
    border: 1px solid #27272a;
}

.btn-secondary:hover[b-lz9em8ro4x] {
    border-color: #a1a1aa;
}

.btn-primary[b-lz9em8ro4x] {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover[b-lz9em8ro4x] {
    background: #2563eb;
}

/* Loading State */
.loading-state[b-lz9em8ro4x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
    gap: 16px;
    color: #a1a1aa;
}

.spinner[b-lz9em8ro4x] {
    width: 32px;
    height: 32px;
    border: 3px solid #27272a;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-lz9em8ro4x 1s linear infinite;
}

@keyframes spin-b-lz9em8ro4x {
    to { transform: rotate(360deg); }
}
/* _content/Detalis/Components/Pages/Error_page.razor.rz.scp.css */
.error-container[b-1wyv73f8o2] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
}

.error-content[b-1wyv73f8o2] {
    max-width: 600px;
    padding: 20px;
}

.error-title[b-1wyv73f8o2] {
    font-size: 96px;
    font-weight: 700;
    color: #cc0000;
    margin-bottom: 20px;
    outline: none;
}

.error-message[b-1wyv73f8o2] {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-primary[b-1wyv73f8o2] {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary:hover[b-1wyv73f8o2] {
    background-color: #a00000;
}
/* _content/Detalis/Components/Pages/Home.razor.rz.scp.css */
*[b-12adtq323f] {
    margin: 0;
    padding: 0;
    outline: none; 
    border: none; 
}

.hero[b-12adtq323f] {
    display: block;
    height: 100vh;
    background-color: #000; 
    color: #fff;
}
.hero p[b-12adtq323f] {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 90%;
}
.carousel[b-12adtq323f],
.carousel-inner[b-12adtq323f],
.carousel-item[b-12adtq323f] {
    height: 100%;
    width: 100%;
}
.carousel-item[b-12adtq323f] {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.8s ease;
}

#heroCarousel.carousel-fade .carousel-item[b-12adtq323f] {
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
}

#heroCarousel.carousel-fade .carousel-item.active[b-12adtq323f],
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start[b-12adtq323f],
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end[b-12adtq323f] {
    opacity: 1;
    z-index: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start[b-12adtq323f],
#heroCarousel.carousel-fade .active.carousel-item-end[b-12adtq323f] {
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}


@media (max-width: 767px) {
    .carousel-inner[b-12adtq323f],
    .carousel[b-12adtq323f],
    .carousel-item[b-12adtq323f],
    .carousel-item.active[b-12adtq323f] {
        height: 100vh !important;
    }
    
    .hero[b-12adtq323f] {
        min-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100vh !important;
        background-color: #000 !important;
        margin-bottom: 10vh;
        position: relative;
    }
    
    .hero-background[b-12adtq323f],
    .hero-background-img[b-12adtq323f] {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        min-width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        z-index: 0 !important;
        display: block !important;
    }
    
    .hero-overlay[b-12adtq323f] {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        min-width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        z-index: 1 !important;
        display: block !important;
    }
    
    .hero-content[b-12adtq323f] {
        position: relative !important;
        z-index: 2 !important;
    }
}


.carousel-fade .carousel-item.active[b-12adtq323f] {
    opacity: 1;
    z-index: 1;
}

.hero-controls[b-12adtq323f] {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 80px;
}

.carousel-control-prev[b-12adtq323f], .carousel-control-next[b-12adtq323f] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
    opacity: 1;
}

.carousel-control-prev:hover[b-12adtq323f], .carousel-control-next:hover[b-12adtq323f] {
    background: rgba(204, 0, 0, 0.5);
}

.carousel-indicators[b-12adtq323f] {
    position: static;
    margin: 0;
    display: flex;
    gap: 10px;
}

.carousel-indicators button[b-12adtq323f] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    opacity: 1;
}

.carousel-indicators button.active[b-12adtq323f] {
    background: #cc0000;
    transform: scale(1.2);
}


@keyframes fade-in-b-12adtq323f {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.hero-background[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) grayscale(20%);
    z-index: -1;
}
.hero-background-img[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) grayscale(20%);
    z-index: -1;
}

@supports (content-visibility: auto) {
    .below-fold[b-12adtq323f] {
        content-visibility: auto;
        contain-intrinsic-size: 1000px;
    }
}
@keyframes subtle-zoom-b-12adtq323f {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-overlay[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content[b-12adtq323f] {
    position: relative;
    z-index: 5;
    padding: 0 60px;
    margin-left: 0%;
    animation: none; 
}

@keyframes fade-in-up-b-12adtq323f {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline[b-12adtq323f] {
    display: inline-block;
    font-size: 16px;
    font-weight: 550;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.hero-tagline[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #cc0000; 
}

.hero-content h1[b-12adtq323f] {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: 1px;
}
.hero p[b-12adtq323f] {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-cta[b-12adtq323f] {
    display: flex;
    gap: 20px;
}

.btn-primary[b-12adtq323f] {
    display: inline-block;
    background-color: #cc0000; 
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary[b-12adtq323f]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-primary:hover[b-12adtq323f]::after {
    left: 100%;
}

.btn-primary:hover[b-12adtq323f] {
    background-color: #a00000; 
}

.btn-secondary[b-12adtq323f] {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 15px 36px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover[b-12adtq323f] {
    border-color: #cc0000; 
    color: #cc0000; 
}


@media (max-width: 991px) {
    .hero[b-12adtq323f] {
        height: auto; 
        min-height: 100vh;
        padding: 60px 0;
    }

    .hero-content[b-12adtq323f] {
        max-width: 600px;
        padding: 0 30px;
    }

    .hero h1[b-12adtq323f] {
        font-size: 36px; 
    }

    .hero p[b-12adtq323f] {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero-content[b-12adtq323f] {
        max-width: 600px;
        margin-left: 5%;
    }
    
    .hero h1[b-12adtq323f] {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .booking-panel[b-12adtq323f] {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0;
        transform: none;
    }
    
    .booking-panel-tab[b-12adtq323f] {
        display: none;
    }
    
    .booking-panel-content[b-12adtq323f] {
        border-left: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .hero[b-12adtq323f] {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .hero-content[b-12adtq323f] {
        margin-left: 0;
        padding: 0 30px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-tagline[b-12adtq323f] {
        padding-left: 0;
    }
    
    .hero-tagline[b-12adtq323f]::before {
        display: none;
    }
    
    .hero h1[b-12adtq323f] {
        font-size: 48px;
    }
    
    .hero p[b-12adtq323f] {
        margin: 0 auto 40px;
    }
    
    .hero-cta[b-12adtq323f] {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    /* Make all h2 elements smaller on mobile */
    .section-intro h2[b-12adtq323f], .faq-header h2[b-12adtq323f] {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    /* Smaller description text */
    .section-intro p[b-12adtq323f], .faq-header p[b-12adtq323f] {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* CTA section adjustments */
    .cta-section h2[b-12adtq323f] {
        font-size: 22px;
    }
    
    .cta-section p[b-12adtq323f] {
        font-size: 14px;
    }
    
    /* Contact section */
    .contact-info h2[b-12adtq323f] {
        font-size: 24px;
    }
    
    /* Gallery info text */
    .gallery-info h3[b-12adtq323f] {
        font-size: 18px;
    }
    
    .gallery-info p[b-12adtq323f] {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
        .header[b-12adtq323f] {
        padding: 20px;
    }

    .header-contact[b-12adtq323f] {
        padding: 8px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        background-color: rgba(204, 0, 0, 0.1);
        border: 1px solid rgba(204, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-contact span[b-12adtq323f] {
        display: none;
    }
    
    .phone-icon[b-12adtq323f] {
        margin-right: 0;
    }

    
    .main-nav[b-12adtq323f] {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .main-nav.active[b-12adtq323f] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul[b-12adtq323f] {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1[b-12adtq323f] {
        font-size: 36px;
    }
    
    .hero p[b-12adtq323f] {
        font-size: 16px;
    }
    
    .hero-cta[b-12adtq323f] {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary[b-12adtq323f], .btn-secondary[b-12adtq323f] {
        width: 100%;
        text-align: center;
    }
}


.services-section[b-12adtq323f] {
    padding: 120px 0;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.services-section[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.3), transparent);
}

.services-container[b-12adtq323f] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 767px) {
    .services-container[b-12adtq323f] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card[b-12adtq323f] {
        border-radius: 8px;
    }
    
    .service-visual[b-12adtq323f] {
        height: 200px;
    }
    
    .service-content[b-12adtq323f] {
        padding: 25px 20px;
    }
    
    .service-content h3[b-12adtq323f] {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-description[b-12adtq323f] {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .service-features[b-12adtq323f] {
        margin-bottom: 20px;
    }
    
    .feature-tag[b-12adtq323f] {
        padding: 3px 10px;
        font-size: 11px;
    }
    
    .service-cta[b-12adtq323f] {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-container[b-12adtq323f] {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 40px;
    }
    
    .service-content[b-12adtq323f] {
        padding: 10px 15px;
    }
    
    .service-content h3[b-12adtq323f] {
        font-size: 15px;
    }
}


.service-card[b-12adtq323f] {
    flex: 1 1 400px; 
    max-width: 450px; 
    display: flex;
    flex-direction: column;
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 600px;
}

.service-card:hover[b-12adtq323f] {
    border-color: rgba(204, 0, 0, 0.2);
}


.service-visual[b-12adtq323f] {
    position: relative;
    aspect-ratio: 16 / 10; 
    overflow: hidden;
}

.service-image[b-12adtq323f] {
    width: 100%;
    height: 100%;

}

.service-img[b-12adtq323f] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-size: cover;
}


.service-content[b-12adtq323f] {
    flex: 1;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
    padding: 24px;
}


.service-content h3[b-12adtq323f] {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    flex-shrink: 0; 
}

.service-description[b-12adtq323f] {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

.service-features[b-12adtq323f] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    align-content: flex-start;
}

.feature-tag[b-12adtq323f] {
    background-color: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-card:hover .feature-tag[b-12adtq323f] {
    background-color: rgba(204, 0, 0, 0.15);
    border-color: rgba(204, 0, 0, 0.3);
}

.service-cta[b-12adtq323f] {
    display: inline-block;
    background-color: transparent;
    margin-top: 0; 
    color: #cc0000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(204, 0, 0, 0.3);
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cta[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #cc0000;
    transition: left 0.3s ease;
    z-index: -1;
}

.service-cta:hover[b-12adtq323f]::before {
    left: 0;
}

.service-cta:hover[b-12adtq323f] {
    color: white;
    border-color: #cc0000;
}

.section-intro[b-12adtq323f] {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.services-bottom[b-12adtq323f] {
    max-width: 1400px;
    margin: 120px auto 0;
    padding: 0 40px;
    position: relative;
}

.sb-line[b-12adtq323f] {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(204, 0, 0, 0.4) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    margin-bottom: 60px;
}

.sb-content[b-12adtq323f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sb-content h2[b-12adtq323f] {
    font-size: 42px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -1px;
    margin: 0;
}

.btn-reserve-elegant[b-12adtq323f] {
    background: #cc0000;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}


.btn-reserve-elegant:hover[b-12adtq323f] {
    background: #b30000;
    color: #f0f0f0;
    box-shadow: 0 6px 16px rgba(204, 0, 0, 0.4);
}
.btn-reserve-elegant i[b-12adtq323f] {
    font-size: 20px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .services-bottom[b-12adtq323f] {
        margin-top: 80px;
        padding: 0 24px;
    }
    
    .sb-line[b-12adtq323f] {
        margin-bottom: 40px;
    }
    
    .sb-content[b-12adtq323f] {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .sb-content h2[b-12adtq323f] {
        font-size: 32px;
    }
    
    .btn-reserve-elegant[b-12adtq323f] {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-bottom[b-12adtq323f] {
        padding: 0 20px;
    }
    
    .sb-content h2[b-12adtq323f] {
        font-size: 28px;
    }
}


.section-tagline[b-12adtq323f] {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 20px;
    position: relative;
    padding: 0 40px;
}

.section-tagline[b-12adtq323f]::before,
.section-tagline[b-12adtq323f]::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #cc0000;
}

.section-tagline[b-12adtq323f]::before {
    left: 0;
}

.section-tagline[b-12adtq323f]::after {
    right: 0;
}
.section-intro h2[b-12adtq323f], .faq-header h2[b-12adtq323f] {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.3; 
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 10px; 
}

.section-intro p[b-12adtq323f], .faq-header p[b-12adtq323f] {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}


.gallery-container[b-12adtq323f] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item[b-12adtq323f] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 550px; 
    width: 600px;
    flex: 0 0 600px;
    transition: opacity 0.3s ease, transform 0.4s ease;
    opacity: 1;
}


.process-cta[b-12adtq323f] {
    text-align: center;
    margin-top: 70px;
    padding: 0 20px;
}

.process-cta p[b-12adtq323f] {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta-description[b-12adtq323f] {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

@media (max-width: 991px) {
    .process-section[b-12adtq323f] {
        padding: 80px 0;
    }
    
    .process-container[b-12adtq323f]::before {
        left: 50px;
    }
    
    .step-number[b-12adtq323f] {
        font-size: 54px;
        width: 80px;
    }
}

@media (max-width: 767px) {
    .process-step[b-12adtq323f] {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .step-number[b-12adtq323f] {
        text-align: left;
        margin-bottom: 15px;
        margin-left: 40px;
    }
    
    .process-container[b-12adtq323f]::before {
        left: 25px;
    }
    
    .step-content[b-12adtq323f] {
        padding: 30px;
    }
    
    .section-intro h2[b-12adtq323f] {
        font-size: 30px;
    }
    

    .process-section[b-12adtq323f] {
        padding: 60px 0;
    }
    .process-cta-description[b-12adtq323f] {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
}
@media (max-width: 480px) {
    .process-cta-description[b-12adtq323f] {
        font-size: 15px;
        margin-bottom: 20px;
    }
}



.btn-cta-primary[b-12adtq323f] {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.2);
}

.btn-cta-primary:hover[b-12adtq323f] {
    background-color: #a00000;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
}



.btn-large[b-12adtq323f] {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}

.btn-large:hover[b-12adtq323f] {
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
}


.about-section[b-12adtq323f] {
    padding: 120px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.about-section[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 0, 0, 0.35), transparent);
}

.section-intro[b-12adtq323f] {
    text-align: center;
    max-width: 900px; 
    margin: 0 auto 100px auto; 
    padding: 0 20px;
}

.section-intro h2[b-12adtq323f] {
    font-size: 48px; 
    margin-bottom: 25px;
    line-height: 1.2;
}



.about-content[b-12adtq323f] {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 40px; 
}

.about-grid[b-12adtq323f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 0 40px;
}

.about-grid.full-width-intro[b-12adtq323f] {
    grid-template-columns: 1.1fr 0.9fr;
    margin-bottom: 140px;
}

.about-grid.reversed-grid[b-12adtq323f] {
    grid-template-areas: "visual text";
}

.about-grid.reversed-grid .about-text[b-12adtq323f] {
    grid-area: text;
}

.about-grid.reversed-grid .about-visual[b-12adtq323f] {
    grid-area: visual;
}

.about-text[b-12adtq323f] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-paragraph h3[b-12adtq323f] {
    font-size: 16px;
    font-weight: 700;
    color: #cc0000;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 0;
}

.about-paragraph h3[b-12adtq323f]::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #cc0000, transparent);
}

.about-paragraph p[b-12adtq323f] {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.3px;
}

.about-visual[b-12adtq323f] {
    position: relative;
}

.about-image[b-12adtq323f] {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 520px;
    margin: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image.wide-image[b-12adtq323f] {
    height: 560px;
}

.about-image:hover[b-12adtq323f] {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-img[b-12adtq323f] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1);
    transition: filter 0.4s ease;
}

.about-image:hover .about-img[b-12adtq323f] {
    filter: brightness(0.85) contrast(1.05);
}


.about-values[b-12adtq323f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 120px;
    padding: 0 20px;
}

.value-item[b-12adtq323f] {
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #cc0000, #aa0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover[b-12adtq323f] {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(204, 0, 0, 0.2);
}

.value-item:hover[b-12adtq323f]::before {
    transform: scaleX(1);
}

.icon-wrapper[b-12adtq323f] {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-item:hover .icon-wrapper[b-12adtq323f] {
    background: rgba(204, 0, 0, 0.15);
    border-color: rgba(204, 0, 0, 0.4);
    transform: scale(1.05);
}

.icon-wrapper i[b-12adtq323f] {
    font-size: 24px;
    color: #cc0000;
    transition: color 0.3s ease;
}

.value-item h3[b-12adtq323f] {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.value-item p[b-12adtq323f] {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin: 0;
}


.contact-section[b-12adtq323f] {
    padding: 80px 20px;
}

.contact-container[b-12adtq323f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-info[b-12adtq323f] {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 56px 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}



.contact-info h2[b-12adtq323f] {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-info p[b-12adtq323f] {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-methods[b-12adtq323f] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method[b-12adtq323f] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method:hover[b-12adtq323f] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(204, 0, 0, 0.2);
}

.contact-method i[b-12adtq323f] {
    font-size: 20px;
    color: #cc0000;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-method div[b-12adtq323f] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method div span:first-child[b-12adtq323f] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-method a[b-12adtq323f] {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.contact-method a:hover[b-12adtq323f] {
    color: #cc0000;
}

.contact-method div span:last-child[b-12adtq323f] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}



.btn-contact-secondary[b-12adtq323f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-contact-secondary:hover[b-12adtq323f] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(204, 0, 0, 0.4);
    color: #cc0000;
}

.map-container[b-12adtq323f] {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}


.mapGoogle[b-12adtq323f] {
    width: 100%;
    height: 100%;
    min-height: 500px;
}


@media (max-width: 1024px) {
    .contact-container[b-12adtq323f] {
        gap: 40px;
    }
    
    .contact-info[b-12adtq323f] {
        padding: 40px 32px;
    }
    
    .about-grid[b-12adtq323f] {
        gap: 60px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-container[b-12adtq323f] {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-actions[b-12adtq323f] {
        flex-direction: column;
    }
    
    .about-grid[b-12adtq323f] {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-grid.reversed-grid[b-12adtq323f] {
        grid-template-areas: unset;
    }
    
    .about-values[b-12adtq323f] {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 80px;
    }
    
    .mapGoogle[b-12adtq323f] {
        min-height: 350px;
    }
}

.map-side[b-12adtq323f] {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-section[b-12adtq323f] {
    padding: 60px 20px;
    background-color: #0a0a0a;
}

.contact-container[b-12adtq323f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1700px;
    margin: 0 auto;
}

.contact-method span[b-12adtq323f] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}


.contact-method div span:first-child[b-12adtq323f] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 2px;
}

.contact-method div span:last-child[b-12adtq323f] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 400;
    margin-top: 2px;
}


.contact-method:hover span[b-12adtq323f] {
    color: rgba(255, 255, 255, 0.8);
}

.contact-method:hover div span:first-child[b-12adtq323f] {
    color: rgba(204, 0, 0, 0.8);
}

.contact-method:hover div span:last-child[b-12adtq323f] {
    color: rgba(255, 255, 255, 0.6);
}


.contact-method div span:not(:first-child):not(:last-child)[b-12adtq323f] {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.4;
}


.contact-info[b-12adtq323f] {
    background: rgba(15, 15, 15, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-info h2[b-12adtq323f] {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}
.contact-info p[b-12adtq323f] {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}
.contact-methods[b-12adtq323f] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method[b-12adtq323f] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-method i[b-12adtq323f] {
    font-size: 24px;
    color: #cc0000;
}

.contact-method div[b-12adtq323f] {
    display: flex;
    flex-direction: column;
}

.contact-method a[b-12adtq323f] {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover[b-12adtq323f] {
    color: #cc0000;
}

.contact-actions[b-12adtq323f] {
    display: flex;
    gap: 15px;
}


@media (max-width: 768px) {
    .contact-container[b-12adtq323f] {
        grid-template-columns: 1fr;
    }

    .mapGoogle[b-12adtq323f] {
        height: 300px;
    }
}



@media (max-width: 1024px) {
    .contact-split[b-12adtq323f] {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side[b-12adtq323f] {
        padding: 80px 40px;
    }
    
    .map-side[b-12adtq323f] {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .faq-grid[b-12adtq323f] {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .testimonials-grid[b-12adtq323f] {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .testimonials-stats[b-12adtq323f] {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .contact-info-side[b-12adtq323f] {
        padding: 60px 30px;
    }
    
    .contact-actions[b-12adtq323f] {
        flex-direction: column;
    }
    
    .map-overlay[b-12adtq323f] {
        bottom: 20px;
        right: 20px;
        left: 20px;
        right: 20px;
    }
}

.faq-section[b-12adtq323f] {
    padding: 100px 0;
    background-color: #0a0a0a;
    position: relative;
}
.faq-section[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.3), transparent);
}
.faq-container[b-12adtq323f] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header[b-12adtq323f] {
    text-align: center;
    max-width: 900px;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.accordion[b-12adtq323f] {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-bg: transparent;
}

.faq-item[b-12adtq323f] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.faq-item:last-child[b-12adtq323f] {
    border-bottom: none;
}

.accordion-header[b-12adtq323f] {
    margin-bottom: 0;
}

.faq-button[b-12adtq323f] {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    padding: 28px 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
    box-shadow: none;
    outline: none;
}

.faq-button:hover[b-12adtq323f] {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.faq-button:focus[b-12adtq323f] {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

.faq-button:not(.collapsed)[b-12adtq323f] {
    background: transparent;
    color: #ffffff;
    box-shadow: none;
}

.faq-button:not(.collapsed) .faq-icon[b-12adtq323f] {
    transform: rotate(45deg);
    color: #cc0000;
}

.faq-icon[b-12adtq323f] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    line-height: 1;
}

.faq-button:hover .faq-icon[b-12adtq323f] {
    color: #cc0000;
}

.accordion-collapse[b-12adtq323f] {
    border: none;
}

.faq-answer[b-12adtq323f] {
    padding: 0 0 28px 0;
    background: transparent;
}

.faq-answer p[b-12adtq323f] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Simple Contact */
.faq-contact[b-12adtq323f] {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-contact p[b-12adtq323f] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.faq-contact a[b-12adtq323f] {
    color: #cc0000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.faq-contact a:hover[b-12adtq323f] {
    opacity: 0.8;
    text-decoration: none;
    color: #cc0000;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section[b-12adtq323f] {
        padding: 80px 0;
    }
    
    .faq-container[b-12adtq323f] {
        padding: 0 16px;
    }
    
    .faq-header[b-12adtq323f] {
        margin-bottom: 50px;
    }
    
    .faq-header h2[b-12adtq323f] {
        font-size: 32px;
    }
    
    .faq-button[b-12adtq323f] {
        padding: 24px 0;
        font-size: 16px;
    }
    
    .faq-answer[b-12adtq323f] {
        padding: 0 0 24px 0;
    }
    
    .faq-answer p[b-12adtq323f] {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-header h2[b-12adtq323f] {
        font-size: 28px;
    }
    
    .faq-button[b-12adtq323f] {
        font-size: 15px;
    }
}



.gallery-section[b-12adtq323f] {
    padding: 120px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.gallery-filter[b-12adtq323f] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}



.filter-btn[b-12adtq323f] {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.filter-btn[b-12adtq323f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover:hover[b-12adtq323f]::before {
    left: 0;
}

.filter-btn:hover:hover[b-12adtq323f] {
    border-color: rgba(255, 255, 255, 0.6);
}




.filter-btn.active[b-12adtq323f] {
    background-color: #cc0000;
    border-color: #cc0000;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

.comparison-slider[b-12adtq323f] {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.comparison-wrapper[b-12adtq323f] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
}
.comparison-after[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Base layer */
}


.comparison-before-wrapper[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2; /* Before image layer */
}


.comparison-before[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    max-width: none;
}
.comparison-handle[b-12adtq323f] {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10; /* Handle above images */
}


.handle-line[b-12adtq323f] {
    flex: 1;
    width: 3px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), #ffffff, rgba(255,255,255,0.3));
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.handle-circle[b-12adtq323f] {
    width: 50px;
    height: 50px;
    background: #cc0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.handle-circle i[b-12adtq323f] {
    color: #ffffff;
    font-size: 14px;
}

.comparison-wrapper:hover .handle-circle[b-12adtq323f] {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.4);
}


.comparison-labels[b-12adtq323f] {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 20; /* Labels above everything */
}
.label-before[b-12adtq323f],
.label-after[b-12adtq323f] {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.label-before[b-12adtq323f] {
    background: rgba(0, 0, 0, 0.8);
}

.label-after[b-12adtq323f] {
    background: rgba(204, 0, 0, 0.9);
}

.comparison-info[b-12adtq323f] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: #ffffff;
    text-align: center;
    z-index: 20; /* Info above everything */
    pointer-events: none;
}



.comparison-info h3[b-12adtq323f] {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.comparison-info p[b-12adtq323f] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
/* Responsive adjustments for comparison slider */
@media (max-width: 768px) {
    .comparison-wrapper[b-12adtq323f] {
        height: 280px;
    }
    
    .handle-circle[b-12adtq323f] {
        width: 40px;
        height: 40px;
    }
    
    .handle-circle i[b-12adtq323f] {
        font-size: 12px;
    }
    
    .label-before[b-12adtq323f],
    .label-after[b-12adtq323f] {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .comparison-info h3[b-12adtq323f] {
        font-size: 1.1rem;
    }
    
    .comparison-info p[b-12adtq323f] {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .comparison-wrapper[b-12adtq323f] {
        height: 220px;
    }
    
    .handle-circle[b-12adtq323f] {
        width: 36px;
        height: 36px;
    }
    
    .comparison-info[b-12adtq323f] {
        padding: 15px;
    }
}


.gallery-badge[b-12adtq323f] {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-item:hover .gallery-badge[b-12adtq323f] {
    background-color: #cc0000;
}

.gallery-cta[b-12adtq323f] {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.gallery-cta .btn-primary[b-12adtq323f] {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.gallery-cta .btn-primary[b-12adtq323f]::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.7s ease;
}

.gallery-cta .btn-primary:hover[b-12adtq323f] {
    background-color: #b30000;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.gallery-cta .btn-primary:hover[b-12adtq323f]::before {
    left: 100%;
}

@media (max-width: 1200px) {
    .gallery-container[b-12adtq323f] {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .gallery-section[b-12adtq323f] {
        padding: 100px 0;
    }
    
    .gallery-item[b-12adtq323f] {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-section[b-12adtq323f] {
        padding: 80px 0;
    }
    
    .gallery-filter[b-12adtq323f] {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn[b-12adtq323f] {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .gallery-container[b-12adtq323f] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item[b-12adtq323f] {
        height: 300px;
    }
    
    .gallery-info h3[b-12adtq323f] {
        font-size: 18px;
    }
    
    .gallery-info p[b-12adtq323f] {
        font-size: 12px;
    }
    
    .gallery-view-btn[b-12adtq323f] {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .gallery-container[b-12adtq323f] {
        grid-template-columns: 1fr;
    }
    
    .gallery-item[b-12adtq323f] {
        height: 350px;
    }
}


/* Loading Overlay */
.loading-overlay[b-12adtq323f] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-state[b-12adtq323f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.spinner[b-12adtq323f] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #cc0000;
    border-radius: 50%;
    animation: spin-b-12adtq323f 0.8s linear infinite;
}

@keyframes spin-b-12adtq323f {
    to { transform: rotate(360deg); }
}
/* _content/Detalis/Components/Pages/Login.razor.rz.scp.css */
*[b-03kw8x5v5s] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Sans", sans-serif;
}

.login-container[b-03kw8x5v5s] {
    min-height: 100vh;
    background-color: #0e0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}

.login-box[b-03kw8x5v5s] {
    background: rgba(30,30,30,0.95);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.login-box h2[b-03kw8x5v5s] {
    color: #fff;
    margin-bottom: 28px;
    font-size: 26px;
    font-weight: 700;
}

.login-form[b-03kw8x5v5s] {
    width: 100%;
}

.form-group[b-03kw8x5v5s] {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label[b-03kw8x5v5s] {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.input-wrapper[b-03kw8x5v5s] {
    position: relative;
}

.form-group input[b-03kw8x5v5s],
.form-control[b-03kw8x5v5s] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 5px;
    border: 1px solid #222;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

.form-group input[b-03kw8x5v5s]::placeholder,
.form-control[b-03kw8x5v5s]::placeholder {
    color: #666;
    opacity: 1;
}


.input-focus-indicator[b-03kw8x5v5s] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #cc0000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


/* Alert Styles */
.alert[b-03kw8x5v5s] {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    position: relative;
}

.alert-danger[b-03kw8x5v5s] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-info[b-03kw8x5v5s] {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.alert i[b-03kw8x5v5s] {
    font-size: 18px;
}

.alert-close[b-03kw8x5v5s] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
}

.alert-close:hover[b-03kw8x5v5s] {
    opacity: 1;
}

.login-btn[b-03kw8x5v5s] {
    width: 50%;
    padding: 8px 4px;
    background: linear-gradient(135deg, #cc0000, #a00000);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, transform 0.2s;
}


.spinner-wrapper[b-03kw8x5v5s] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner[b-03kw8x5v5s] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-03kw8x5v5s 0.8s linear infinite;
}

@keyframes spin-b-03kw8x5v5s {
    to { transform: rotate(360deg); }
}

/* 2FA Verification Section */
#2fa-code[b-03kw8x5v5s] {
    text-align: center;
    font-size: 20px;
    letter-spacing: 8px;
    font-weight: 600;
    padding: 16px 14px;
}

.btn-link[b-03kw8x5v5s] {
    background: none;
    border: none;
    color: #cc0000;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    padding: 8px 0;
}

.btn-link:hover[b-03kw8x5v5s] {
    color: #ff4444;
}

/* Validation Messages */
.text-danger[b-03kw8x5v5s],
.validation-message[b-03kw8x5v5s] {
    color: #fca5a5;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.login-links[b-03kw8x5v5s] {
    margin-top: 18px;
    font-size: 14px;
}

.login-links a[b-03kw8x5v5s] {
    color: #cc0000;
    text-decoration: none;
    transition: color 0.2s;
}

.login-links a:hover[b-03kw8x5v5s] {
    color: #ff4444;
}

/* Responsive */
@media (max-width: 480px) {
    .login-box[b-03kw8x5v5s] {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .login-box h2[b-03kw8x5v5s] {
        font-size: 22px;
    }
    
    .login-btn[b-03kw8x5v5s] {
        width: 100%;
    }
    
    #2fa-code[b-03kw8x5v5s] {
        letter-spacing: 4px;
        font-size: 18px;
    }
}
/* _content/Detalis/Components/Pages/Pricing.razor.rz.scp.css */
*[b-rbvs6bt9ia] {
    margin: 0;
    padding: 0;
    outline: none; 
    border: none; 
}

.pricing-hero[b-rbvs6bt9ia] {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.service-hero-background[b-rbvs6bt9ia] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pricingHero.jpg') no-repeat center center/cover;
    background-position: center 10%;
    filter: brightness(0.4);
    z-index: -1;
}
.pricing-hero-content[b-rbvs6bt9ia] {
    text-align: center;
    max-width: 800px;
}

.pricing-hero-tagline[b-rbvs6bt9ia] {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 30px;
}

.pricing-hero-title[b-rbvs6bt9ia] {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -2px;
    outline: none;
}

.pricing-hero-subtitle[b-rbvs6bt9ia] {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.pricing-page-section[b-rbvs6bt9ia] {
    background-color: #0a0a0a;
    padding: 120px 0;
}

.pricing-page-container[b-rbvs6bt9ia] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-pricing-block[b-rbvs6bt9ia] {
    margin-bottom: 0px;
    padding-bottom: 60px;
}


.service-pricing-block:last-of-type[b-rbvs6bt9ia] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-pricing-header[b-rbvs6bt9ia] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.service-pricing-info[b-rbvs6bt9ia] {
    flex: 1;
}

.service-pricing-name[b-rbvs6bt9ia] {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.service-pricing-desc[b-rbvs6bt9ia] {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    max-width: 700px;
}

.service-detail-link[b-rbvs6bt9ia] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cc0000;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-detail-link:hover[b-rbvs6bt9ia] {
    gap: 12px;
    color: #ff0000;
}

.service-detail-link i[b-rbvs6bt9ia] {
    font-size: 16px;
}

.service-pricing-list[b-rbvs6bt9ia] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-item[b-rbvs6bt9ia] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.pricing-item:hover[b-rbvs6bt9ia] {
    border-bottom-color: rgba(204, 0, 0, 0.3);
    padding-left: 24px;
}

.pricing-item:last-child[b-rbvs6bt9ia] {
    border-bottom: none;
}

.pricing-item-left[b-rbvs6bt9ia] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-item-title[b-rbvs6bt9ia] {
    font-size: 21px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.pricing-item-description[b-rbvs6bt9ia] {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin: 0;
}

.pricing-item-right[b-rbvs6bt9ia] {
    display: flex;
    align-items: center;
}

.pricing-item-amount[b-rbvs6bt9ia] {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.pricing-item-request[b-rbvs6bt9ia] {
    font-size: 17px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    white-space: nowrap;
}

.service-pricing-empty[b-rbvs6bt9ia] {
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.service-pricing-empty p[b-rbvs6bt9ia] {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.pricing-page-cta[b-rbvs6bt9ia] {
    margin-top: 120px;
    padding-top: 80px;
}

.pricing-cta-content[b-rbvs6bt9ia] {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-cta-heading[b-rbvs6bt9ia] {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.pricing-cta-description[b-rbvs6bt9ia] {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin-bottom: 40px;
}

.pricing-cta-button[b-rbvs6bt9ia] {
    display: inline-block;
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #cc0000;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta-button:hover[b-rbvs6bt9ia] {
    background-color: #a00000;
    transform: translateY(-2px);
}

.pricing-loading[b-rbvs6bt9ia] {
    text-align: center;
    padding: 100px 0;
}

.pricing-loading p[b-rbvs6bt9ia] {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

@media (max-width: 991px) {
    .pricing-hero-title[b-rbvs6bt9ia] {
        font-size: 48px;
    }

    .pricing-page-container[b-rbvs6bt9ia] {
        padding: 0 40px;
    }

    .service-pricing-block[b-rbvs6bt9ia] {
        margin-bottom: 100px;
        padding-bottom: 100px;
    }

    .service-pricing-name[b-rbvs6bt9ia] {
        font-size: 36px;
    }

    .pricing-item[b-rbvs6bt9ia] {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .pricing-hero[b-rbvs6bt9ia] {
        min-height: 50vh;
        padding: 60px 24px;
    }

    .pricing-hero-title[b-rbvs6bt9ia] {
        font-size: 36px;
    }

    .pricing-hero-subtitle[b-rbvs6bt9ia] {
        font-size: 18px;
    }

    .pricing-page-section[b-rbvs6bt9ia] {
        padding: 80px 0;
    }

    .pricing-page-container[b-rbvs6bt9ia] {
        padding: 0 24px;
    }

    .service-pricing-block[b-rbvs6bt9ia] {
        margin-bottom: 80px;
        padding-bottom: 80px;
    }

    .service-pricing-header[b-rbvs6bt9ia] {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .service-pricing-name[b-rbvs6bt9ia] {
        font-size: 32px;
    }

    .service-pricing-desc[b-rbvs6bt9ia] {
        font-size: 17px;
    }

    .pricing-item[b-rbvs6bt9ia] {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
    }

    .pricing-item:hover[b-rbvs6bt9ia] {
        padding-left: 0;
    }

    .pricing-item-title[b-rbvs6bt9ia] {
        font-size: 19px;
    }

    .pricing-item-right[b-rbvs6bt9ia] {
        align-items: flex-start;
    }

    .pricing-item-amount[b-rbvs6bt9ia] {
        font-size: 24px;
    }

    .pricing-page-cta[b-rbvs6bt9ia] {
        margin-top: 80px;
        padding-top: 60px;
    }

    .pricing-cta-heading[b-rbvs6bt9ia] {
        font-size: 28px;
    }

    .pricing-cta-description[b-rbvs6bt9ia] {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .pricing-hero-title[b-rbvs6bt9ia] {
        font-size: 32px;
    }

    .service-pricing-name[b-rbvs6bt9ia] {
        font-size: 28px;
    }

    .pricing-item-title[b-rbvs6bt9ia] {
        font-size: 18px;
    }

    .pricing-item-amount[b-rbvs6bt9ia] {
        font-size: 22px;
    }
}


.sb-line[b-rbvs6bt9ia] {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(204, 0, 0, 0.4) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    margin-bottom: 50px;
}

/* Loading Overlay */
.loading-overlay[b-rbvs6bt9ia] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-state[b-rbvs6bt9ia] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.spinner[b-rbvs6bt9ia] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #cc0000;
    border-radius: 50%;
    animation: spin-b-rbvs6bt9ia 0.8s linear infinite;
}

@keyframes spin-b-rbvs6bt9ia {
    to { transform: rotate(360deg); }
}
/* _content/Detalis/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-page[b-h2rv7jipgx] {
	background: #0a0a0a;
	color: #fff;
	min-height: 100vh;
	padding: 120px 24px 96px;
	display: flex;
	justify-content: center;
}

.privacy-container[b-h2rv7jipgx] {
	width: min(100%, 860px);
	margin: 0;
	padding: 0;
}

.privacy-header[b-h2rv7jipgx] {
	margin-bottom: 28px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.privacy-container h1[b-h2rv7jipgx] {
	font-size: clamp(1.8rem, 2.4vw, 2.3rem);
	margin-bottom: 6px;
	color: #fff;
	text-align: left;
}

.privacy-subtitle[b-h2rv7jipgx] {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.98rem;
	margin: 0;
}

.privacy-section[b-h2rv7jipgx] {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-container h2[b-h2rv7jipgx] {
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: #fff;
}

.privacy-container h3[b-h2rv7jipgx] {
	font-size: 1rem;
	margin: 14px 0 8px;
	color: rgba(255, 255, 255, 0.95);
}

.privacy-container p[b-h2rv7jipgx] {
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 10px;
}

.privacy-container ol[b-h2rv7jipgx],
.privacy-container ul[b-h2rv7jipgx] {
	margin: 8px 0 0;
	padding-left: 22px;
}

.privacy-container li[b-h2rv7jipgx] {
	line-height: 1.72;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.9);
}

.privacy-container a[b-h2rv7jipgx] {
	color: #f6f6f6;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.privacy-container a:hover[b-h2rv7jipgx] {
	color: #ffffff;
}

.effective-date[b-h2rv7jipgx] {
	margin-top: 24px;
	padding-top: 12px;
	border-top: 1px dashed rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
	.privacy-page[b-h2rv7jipgx] {
		padding: 96px 16px 72px;
	}

	.privacy-container[b-h2rv7jipgx] {
		padding: 0;
	}

	.privacy-container h1[b-h2rv7jipgx] {
		font-size: 1.5rem;
	}
}
/* _content/Detalis/Components/Pages/ReservationSystem.razor.rz.scp.css */
/* ========================================
   RESERVATION SYSTEM - MINIMALIST DARK THEME
   ======================================== */

/* Reset & Base */
*[b-x4nmmncptz] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Container */
.reservation-page[b-x4nmmncptz] {
    min-height: 100vh;
    background: #0a0a0a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Minimal Header */
.minimal-header[b-x4nmmncptz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-link[b-x4nmmncptz] {
    display: flex;
    align-items: center;
}

.header-logo[b-x4nmmncptz] {
    height: 32px;
    width: auto;
}

.header-phone[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.header-phone:hover[b-x4nmmncptz] {
    color: #ffffff;
}

.header-phone i[b-x4nmmncptz] {
    font-size: 16px;
}

/* Main Content */
.reservation-content[b-x4nmmncptz] {
    flex: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 24px 60px;
}

/* Progress Indicator */
.progress-indicator[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.progress-dot[b-x4nmmncptz] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    transition: all 0.2s ease;
}

.progress-dot.active[b-x4nmmncptz] {
    background: #cc0000;
    border-color: #cc0000;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.progress-dot.completed[b-x4nmmncptz] {
    background: rgba(204, 0, 0, 0.1);
    border-color: #cc0000;
    color: #cc0000;
}

.progress-line[b-x4nmmncptz] {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.progress-line.active[b-x4nmmncptz] {
    background: #cc0000;
}

/* Step Section */
.step-section[b-x4nmmncptz] {
    animation: fadeIn-b-x4nmmncptz 0.4s ease;
}

@keyframes fadeIn-b-x4nmmncptz {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-x4nmmncptz] {
    animation: fadeIn-b-x4nmmncptz 0.4s ease;
}

/* Step Header */
.step-header[b-x4nmmncptz] {
    text-align: center;
    margin-bottom: 40px;
}

.step-label[b-x4nmmncptz] {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 12px;
}

.step-header h1[b-x4nmmncptz] {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.step-header p[b-x4nmmncptz] {
    font-size: 16px;
    color: #a0a0a0;
}


.select-service-step[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    min-height: calc(100vh - 200px);
    padding-bottom: 150px;
}

.step-sidebar[b-x4nmmncptz] {
    padding-right: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}


.sidebar-sticky[b-x4nmmncptz] {
    position: sticky;
    top: 140px;
}

.sidebar-label[b-x4nmmncptz] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 24px;
}

.sidebar-title[b-x4nmmncptz] {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0 0 22px 0;
    outline: none;
    white-space: nowrap; 
    max-width: none;    
}


.sidebar-hint[b-x4nmmncptz] {
    font-size: 14px;
    font-weight: 500; 
    color: #a0a0a0;   
    margin: 0;
    line-height: 1.5;
}

.services-panel[b-x4nmmncptz] {
    padding-left: 60px;
}

.svc[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: 1fr auto 24px;
    gap: 32px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.svc:first-child[b-x4nmmncptz] {
    padding-top: 0;
}

.svc:hover[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.12);
}


.svc:hover .svc-index[b-x4nmmncptz] {
    color: #5a5a5a;
}

.svc.is-selected .svc-index[b-x4nmmncptz] {
    color: #cc0000;
}

/* Content */
.svc-content[b-x4nmmncptz] {
    padding-right: 20px;
}

.svc-title[b-x4nmmncptz] {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #e0e0e0;
    margin: 0 0 12px 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.svc:last-child[b-x4nmmncptz] {
    border-bottom: none;
}

.svc:hover .svc-title[b-x4nmmncptz] {
    color: #ffffff;
    transform: translateX(4px);
}

.svc.is-selected .svc-title[b-x4nmmncptz] {
    color: #ffffff;
}

.svc-desc[b-x4nmmncptz] {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
    max-width: 380px;
    transition: color 0.4s ease;
}

.svc:hover .svc-desc[b-x4nmmncptz] {
    color: #7a7a7a;
}

/* Meta */
.svc-meta[b-x4nmmncptz] {
    text-align: right;
    padding-top: 4px;
}

.svc-price[b-x4nmmncptz] {
    font-size: 15px;
    font-weight: 500;
    color: #5a5a5a;
    transition: color 0.4s ease;
}

.svc:hover .svc-price[b-x4nmmncptz] {
    color: #8a8a8a;
}

.svc.is-selected .svc-price[b-x4nmmncptz] {
    color: #cc0000;
}

/* Selection Indicator */
.svc-indicator[b-x4nmmncptz] {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
}

.indicator-dot[b-x4nmmncptz] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #3a3a3a;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.svc:hover .indicator-dot[b-x4nmmncptz] {
    border-color: #5a5a5a;
    transform: scale(1.2);
}

.svc.is-selected .indicator-dot[b-x4nmmncptz] {
    background: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.2);
}

/* Next Step Bar */
.next-step-bar[b-x4nmmncptz] {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.next-step-bar.show[b-x4nmmncptz] {
    bottom: 0;
}

.next-step-inner[b-x4nmmncptz] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 24px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.next-step-info[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.next-label[b-x4nmmncptz] {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a5a5a;
}

.next-value[b-x4nmmncptz] {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.next-btn[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #cc0000;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn:hover[b-x4nmmncptz] {
    background: #dd1111;
    gap: 16px;
}

.next-btn:disabled[b-x4nmmncptz] {
    opacity: 0.4;
    cursor: not-allowed;
}

.next-btn-icon[b-x4nmmncptz] {
    display: flex;
    width: 18px;
    height: 18px;
}

.next-btn-icon svg[b-x4nmmncptz] {
    width: 100%;
    height: 100%;
}

/* Back Button */
.back-btn[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn svg[b-x4nmmncptz] {
    width: 18px;
    height: 18px;
}

.back-btn:hover[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ========================================
   STEP 2 - FORM SECTIONS
   ======================================== */

.form-section[b-x4nmmncptz] {
    margin-bottom: 56px;
}

.section-head[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-num[b-x4nmmncptz] {
    font-size: 12px;
    font-weight: 500;
    color: #cc0000;
}

.section-label[b-x4nmmncptz] {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0;
}

.other-input[b-x4nmmncptz] {
    grid-column: 1 / -1;
    margin-top: 12px;
}

.custom-size-input[b-x4nmmncptz] {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
}
.custom-size-input[b-x4nmmncptz]::placeholder {
    color: #4a4a4a;
}

.custom-size-input:focus[b-x4nmmncptz] {
    outline: none;
    border-color: #cc0000;
    background: rgba(204, 0, 0, 0.04);
}

.size-item:hover .size-area[b-x4nmmncptz] {
    color: #888;
}
.size-selector[b-x4nmmncptz] {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.size-track[b-x4nmmncptz] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-item[b-x4nmmncptz] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    min-width: 100px;
}

.size-item[b-x4nmmncptz]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.size-item:hover[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.size-item:hover[b-x4nmmncptz]::before {
    opacity: 1;
}

.size-item.active[b-x4nmmncptz] {
    background: rgba(204, 0, 0, 0.1);
    border-color: #cc0000;
}

.size-item.active[b-x4nmmncptz]::before {
    opacity: 0;
}

.size-name[b-x4nmmncptz] {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.size-item.active .size-name[b-x4nmmncptz] {
    color: #ffffff;
}

.size-area[b-x4nmmncptz] {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.size-item:hover .size-area[b-x4nmmncptz] {
    color: #888;
}

.size-item.active .size-area[b-x4nmmncptz] {
    color: rgba(255, 255, 255, 0.6);
}

/* Calendar Minimal */
.calendar-minimal[b-x4nmmncptz] {
    max-width: 400px;
}

.cal-header[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cal-arrow[b-x4nmmncptz] {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #8a8a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cal-arrow svg[b-x4nmmncptz] {
    width: 18px;
    height: 18px;
}

.cal-arrow:hover[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cal-current[b-x4nmmncptz] {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
}

.cal-week-row[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.cal-week-row span[b-x4nmmncptz] {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #4a4a4a;
    padding: 8px 0;
}

.cal-day-grid[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-d[b-x4nmmncptz] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-d:hover:not(.past):not(.empty)[b-x4nmmncptz] {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.cal-d.empty[b-x4nmmncptz] {
    cursor: default;
}

.cal-d.today[b-x4nmmncptz] {
    border: 1px solid rgba(204, 0, 0, 0.5);
    color: #ffffff;
}

.cal-d.picked[b-x4nmmncptz] {
    background: #cc0000;
    color: #ffffff;
}

.cal-d.past[b-x4nmmncptz] {
    color: #3a3a3a;
    cursor: not-allowed;
}

/* Time Options */
.time-options[b-x4nmmncptz] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-opt[b-x4nmmncptz] {
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-opt:hover[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.time-opt.is-selected[b-x4nmmncptz] {
    background: #cc0000;
    border-color: #cc0000;
    color: #ffffff;
}

/* ========================================
   STEP 3 - EDITORIAL FORM
   ======================================== */

.editorial-form[b-x4nmmncptz] {
    width: 100%;
}

.input-group[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-field[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-field.full[b-x4nmmncptz] {
    grid-column: 1 / -1;
}


[b-x4nmmncptz] .editorial-form {
    width: 100%;
}

[b-x4nmmncptz] .input-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

[b-x4nmmncptz] .input-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

[b-x4nmmncptz] .input-field.full {
    grid-column: 1 / -1;
}

[b-x4nmmncptz] .input-field label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #5a5a5a;
}

[b-x4nmmncptz] .input-field input,
[b-x4nmmncptz] .input-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

[b-x4nmmncptz] .input-field input::placeholder,
[b-x4nmmncptz] .input-field textarea::placeholder {
    color: #4a4a4a;
}

[b-x4nmmncptz] .input-field input:focus,
[b-x4nmmncptz] .input-field textarea:focus {
    outline: none;
    border-color: #cc0000;
    background: rgba(204, 0, 0, 0.04);
}

[b-x4nmmncptz] .input-field textarea {
    resize: vertical;
    min-height: 120px;
}

[b-x4nmmncptz] .optional-tag {
    font-weight: 400;
    color: #4a4a4a;
    text-transform: none;
    letter-spacing: 0;
}

[b-x4nmmncptz] .validation-message {
    font-size: 12px;
    color: #cc0000;
    margin-top: 4px;
}

.form-actions[b-x4nmmncptz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================
   STEP 4 - SUMMARY
   ======================================== */

.summary-block[b-x4nmmncptz] {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-block:first-child[b-x4nmmncptz] {
    padding-top: 0;
}

.summary-item[b-x4nmmncptz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
}

.summary-item:first-child[b-x4nmmncptz] {
    padding-top: 0;
}

.summary-item:last-child[b-x4nmmncptz] {
    padding-bottom: 0;
}

.summary-label[b-x4nmmncptz] {
    font-size: 13px;
    font-weight: 500;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-val[b-x4nmmncptz] {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: right;
}

/* Terms Block */
.terms-block[b-x4nmmncptz] {
    padding: 32px 0;
}

.terms-check[b-x4nmmncptz] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.terms-check input[b-x4nmmncptz] {
    display: none;
}

.check-box[b-x4nmmncptz] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.check-box[b-x4nmmncptz]::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) scale(0);
    transition: transform 0.2s ease;
}

.terms-check input:checked + .check-box[b-x4nmmncptz] {
    background: #cc0000;
    border-color: #cc0000;
}

.terms-check input:checked + .check-box[b-x4nmmncptz]::after {
    transform: rotate(-45deg) scale(1);
}

.check-text[b-x4nmmncptz] {
    font-size: 14px;
    line-height: 1.6;
    color: #7a7a7a;
}

.check-text a[b-x4nmmncptz] {
    color: #cc0000;
    text-decoration: none;
}

.check-text a:hover[b-x4nmmncptz] {
    text-decoration: underline;
}

/* Confirm Button */
.confirm-btn[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #cc0000;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn:hover:not(:disabled)[b-x4nmmncptz] {
    background: #dd1111;
}

.confirm-btn:disabled[b-x4nmmncptz] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ========================================
   STEP 5 - SUCCESS
   ======================================== */

.success-step[b-x4nmmncptz] {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content[b-x4nmmncptz] {
    text-align: center;
    max-width: 480px;
}

.success-badge[b-x4nmmncptz] {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    background: rgb(2, 189, 2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn-b-x4nmmncptz 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn-b-x4nmmncptz {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.success-badge i[b-x4nmmncptz] {
    font-size: 36px;
    color: #ffffff;
}

.success-title[b-x4nmmncptz] {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.success-text[b-x4nmmncptz] {
    font-size: 16px;
    line-height: 1.6;
    color: #6a6a6a;
    margin: 0 0 40px 0;
}

.success-info[b-x4nmmncptz] {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.info-item[b-x4nmmncptz] {
    text-align: center;
}

.info-label[b-x4nmmncptz] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a5a5a;
    margin-bottom: 8px;
}

.info-val[b-x4nmmncptz] {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.home-link[b-x4nmmncptz] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-link svg[b-x4nmmncptz] {
    width: 18px;
    height: 18px;
}

.home-link:hover[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Section Block */
.section-block[b-x4nmmncptz] {
    margin-bottom: 32px;
}

.section-title[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-title i[b-x4nmmncptz] {
    font-size: 18px;
    color: rgb(26, 206, 26);
}

/* Building Size Grid */
.size-grid[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.size-card[b-x4nmmncptz] {
    position: relative;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.size-card:hover[b-x4nmmncptz] {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.15);
}

.size-card.selected[b-x4nmmncptz] {
    border-color: #cc0000;
    background: rgba(204, 0, 0, 0.1);
}

.size-icon[b-x4nmmncptz] {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.size-icon i[b-x4nmmncptz] {
    font-size: 18px;
    color: #a0a0a0;
}

.size-card.selected .size-icon i[b-x4nmmncptz] {
    color: #cc0000;
}

.size-info[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.size-name[b-x4nmmncptz] {
    font-size: 15px;
    font-weight: 600;
}

.size-desc[b-x4nmmncptz] {
    font-size: 12px;
    color: #666666;
}

.size-check[b-x4nmmncptz] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #cc0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.size-card.selected .size-check[b-x4nmmncptz] {
    opacity: 1;
    transform: scale(1);
}

.size-check i[b-x4nmmncptz] {
    font-size: 12px;
    color: #ffffff;
}

/* Calendar */
.calendar-wrapper[b-x4nmmncptz] {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.calendar-nav-bar[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-nav-btn[b-x4nmmncptz] {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cal-nav-btn:hover[b-x4nmmncptz] {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.15);
}

.cal-month[b-x4nmmncptz] {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.calendar-grid[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cal-weekdays[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.cal-weekdays span[b-x4nmmncptz] {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    padding: 8px 0;
}

.cal-days[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day[b-x4nmmncptz] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
}

.cal-day:hover:not(.disabled):not(.empty)[b-x4nmmncptz] {
    background: #1f1f1f;
}

.cal-day.empty[b-x4nmmncptz] {
    cursor: default;
}

.cal-day.today[b-x4nmmncptz] {
    border: 1px solid #cc0000;
}

.cal-day.selected[b-x4nmmncptz] {
    background: #cc0000;
    color: #ffffff;
}

.cal-day.disabled[b-x4nmmncptz] {
    color: #666666;
    opacity: 0.4;
    cursor: not-allowed;
}

/* Time Grid */
.time-grid[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.time-btn[b-x4nmmncptz] {
    padding: 12px 16px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-btn:hover[b-x4nmmncptz] {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.15);
}

.time-btn.selected[b-x4nmmncptz] {
    background: #cc0000;
    border-color: #cc0000;
    color: #ffffff;
}

/* Form Grid */
.contact-form[b-x4nmmncptz] {
    width: 100%;
}

.form-grid[b-x4nmmncptz] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.form-field[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field.full-width[b-x4nmmncptz] {
    grid-column: 1 / -1;
}

.form-field label[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
}

.form-field label i[b-x4nmmncptz] {
    font-size: 16px;
    color: #cc0000;
}

.form-field .optional[b-x4nmmncptz] {
    font-weight: 400;
    color: #666666;
}

.form-field input[b-x4nmmncptz],
.form-field textarea[b-x4nmmncptz] {
    width: 100%;
    padding: 14px 16px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-field input[b-x4nmmncptz]::placeholder,
.form-field textarea[b-x4nmmncptz]::placeholder {
    color: #666666;
}

.form-field input:focus[b-x4nmmncptz],
.form-field textarea:focus[b-x4nmmncptz] {
    outline: none;
    border-color: #cc0000;
    background: #111111;
}

.form-field textarea[b-x4nmmncptz] {
    resize: vertical;
    min-height: 100px;
}

[b-x4nmmncptz] .validation-message {
    font-size: 12px;
    color: #cc0000;
    margin-top: 4px;
}

/* Summary Card */
.summary-card[b-x4nmmncptz] {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-row[b-x4nmmncptz] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row:first-child[b-x4nmmncptz] {
    padding-top: 0;
}

.summary-row:last-child[b-x4nmmncptz] {
    padding-bottom: 0;
    border-bottom: none;
}

.summary-icon[b-x4nmmncptz] {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon i[b-x4nmmncptz] {
    font-size: 18px;
    color: #cc0000;
}

.summary-content[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.summary-label[b-x4nmmncptz] {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
}

.summary-value[b-x4nmmncptz] {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.summary-sub[b-x4nmmncptz] {
    font-size: 14px;
    color: #a0a0a0;
}

.summary-divider[b-x4nmmncptz] {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

/* Terms Section */
.terms-section[b-x4nmmncptz] {
    margin-bottom: 32px;
}

.checkbox-container[b-x4nmmncptz] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

.checkbox-container input[b-x4nmmncptz] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark[b-x4nmmncptz] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover .checkmark[b-x4nmmncptz] {
    border-color: rgba(255, 255, 255, 0.15);
}

.checkbox-container input:checked ~ .checkmark[b-x4nmmncptz] {
    background: #cc0000;
    border-color: #cc0000;
}

.checkmark[b-x4nmmncptz]::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark[b-x4nmmncptz]::after {
    display: block;
}

.checkbox-label[b-x4nmmncptz] {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
}

.checkbox-label a[b-x4nmmncptz] {
    color: #cc0000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.checkbox-label a:hover[b-x4nmmncptz] {
    text-decoration: underline;
}

/* Step Actions */
.step-actions[b-x4nmmncptz] {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.btn-primary[b-x4nmmncptz],
.btn-secondary[b-x4nmmncptz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.btn-primary[b-x4nmmncptz] {
    background: #cc0000;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-x4nmmncptz] {
    background: #e60000;
    transform: translateY(-1px);
}

.btn-primary:disabled[b-x4nmmncptz] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary[b-x4nmmncptz] {
    background: #1a1a1a;
    color: #a0a0a0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover[b-x4nmmncptz] {
    background: #1f1f1f;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-confirm[b-x4nmmncptz] {
    min-width: 200px;
}

/* Success Section */
.success-section[b-x4nmmncptz] {
    text-align: center;
    padding: 60px 0;
}

.success-icon-wrapper[b-x4nmmncptz] {
    margin-bottom: 32px;
}

.success-icon[b-x4nmmncptz] {
    width: 80px;
    height: 80px;
    background: #cc0000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: successPop-b-x4nmmncptz 0.5s ease;
}

@keyframes successPop-b-x4nmmncptz {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i[b-x4nmmncptz] {
    font-size: 40px;
    color: #ffffff;
}

.success-section h1[b-x4nmmncptz] {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.success-section p[b-x4nmmncptz] {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 32px;
}

.success-details[b-x4nmmncptz] {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.success-detail[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.success-detail i[b-x4nmmncptz] {
    font-size: 18px;
    color: #cc0000;
}

.success-detail span[b-x4nmmncptz] {
    font-size: 15px;
    font-weight: 500;
}

.success-actions[b-x4nmmncptz] {
    display: flex;
    justify-content: center;
}

/* Minimal Footer */
.minimal-footer[b-x4nmmncptz] {
    padding: 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #111111;
}

.minimal-footer p[b-x4nmmncptz] {
    font-size: 13px;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .minimal-header[b-x4nmmncptz] {
        padding: 16px 20px;
    }
    
    .header-logo[b-x4nmmncptz] {
        height: 28px;
    }
    
    .reservation-content[b-x4nmmncptz] {
        padding: 100px 16px 40px;
    }
    
    .progress-indicator[b-x4nmmncptz] {
        margin-top: 30px;
        margin-bottom: 32px;
    }
    
    .progress-dot[b-x4nmmncptz] {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .progress-line[b-x4nmmncptz] {
        width: 32px;
    }
    
    .select-service-step[b-x4nmmncptz] {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 140px;
    }
    
    .step-sidebar[b-x4nmmncptz] {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px;
    }
    
    .sidebar-sticky[b-x4nmmncptz] {
        position: static;
    }
    
    .sidebar-title[b-x4nmmncptz] {
        font-size: 32px;
    }
    
    .sidebar-title br[b-x4nmmncptz] {
        display: none;
    }
    
    .services-panel[b-x4nmmncptz] {
        padding-left: 0;
    }
    
    .svc[b-x4nmmncptz] {
        grid-template-columns: 32px 1fr 24px;
        gap: 16px;
        padding: 28px 0;
    }
    
    .svc-meta[b-x4nmmncptz] {
        display: none;
    }
    
    .svc-title[b-x4nmmncptz] {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .svc-title[b-x4nmmncptz]::after {
        content: attr(data-price);
        display: block;
        font-size: 14px;
        color: #5a5a5a;
        margin-top: 8px;
    }
    
    .svc-desc[b-x4nmmncptz] {
        font-size: 13px;
    }
    
    .next-step-inner[b-x4nmmncptz] {
        margin: 0 16px;
        padding: 16px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .next-step-info[b-x4nmmncptz] {
        display: none;
    }
    
    .next-btn[b-x4nmmncptz] {
        width: 100%;
        justify-content: center;
    }
    
    .size-track[b-x4nmmncptz] {
        gap: 8px;
    }
    
    .size-item[b-x4nmmncptz] {
        padding: 12px 16px;
        min-width: auto;
    }
    
    .input-group[b-x4nmmncptz] {
        grid-template-columns: 1fr;
    }
    
    .form-actions[b-x4nmmncptz] {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .form-actions .back-btn[b-x4nmmncptz],
    .form-actions .next-btn[b-x4nmmncptz],
    .form-actions .confirm-btn[b-x4nmmncptz] {
        width: 100%;
        justify-content: center;
    }
    
    .success-title[b-x4nmmncptz] {
        font-size: 36px;
    }
    
    .success-title br[b-x4nmmncptz] {
        display: none;
    }
    
    .success-info[b-x4nmmncptz] {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .sidebar-title[b-x4nmmncptz] {
        font-size: 28px;
    }
    
    .svc[b-x4nmmncptz] {
        grid-template-columns: 1fr 24px;
        padding: 24px 0;
    }
    
    .svc-index[b-x4nmmncptz] {
        display: none;
    }
    
    .svc-title[b-x4nmmncptz] {
        font-size: 18px;
    }
    
    .size-track[b-x4nmmncptz] {
        gap: 6px;
    }
    
    .size-item[b-x4nmmncptz] {
        padding: 12px 16px;
        min-width: auto;
        flex: 1 1 calc(50% - 3px);
    }
    
    .size-name[b-x4nmmncptz] {
        font-size: 14px;
    }
    
    .size-area[b-x4nmmncptz] {
        font-size: 11px;
    }
    
    .time-options[b-x4nmmncptz] {
        gap: 8px;
    }
    
    .time-opt[b-x4nmmncptz] {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .calendar-minimal[b-x4nmmncptz] {
        max-width: 100%;
    }
    
    .success-info[b-x4nmmncptz] {
        flex-direction: column;
        gap: 20px;
    }
}

/* Loading Overlay */
.loading-overlay[b-x4nmmncptz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-state[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.spinner[b-x4nmmncptz] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #cc0000;
    border-radius: 50%;
    animation: spin-b-x4nmmncptz 0.8s linear infinite;
}

@keyframes spin-b-x4nmmncptz {
    to { transform: rotate(360deg); }
}

/* Error Banner */
.error-banner[b-x4nmmncptz] {
    width: 100%;
    margin-bottom: 32px;
    animation: slideDown-b-x4nmmncptz 0.4s ease;
}

@keyframes slideDown-b-x4nmmncptz {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-content[b-x4nmmncptz] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: 12px;
    position: relative;
}

.error-content > i[b-x4nmmncptz] {
    font-size: 24px;
    color: #cc0000;
    flex-shrink: 0;
}

.error-text[b-x4nmmncptz] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.error-text strong[b-x4nmmncptz] {
    font-size: 14px;
    font-weight: 600;
    color: #ff4444;
    letter-spacing: 0.5px;
}

.error-text span[b-x4nmmncptz] {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
}

.error-close[b-x4nmmncptz] {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #8a8a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.error-close:hover[b-x4nmmncptz] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.error-close i[b-x4nmmncptz] {
    font-size: 20px;
}
/* _content/Detalis/Components/Pages/ServiceDetail.razor.rz.scp.css */
*[b-hjuxy0nwdi] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sarala', sans-serif;
}

.service-detail-hero[b-hjuxy0nwdi] {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-background[b-hjuxy0nwdi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: -1;
}

.service-hero-content[b-hjuxy0nwdi] {
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
    z-index: 2;
}

.service-hero-tagline[b-hjuxy0nwdi] {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 30px;
}

.service-hero-title[b-hjuxy0nwdi] {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -1px;
    outline: none;
}

.service-hero-subtitle[b-hjuxy0nwdi] {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 40px;
}

.service-content-section[b-hjuxy0nwdi] {
    background-color: #0a0a0a;
    padding: 120px 0;
}

.service-content-container[b-hjuxy0nwdi] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.content-intro[b-hjuxy0nwdi] {
    margin-bottom: 200px;
    position: relative;
}

.content-heading[b-hjuxy0nwdi] {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 50px;
    max-width: 1200px;
    position: relative;
}


.content-body[b-hjuxy0nwdi] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: none;
}

.content-body p[b-hjuxy0nwdi] {
    font-size: 19px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

.content-body p:first-child[b-hjuxy0nwdi] {
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.7;
    grid-column: 1 / -1;
    max-width: 850px;
    padding-left: 40px;
    border-left: 3px solid #cc0000;
    margin-bottom: 60px;
}

.content-body p:first-child[b-hjuxy0nwdi]::before {
    display: none;
}

.content-body p:not(:first-child)[b-hjuxy0nwdi] {
    padding-left: 0;
}

@media (max-width: 991px) {
    .content-intro[b-hjuxy0nwdi] {
        margin-bottom: 160px;
    }

    .content-heading[b-hjuxy0nwdi] {
        font-size: 48px;
        margin-bottom: 80px;
    }

    .content-heading[b-hjuxy0nwdi]::after {
        bottom: -40px;
        width: 100px;
    }

    .content-body[b-hjuxy0nwdi] {
        gap: 60px;
    }

    .content-body p[b-hjuxy0nwdi] {
        font-size: 18px;
    }

    .content-body p:first-child[b-hjuxy0nwdi] {
        font-size: 21px;
        padding-left: 32px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .content-intro[b-hjuxy0nwdi] {
        margin-bottom: 120px;
    }

    .content-heading[b-hjuxy0nwdi] {
        font-size: 38px;
        letter-spacing: -1.5px;
        margin-bottom: 60px;
    }

    .content-heading[b-hjuxy0nwdi]::after {
        bottom: -30px;
        width: 80px;
        height: 2px;
    }

    .content-body[b-hjuxy0nwdi] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-body p[b-hjuxy0nwdi] {
        font-size: 17px;
        line-height: 1.75;
    }

    .content-body p:first-child[b-hjuxy0nwdi] {
        font-size: 19px;
        padding-left: 24px;
        margin-bottom: 36px;
        border-left-width: 2px;
    }
}

@media (max-width: 480px) {
    .content-intro[b-hjuxy0nwdi] {
        margin-bottom: 100px;
    }

    .content-heading[b-hjuxy0nwdi] {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .content-heading[b-hjuxy0nwdi]::after {
        bottom: -25px;
        width: 60px;
    }

    .content-body[b-hjuxy0nwdi] {
        gap: 28px;
    }

    .content-body p[b-hjuxy0nwdi] {
        font-size: 16px;
    }

    .content-body p:first-child[b-hjuxy0nwdi] {
        font-size: 18px;
        padding-left: 20px;
        margin-bottom: 32px;
    }
}
.pricing-section[b-hjuxy0nwdi] {
    margin-bottom: 120px;
}
.section-header-wrapper[b-hjuxy0nwdi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 24px;
    border-bottom: 2px solid #cc0000;
}
.section-heading[b-hjuxy0nwdi] {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
}

.pricing-link[b-hjuxy0nwdi] {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}
.pricing-link:hover[b-hjuxy0nwdi] {
    color: #cc0000;
}

.pricing-grid[b-hjuxy0nwdi] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-row[b-hjuxy0nwdi] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.pricing-row:hover[b-hjuxy0nwdi] {
    border-bottom-color: rgba(204, 0, 0, 0.3);
    padding-left: 24px;
}

.pricing-row:last-child[b-hjuxy0nwdi] {
    border-bottom: none;
}

.pricing-left[b-hjuxy0nwdi] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-title[b-hjuxy0nwdi] {
    font-size: 21px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.pricing-description[b-hjuxy0nwdi] {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.pricing-right[b-hjuxy0nwdi] {
    display: flex;
    align-items: center;
}

.pricing-amount[b-hjuxy0nwdi] {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.pricing-request[b-hjuxy0nwdi] {
    font-size: 17px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    white-space: nowrap;
}

.pricing-empty[b-hjuxy0nwdi] {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    font-style: italic;
}

.cta-section[b-hjuxy0nwdi] {
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content[b-hjuxy0nwdi] {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading[b-hjuxy0nwdi] {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cta-description[b-hjuxy0nwdi] {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin-bottom: 40px;
}

.cta-button[b-hjuxy0nwdi] {
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #cc0000;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover[b-hjuxy0nwdi] {
    background-color: #a00000;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .service-content-container[b-hjuxy0nwdi] {
        padding: 0 40px;
    }

    .service-content-section[b-hjuxy0nwdi] {
        padding: 100px 0;
    }

    .content-intro[b-hjuxy0nwdi] {
        margin-bottom: 100px;
    }

    .content-heading[b-hjuxy0nwdi] {
        font-size: 36px;
    }

    .pricing-section[b-hjuxy0nwdi] {
        margin-bottom: 100px;
    }

    .pricing-row[b-hjuxy0nwdi] {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .service-detail-hero[b-hjuxy0nwdi] {
        height: 60vh;
        min-height: 400px;
    }

    .service-hero-title[b-hjuxy0nwdi] {
        font-size: 36px;
    }

    .service-hero-subtitle[b-hjuxy0nwdi] {
        font-size: 18px;
    }

    .service-content-container[b-hjuxy0nwdi] {
        padding: 0 24px;
    }

    .service-content-section[b-hjuxy0nwdi] {
        padding: 80px 0;
    }

    .content-intro[b-hjuxy0nwdi] {
        margin-bottom: 80px;
    }

    .content-heading[b-hjuxy0nwdi] {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .content-body p[b-hjuxy0nwdi] {
        font-size: 17px;
    }

    .pricing-section[b-hjuxy0nwdi] {
        margin-bottom: 80px;
    }

    .pricing-row[b-hjuxy0nwdi] {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
    }

    .pricing-row:hover[b-hjuxy0nwdi] {
        padding-left: 0;
    }

    .pricing-title[b-hjuxy0nwdi] {
        font-size: 19px;
    }

    .pricing-right[b-hjuxy0nwdi] {
        align-items: flex-start;
    }

    .pricing-amount[b-hjuxy0nwdi] {
        font-size: 24px;
    }

    .cta-section[b-hjuxy0nwdi] {
        padding-top: 60px;
    }

    .cta-heading[b-hjuxy0nwdi] {
        font-size: 28px;
    }

    .cta-description[b-hjuxy0nwdi] {
        font-size: 16px;
    }

    .cta-button[b-hjuxy0nwdi] {
        padding: 14px 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-hero-title[b-hjuxy0nwdi] {
        font-size: 32px;
    }

    .service-hero-subtitle[b-hjuxy0nwdi] {
        font-size: 16px;
    }

    .content-heading[b-hjuxy0nwdi] {
        font-size: 24px;
    }

    .content-body p[b-hjuxy0nwdi] {
        font-size: 16px;
    }

    .cta-heading[b-hjuxy0nwdi] {
        font-size: 24px;
    }
}

/* Loading Overlay */
.loading-overlay[b-hjuxy0nwdi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-state[b-hjuxy0nwdi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.spinner[b-hjuxy0nwdi] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #cc0000;
    border-radius: 50%;
    animation: spin-b-hjuxy0nwdi 0.8s linear infinite;
}

@keyframes spin-b-hjuxy0nwdi {
    to { transform: rotate(360deg); }
}
/* _content/Detalis/Components/Pages/Shared/AdminNavbar.razor.rz.scp.css */
*[b-1dgmf0oxf0] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin-container[b-1dgmf0oxf0] {
    display: flex;
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #ffffff;
}

.admin-sidebar[b-1dgmf0oxf0] {
    width: 280px;
    background-color: #111111;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.admin-logo[b-1dgmf0oxf0] {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.admin-logo-img[b-1dgmf0oxf0] {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.admin-logo h2[b-1dgmf0oxf0] {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.admin-nav[b-1dgmf0oxf0] {
    flex: 1;
    padding: 20px 0;
}

.admin-nav ul[b-1dgmf0oxf0] {
    list-style: none;
}

.nav-item[b-1dgmf0oxf0] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-item:hover[b-1dgmf0oxf0] {
    background-color: rgba(204, 0, 0, 0.1);
    color: #ffffff;
    border-left-color: rgba(204, 0, 0, 0.5);
}

.nav-item.active[b-1dgmf0oxf0] {
    background-color: rgba(204, 0, 0, 0.15);
    color: #cc0000;
    border-left-color: #cc0000;
}

.nav-item i[b-1dgmf0oxf0] {
    font-size: 18px;
    width: 20px;
}


.admin-user[b-1dgmf0oxf0] {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar i[b-1dgmf0oxf0] {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.user-info[b-1dgmf0oxf0] {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.user-name[b-1dgmf0oxf0] {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.user-role[b-1dgmf0oxf0] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.logout-btn[b-1dgmf0oxf0] {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.logout-btn:hover[b-1dgmf0oxf0] {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    border-color: rgba(204, 0, 0, 0.3);
}


@media (max-width: 1200px) {
    .admin-sidebar[b-1dgmf0oxf0] {
        width: 70px;
    }
    
    .admin-main[b-1dgmf0oxf0] {
        margin-left: 70px;
    }
    
    .admin-logo h2[b-1dgmf0oxf0],
    .nav-item span[b-1dgmf0oxf0],
    .user-info[b-1dgmf0oxf0] {
        display: none;
    }
    
    .nav-item[b-1dgmf0oxf0] {
        justify-content: center;
        padding: 15px;
    }
    
    .admin-user[b-1dgmf0oxf0] {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .logout-btn[b-1dgmf0oxf0] {
        position: static;
        margin-top: 4px;
    }
}
/* _content/Detalis/Components/Pages/Shared/HomeFooter.razor.rz.scp.css */
/* Footer Styles */
.footer[b-qup393qgqa] {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
}

.footer[b-qup393qgqa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.3), transparent);
}

.footer-top[b-qup393qgqa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.footer-column[b-qup393qgqa] {
    display: flex;
    flex-direction: column;
}

.footer-logo[b-qup393qgqa] {
    margin-bottom: 20px;
}

.footer-logo-img[b-qup393qgqa] {
    height: 40px;
    width: auto;
}

.footer-desc[b-qup393qgqa] {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social[b-qup393qgqa] {
    display: flex;
    gap: 15px;
}

.social-link[b-qup393qgqa] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover[b-qup393qgqa] {
    background-color: rgba(204, 0, 0, 0.2);
    transform: translateY(-3px);
}

.social-icon[b-qup393qgqa] {
    color: #ffffff;
    font-size: 18px;
}

.footer-title[b-qup393qgqa] {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title[b-qup393qgqa]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #cc0000;
}

.footer-links[b-qup393qgqa] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-qup393qgqa] {
    margin-bottom: 12px;
}

.footer-links a[b-qup393qgqa] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 12px;
}

.footer-links a[b-qup393qgqa]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(204, 0, 0, 0.7);
}

.footer-links a:hover[b-qup393qgqa] {
    color: #ffffff;
    padding-left: 15px;
}

.footer-contact[b-qup393qgqa] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li[b-qup393qgqa] {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon[b-qup393qgqa] {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 3px;
}

.contact-icon.location[b-qup393qgqa] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc0000'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-icon.phone[b-qup393qgqa] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc0000'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
}

.contact-icon.email[b-qup393qgqa] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc0000'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.contact-icon.hours[b-qup393qgqa] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc0000'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'/%3E%3Cpath d='M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.footer-contact a[b-qup393qgqa] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover[b-qup393qgqa] {
    color: #ffffff;
}

.footer-contact p[b-qup393qgqa] {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom[b-qup393qgqa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p[b-qup393qgqa] {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal[b-qup393qgqa] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a[b-qup393qgqa] {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover[b-qup393qgqa] {
    color: #ffffff;
}

.footer-divider[b-qup393qgqa] {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* Responsive footer styles */
@media (max-width: 991px) {
    .footer[b-qup393qgqa] {
        padding: 60px 0 20px;
    }
}

@media (max-width: 767px) {
    .footer-bottom[b-qup393qgqa] {
        flex-direction: column;
    }
    
    .footer-legal[b-qup393qgqa] {
        justify-content: center;
    }
}
/* _content/Detalis/Components/Pages/Shared/HomeNavbar.razor.rz.scp.css */
.header[b-57f3j0ru9x] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0; 
}

.header.scrolled[b-57f3j0ru9x] {
    padding: 10px 40px;
    background-color: rgba(10, 10, 10, 0.95);
}

.logo-container[b-57f3j0ru9x] {
    justify-self: start;
}


.logo[b-57f3j0ru9x] {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover[b-57f3j0ru9x] {
    transform: scale(1.05);
}

.header.scrolled .logo[b-57f3j0ru9x] {
    height: 36px;
}

.main-nav[b-57f3j0ru9x] {
    grid-column: 2;
    justify-self: center;
}

.header-actions[b-57f3j0ru9x] {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul[b-57f3j0ru9x] {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 5px 15px;
    border-radius: 4px;
}

.nav-divider[b-57f3j0ru9x] {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 10px;
}

.main-nav a[b-57f3j0ru9x] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 16px;
    border-radius: 3px;
}

.main-nav a[b-57f3j0ru9x]::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 12px;
    width: 0;
    height: 2px;
    background-color: #cc0000;
    transition: width 0.3s ease;
}

.main-nav a:hover[b-57f3j0ru9x] {
    color: #ffffff;
}



.main-nav a:hover[b-57f3j0ru9x]::after, 
.main-nav a.active[b-57f3j0ru9x]::after {
    width: calc(100% - 24px);
}

.header-contact[b-57f3j0ru9x] {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
}

.header-contact:hover[b-57f3j0ru9x] {
    background-color: rgba(204, 0, 0, 0.1);
    border-color: rgba(204, 0, 0, 0.3);
}

.phone-icon[b-57f3j0ru9x] {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc0000'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.header-btn[b-57f3j0ru9x] {
    display: inline-block;
    background-color: #cc0000; 
    color: #fff;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.header-btn[b-57f3j0ru9x]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.header-btn:hover[b-57f3j0ru9x]::after {
    left: 100%;
}

.header-btn:hover[b-57f3j0ru9x] {
    background-color: #a00000; 
}


/* Responsive navbar styles */
@media (max-width: 991px) {
    .header[b-57f3j0ru9x] {
        padding: 15px 20px;
        
    }
    
    .main-nav ul[b-57f3j0ru9x] {
        gap: 0;
        padding: 3px 10px;
    }
    
    .nav-divider[b-57f3j0ru9x] {
        margin: 0 5px;
    }
    
    .main-nav a[b-57f3j0ru9x] {
        padding: 6px 8px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .header[b-57f3j0ru9x] {
        padding: 20px;
    }

    .header-contact[b-57f3j0ru9x] {
        display :none;
    }
    
    .phone-icon[b-57f3j0ru9x] {
        margin-right: 0;
    }
    .phone-icon[b-57f3j0ru9x] {
        margin-right: 0;
    }
    
    .nav-divider[b-57f3j0ru9x] {
        display: none;
    }
    
    .header-book-btn[b-57f3j0ru9x] {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .main-nav[b-57f3j0ru9x] {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 10px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .main-nav.active[b-57f3j0ru9x] {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul[b-57f3j0ru9x] {
        flex-direction: column;
        width: 100%;
        gap: 5px;
        background: none;
        border: none;
        padding: 0;
    }
    
    .main-nav a[b-57f3j0ru9x] {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* Burger Button Styles */
.burger-btn[b-57f3j0ru9x] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    transition: all 0.3s ease;
    z-index: 1100;
}

.burger-btn:hover .burger-line[b-57f3j0ru9x] {
    background-color: #cc0000;
}

.burger-line[b-57f3j0ru9x] {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.burger-btn.active .burger-line:nth-child(1)[b-57f3j0ru9x] {
    transform: translateY(7.5px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2)[b-57f3j0ru9x] {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.active .burger-line:nth-child(3)[b-57f3j0ru9x] {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay[b-57f3j0ru9x] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active[b-57f3j0ru9x] {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu[b-57f3j0ru9x] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s, opacity 0.35s;
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 40px 40px;
}

/* Close Button */
.mobile-menu-close[b-57f3j0ru9x] {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.close-line[b-57f3j0ru9x] {
    position: absolute;
    width: 24px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: background-color 0.2s ease;
}

.close-line:first-child[b-57f3j0ru9x] {
    transform: rotate(45deg);
}

.close-line:last-child[b-57f3j0ru9x] {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover .close-line[b-57f3j0ru9x] {
    background-color: #cc0000;
}

.mobile-menu.active[b-57f3j0ru9x] {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/* Mobile Navigation */
.mobile-nav[b-57f3j0ru9x] {
    width: 100%;
    max-width: 300px;
}

.mobile-nav ul[b-57f3j0ru9x] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li[b-57f3j0ru9x] {
    width: 100%;
}

.mobile-nav a[b-57f3j0ru9x] {
    display: block;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 0;
    transition: color 0.2s ease;
    position: relative;
}

.mobile-nav a:hover[b-57f3j0ru9x],
.mobile-nav a:focus[b-57f3j0ru9x] {
    color: #ffffff;
}

.mobile-nav a[b-57f3j0ru9x]::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #cc0000;
    transition: width 0.3s ease;
}

.mobile-nav a:hover[b-57f3j0ru9x]::after {
    width: 30px;
}

/* Mobile Menu Actions */
.mobile-menu-actions[b-57f3j0ru9x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact-btn[b-57f3j0ru9x] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 0;
}

.mobile-contact-btn:hover[b-57f3j0ru9x] {
    color: #ffffff;
}

.mobile-contact-btn .phone-icon[b-57f3j0ru9x] {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.mobile-reserve-btn[b-57f3j0ru9x] {
    padding: 14px 50px;
    background: #cc0000;
    border: none;
    border-radius: 2px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-reserve-btn:hover[b-57f3j0ru9x] {
    background: #aa0000;
}

.mobile-reserve-btn:active[b-57f3j0ru9x] {
    transform: scale(0.98);
}

/* Show burger and mobile menu on mobile */
@media (max-width: 767px) {
    .burger-btn[b-57f3j0ru9x] {
        display: flex;
    }
    
    .mobile-menu[b-57f3j0ru9x],
    .mobile-menu-overlay[b-57f3j0ru9x] {
        display: flex;
    }
    
    .main-nav[b-57f3j0ru9x] {
        display: none;
    }
    
    .header-btn[b-57f3j0ru9x] {
        display: none;
    }
    
    .header-actions[b-57f3j0ru9x] {
        gap: 12px;
    }
}
