Schedule Service

Verifying session...
--gold: #D4AF37; --border: rgba(255, 255, 255, 0.1); } body { margin: 0; font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text-main); padding: 20px; } .container { max-width: 800px; margin: 0 auto; background: var(--bg-card); padding: 40px; border-radius: 12px; border: 1px solid var(--border); } h1 { margin-top: 0; font-weight: 800; text-align: center; color: var(--gold); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: var(--text-muted); font-size: 0.95rem; } .form-group input, .form-group select { width: 100%; padding: 12px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg-dark); color: var(--text-main); box-sizing: border-box; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 20px; } .service-card { padding: 15px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.3s; text-align: center; } .service-card.selected { border-color: var(--gold); background: rgba(212, 175, 55, 0.1); } .service-price { font-weight: 600; color: var(--gold); margin-top: 10px;} .btn-primary { display: block; width: 100%; padding: 15px; background: var(--accent); color: white; border: none; border-radius: 6px; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: background 0.3s; } .btn-primary:hover { background: #1d4ed8; } .btn-primary:disabled { background: #475569; cursor: not-allowed; } .loading-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.8); display: flex; align-items: center; justify-content: center; z-index: 1000; } .spinner { border: 4px solid rgba(255,255,255,0.1); width: 40px; height: 40px; border-radius: 50%; border-left-color: var(--gold); animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #msg { text-align: center; margin-top: 20px; font-weight: 600; } .back-nav { margin-bottom: 20px; } .back-nav a { color: var(--text-muted); text-decoration: none; } .back-nav a:hover { color: var(--text-main); } max-width: 800px; margin: 40px auto; } h1 { text-align: center; margin-bottom: 30px; font-size: 2rem; } .card { background: var(--bg-card); padding: 30px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 20px;} .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); font-weight: 600;} .form-group input, .form-group select { width: 100%; padding: 14px; background: var(--bg-dark); border: 1px solid var(--border); color: white; border-radius: 6px; box-sizing: border-box; font-size: 1rem; } .btn-primary { display: block; width: 100%; background: var(--accent); color: white; padding: 15px; border: none; font-weight: 700; font-size: 1.1rem; border-radius: 6px; cursor: pointer; transition: 0.3s; margin-top: 20px; } .btn-primary:hover { opacity: 0.9; } .btn-primary:disabled { background: #444; cursor: not-allowed; } /* Loading Overlay */ #auth-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,10,10,0.9); display: flex; align-items: center; justify-content: center; z-index: 9999; flex-direction: column; text-align: center; padding: 20px; } .spinner { border: 4px solid rgba(255, 255, 255, 0.1); border-left-color: var(--accent); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin-bottom: 15px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .nav-link { position: absolute; top: 20px; left: 20px; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; } .nav-link:hover { color: white; } #msg-container { margin-top: 20px; text-align: center; font-weight: 600; } color: var(--text-main); scroll-behavior: smooth; overflow-x: hidden; padding-top: 80px; } /* Navbar (Mobile Menu) */ nav { position: fixed; top: 0; width: 100%; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border); padding: 15px 20px; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; } .logo { font-weight: 800; font-size: 1.2rem; color: var(--text-main); text-decoration: none; letter-spacing: 1px; } .menu-toggle { color: var(--text-main); font-size: 1.5rem; cursor: pointer; display: block; user-select: none; background: none; border: none; padding: 0; } .nav-links { display: none; width: 100%; flex-direction: column; gap: 15px; margin-top: 15px; text-align: center; } .nav-links.active { display: flex; } .nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.3s; padding: 10px 0; border-bottom: 1px solid #222; } .nav-links a:last-child { border-bottom: none; } .nav-links a:hover { color: var(--accent); } .auth-btn { background: var(--accent); padding: 10px; border-radius: 6px; font-weight: bold !important; border: none !important;} @media (min-width: 768px) { nav { padding: 20px 50px; flex-wrap: nowrap; } .logo { font-size: 1.5rem; } .menu-toggle { display: none; } .nav-links { display: flex; flex-direction: row; width: auto; margin-top: 0; align-items: center; gap: 30px; } .nav-links a { padding: 0; border: none; font-size: 0.9rem; } .auth-btn { padding: 8px 16px; } } .btn-primary { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: var(--text-main); color: var(--bg-dark); padding: 15px; text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 6px; transition: 0.3s; box-sizing: border-box; text-align: center; border: none; cursor: pointer; } .btn-primary:hover { background: var(--accent); color: white; } section { padding: 60px 20px; max-width: 800px; margin: 0 auto; } h2 { font-size: 2rem; text-align: center; margin-bottom: 40px; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 10px; } /* Form Styles */ .form-group { margin-bottom: 20px; text-align: left; } label { display: block; margin-bottom: 8px; font-size: 0.95rem; font-weight: 600; } input, select, textarea { width: 100%; padding: 12px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-main); box-sizing: border-box; font-family: 'Inter', sans-serif; } input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }

Schedule Your Detail

Fill out the form below to request an appointment. We will contact you to confirm.

--border: rgba(255, 255, 255, 0.1); } body { margin: 0; font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text-main); } nav { padding: 20px 50px; background: rgba(10, 10, 10, 0.95); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; } .logo { font-weight: 800; font-size: 1.5rem; color: var(--text-main); text-decoration: none; } .nav-links a { color: var(--text-main); text-decoration: none; margin-left: 20px; font-weight: 500; } .container { max-width: 800px; margin: 0 auto; padding: 40px 20px; } h1 { margin-top: 0; margin-bottom: 10px; font-size: 2rem; } p.subtitle { color: var(--text-muted); margin-bottom: 30px; } .card { background: var(--bg-card); padding: 30px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 30px;} .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem;} .form-group select, .form-group input { width: 100%; padding: 12px; background: var(--bg-dark); border: 1px solid var(--border); color: white; border-radius: 6px; box-sizing: border-box; font-family: inherit; font-size: 1rem; } .btn { width: 100%; padding: 15px; background: var(--accent); color: white; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; font-size: 1.1rem; transition: 0.2s;} .btn:hover { opacity: 0.9; } .btn:disabled { opacity: 0.5; cursor: not-allowed; } .price-preview { font-size: 1.5rem; font-weight: 800; color: var(--text-main); text-align: right; margin-bottom: 20px; } #loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.9); display: flex; align-items: center; justify-content: center; z-index: 9999; flex-direction: column; } .spinner { width: 40px; height: 40px; border: 4px solid var(--border); border-top: 4px solid var(--accent); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px;} @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .msg { font-size: 0.9rem; font-weight: 600; margin-top: 15px; text-align: center; } .msg.error { color: #ef4444; } .msg.success { color: #16A34A; }
← Back to Home

Schedule Your Detail

Select a package and choose a date to reserve your spot.

Loading packages...
msgContainer.style.color = '#ef4444'; msgContainer.textContent = 'Error processing booking. Please try again.'; submitBtn.disabled = false; submitBtn.textContent = 'Confirm Booking'; } }); initBookingPage(); msgEl.className = 'msg success'; msgEl.textContent = "Appointment confirmed! Redirecting to portal..."; setTimeout(() => { window.location.replace('account.html'); }, 2000); } catch (err) { console.error("Booking write error:", err); msgEl.className = 'msg error'; msgEl.textContent = "Failed to secure booking. Try again."; submitBtn.disabled = false; submitBtn.textContent = 'Confirm Appointment'; } }); initBooking();