:root {
  --bg: #0a0a0f;
  --bg-card: rgba(255,255,255,0.03);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --primary: #6c5ce7;
  --primary-light: #a29bfe;
  --accent: #00cec9;
  --text: #f0f0f5;
  --text-dim: rgba(255,255,255,0.4);
  --red: #ff6b6b;
  --green: #00b894;
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.noise {
  position: fixed; inset: 0; z-index: -1;
  opacity: 0.02; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); }
.logo-icon { color: var(--accent); font-size: 1.3rem; }
.logo-text { font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }
.logo-text .accent { color: var(--primary-light); }
.nav-links { display: flex; gap: 20px; }
.nav-link {
  color: var(--text-dim); text-decoration: none; font-size: 0.9rem;
  transition: color 0.3s; position: relative; font-weight: 500;
}
.nav-link:hover { color: var(--text); }
.user-link { color: var(--primary-light); }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -200px; }
.orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; right: -100px; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: #fd79a8; top: 50%; left: 50%; animation-delay: -14s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 80px 0; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: rgba(108,92,231,0.15); border: 1px solid rgba(108,92,231,0.3);
  font-size: 0.85rem; color: var(--primary-light); margin-bottom: 24px;
  letter-spacing: 2px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 40px; margin-top: 60px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  border-radius: 12px; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.3s; border: none; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #5f3dc4);
  color: #fff; box-shadow: 0 4px 20px rgba(108,92,231,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,92,231,0.4); }
.btn-ghost {
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--text);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(108,92,231,0.1); }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }
.btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-1px); }

/* Sections */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block; font-size: 0.75rem; letter-spacing: 3px; color: var(--primary-light);
  margin-bottom: 8px;
}
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.section-desc { color: var(--text-dim); font-size: 0.95rem; }

.services { padding: 80px 0; background: linear-gradient(180deg, transparent 0%, rgba(108,92,231,0.02) 50%, transparent 100%); }

/* Category Filters */
.category-filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px;
}
.cat-filter {
  padding: 8px 18px; border-radius: 20px; border: 1px solid var(--glass-border);
  background: transparent; color: var(--text-dim); cursor: pointer;
  font-size: 0.85rem; font-family: inherit; transition: all 0.3s;
}
.cat-filter:hover { border-color: var(--primary); color: var(--text); }
.cat-filter.active { background: rgba(108,92,231,0.15); border-color: var(--primary); color: var(--primary-light); }

/* Service Cards */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.service-card-link { text-decoration: none; color: inherit; display: block; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px; cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden; height: 100%;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { border-color: rgba(108,92,231,0.3); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.custom-card { border-color: rgba(255,215,0,0.2); }
.service-card.custom-card::before { background: linear-gradient(90deg, #ffd700, #ff6b6b); }
.service-icon { font-size: 1.8rem; margin-bottom: 8px; }
.service-cat { font-size: 0.75rem; color: var(--text-dim); display: block; margin-bottom: 4px; }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.service-card p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 12px; line-height: 1.5; }
.service-price { font-size: 1.3rem; font-weight: 700; color: var(--primary-light); margin-bottom: 8px; }
.service-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-dim); }
.service-action { font-size: 0.8rem; color: var(--primary-light); opacity: 0; transition: opacity 0.3s; }
.service-card:hover .service-action { opacity: 1; }

/* Service Detail Page */
.service-detail-card { max-width: 720px; margin: 0 auto; }
.sd-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.sd-icon { font-size: 3rem; }
.sd-category { font-size: 0.8rem; color: var(--text-dim); display: block; margin-bottom: 4px; }
.sd-title { font-size: 1.8rem; font-weight: 700; }
.sd-desc { font-size: 1rem; line-height: 1.8; color: var(--text-dim); margin-bottom: 24px; }
.sd-features { margin-bottom: 24px; }
.sd-features h3 { font-size: 1rem; margin-bottom: 12px; color: var(--primary-light); }
.sd-features ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sd-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.sd-features li { font-size: 0.9rem; color: var(--text-dim); padding: 6px 10px; background: rgba(255,255,255,0.02); border-radius: 8px; }
.sd-price { text-align: center; padding: 20px; margin-bottom: 24px; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); }
.sd-price-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary-light); }
.sd-price-unit { font-size: 0.9rem; color: var(--text-dim); margin-top: 4px; }
.sd-form h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sd-result { margin-top: 20px; }

/* Form */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  color: var(--text); font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.3s; outline: none;
}
input:focus, textarea:focus { border-color: var(--primary); }
textarea { resize: vertical; min-height: 100px; }

/* Glass Card */
.glass {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 36px; backdrop-filter: blur(10px);
}

/* Stats */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 14px; text-align: center;
}
.stat-card span { display: block; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 4px; }
.stat-card strong { font-size: 1.4rem; font-weight: 700; }

/* Status Badge */
.status-badge {
  display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 500;
}
.status-badge.pending { background: rgba(255,107,107,0.15); color: var(--red); }
.status-badge.paid { background: rgba(0,184,148,0.15); color: var(--green); }

/* Table */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 10px 12px; font-size: 0.8rem; color: var(--text-dim); font-weight: 500; border-bottom: 1px solid var(--glass-border); }
.admin-table td { padding: 10px 12px; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.03); }

/* ==================== FILE UPLOAD ==================== */
.upload-section { margin-top: 16px; }
.upload-dropzone {
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--bg-card);
}
.upload-dropzone:hover { border-color: var(--primary-light); background: rgba(108,92,231,0.05); }
.upload-dropzone.dragover {
  border-color: var(--primary-light);
  background: rgba(108,92,231,0.1);
  transform: scale(1.01);
}
.upload-icon { font-size: 2.5rem; margin-bottom: 8px; }
.upload-text { font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.upload-hint { font-size: 0.78rem; color: var(--text-dim); }

.upload-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.upload-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 8px 10px;
  animation: fadeIn 0.3s ease;
}
.upload-item-preview {
  width: 36px; height: 36px; border-radius: 6px;
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
}
.upload-preview-img {
  width: 100%; height: 100%; object-fit: cover;
}
.upload-preview-icon { font-size: 1.3rem; }
.upload-item-info { flex: 1; min-width: 0; }
.upload-item-name {
  font-size: 0.82rem; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.upload-item-size { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }
.upload-item-remove {
  width: 24px; height: 24px; border-radius: 50%;
  border: none; background: rgba(255,107,107,0.15);
  color: var(--red); font-size: 0.75rem;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.upload-item-remove:hover { background: rgba(255,107,107,0.3); }

.upload-progress {
  margin-top: 12px; padding: 10px 14px;
  background: var(--glass); border-radius: var(--radius-sm);
}
.upload-progress-bar {
  height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; width: 0%; transition: width 0.3s;
  margin-bottom: 6px;
}
.upload-progress-text { font-size: 0.75rem; color: var(--text-dim); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 36px 0; text-align: center; }
.footer-brand { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.footer-desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 6px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ==================== Floating Chatbot ==================== */
.zm-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: flex-end; gap: 12px; cursor: pointer;
  transition: all 0.3s;
}
.zm-avatar-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #c44dff, #6c5ce7);
  padding: 3px; animation: zmFloat 3s ease-in-out infinite;
  box-shadow: 0 4px 25px rgba(196,77,255,0.4);
  position: relative;
}
.zm-avatar {
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(180deg, #ffe0ec 0%, #ffc8d8 100%);
  position: relative; overflow: hidden;
}
.zm-hair {
  position: absolute; top: -6px; left: -6px; right: -6px; height: 36px;
  background: linear-gradient(180deg, #2d1b0e 0%, #4a2c1a 100%);
  border-radius: 50% 50% 0 0;
}
.zm-hair::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 8px;
  background: #4a2c1a; border-radius: 0 0 50% 50%;
}
.zm-face { position: absolute; top: 26px; left: 12px; right: 12px; height: 20px; }
.zm-eye {
  position: absolute; width: 8px; height: 10px; background: #2d1b0e;
  border-radius: 50%; top: 4px; animation: zmBlink 4s ease-in-out infinite;
}
.zm-leye { left: 8px; }
.zm-reye { right: 8px; }
.zm-mouth {
  position: absolute; bottom: 0; left: 50%; margin-left: -4px;
  width: 8px; height: 5px; border-bottom: 2px solid #e87799;
  border-radius: 0 0 50% 50%;
}
.zm-blush {
  position: absolute; width: 10px; height: 6px; border-radius: 50%;
  background: rgba(255,150,180,0.5); top: 14px;
}
.zm-blush-l { left: 2px; }
.zm-blush-r { right: 2px; }
.zm-online {
  position: absolute; bottom: 0; right: 0; width: 14px; height: 14px;
  background: #00d68f; border-radius: 50%; border: 3px solid #0a0a0f;
  animation: zmPulse2 2s ease-in-out infinite;
}
@keyframes zmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes zmBlink {
  0%, 95%, 100% { transform: scaleY(1); }
  97% { transform: scaleY(0.1); }
}
@keyframes zmPulse2 {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,214,143,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0,214,143,0); }
}
.zm-speech {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px; border-radius: 16px 16px 16px 4px;
  font-size: 0.85rem; color: var(--text); margin-bottom: 8px;
  transition: opacity 0.5s; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.zm-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 370px; height: 540px; max-height: 80vh;
  background: rgba(18,18,30,0.97); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; backdrop-filter: blur(20px);
  display: none; flex-direction: column; overflow: hidden;
  box-shadow: 0 8px 50px rgba(0,0,0,0.6);
  animation: zmSlideUp 0.3s ease;
}
@keyframes zmSlideUp {
  from { opacity:0; transform:translateY(20px) scale(0.95); }
  to { opacity:1; transform:translateY(0) scale(1); }
}
.zm-pheader {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px; border-bottom:1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(196,77,255,0.12), rgba(108,92,231,0.08));
}
.zm-pheader-left { display:flex; align-items:center; gap:10px; }
.zm-pavatar { font-size:1.6rem; }
.zm-pname { font-weight:600; font-size:0.9rem; }
.zm-pstatus { font-size:0.75rem; color:#00d68f; display:flex; align-items:center; gap:4px; }
.zm-pdot { width:6px; height:6px; background:#00d68f; border-radius:50%; display:inline-block; animation:zmPulse2 2s infinite; }
.zm-pclose { background:none; border:none; color:var(--text-dim); font-size:1.1rem; cursor:pointer; padding:4px 8px; border-radius:8px; }
.zm-pclose:hover { background:rgba(255,255,255,0.08); color:var(--text); }

.zm-pmsgs { flex:1; overflow-y:auto; padding:16px 16px 8px; display:flex; flex-direction:column; gap:10px; }
.zm-msg { display:flex; gap:8px; max-width:88%; animation:zmFadeIn 0.3s ease; }
.zm-user { align-self:flex-end; flex-direction:row-reverse; }
.zm-msg-av { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.zm-msg-bx { padding:10px 14px; border-radius:14px; font-size:0.85rem; line-height:1.6; }
.zm-bot .zm-msg-bx { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.06); border-radius:14px 14px 14px 4px; }
.zm-user .zm-msg-bx { background:linear-gradient(135deg,rgba(196,77,255,0.2),rgba(108,92,231,0.15)); border-radius:14px 14px 4px 14px; }
.zm-msg-bx p { margin:0; }
@keyframes zmFadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.zm-qs { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
.zm-qs button {
  padding:6px 14px; border-radius:16px; border:1px solid rgba(255,255,255,0.08);
  background:rgba(196,77,255,0.08); color:var(--text-dim);
  font-size:0.78rem; cursor:pointer; transition:all 0.2s; font-family:inherit;
}
.zm-qs button:hover { border-color:#c44dff; color:#fff; background:rgba(196,77,255,0.18); }

.zm-pinput { display:flex; gap:8px; padding:12px 16px; border-top:1px solid rgba(255,255,255,0.06); }
.zm-pinput input { flex:1; padding:10px 14px; border-radius:12px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); color:var(--text); font-size:0.85rem; outline:none; font-family:inherit; }
.zm-pinput input:focus { border-color:#c44dff; }
.zm-send { width:40px; height:40px; border-radius:50%; border:none; background:linear-gradient(135deg,#ff6b9d,#c44dff); color:#fff; font-size:1rem; cursor:pointer; flex-shrink:0; }
.zm-send:hover { opacity:0.85; }

.zm-typing .zm-msg-bx { background:transparent !important; border:none !important; padding:6px 14px; }
.zm-dotz span { animation:zmTyping 1.4s infinite; font-size:1.8rem; line-height:0.2; }
.zm-dotz span:nth-child(2) { animation-delay:0.2s; }
.zm-dotz span:nth-child(3) { animation-delay:0.4s; }
@keyframes zmTyping { 0%,60%,100% { opacity:0.3; } 30% { opacity:1; } }

/* ==================== MOBILE RESPONSIVE ==================== */

/* Small phones */
@media (max-width:480px) {
  .zm-panel { width:calc(100vw - 24px); right:12px; bottom:12px; height:75vh; max-height:600px; }
  .zm-btn { right:12px; bottom:12px; }
  .zm-avatar-ring { width: 52px; height: 52px; }
  .zm-speech { font-size: 0.78rem; padding: 6px 12px; white-space: normal; max-width: 180px; }
}

/* Tablets & phones */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Navbar - simple hamburger */
  .nav-links {
    gap: 0;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 12px 24px;
    display: none;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-link:last-child { border-bottom: none; }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Hero */
  .hero-inner { padding: 40px 0; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); letter-spacing: 0; }
  .hero-desc { font-size: 0.9rem; padding: 0 8px; }
  .hero-badge { font-size: 0.75rem; padding: 4px 12px; }
  .hero-stats { gap: 16px; margin-top: 40px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.75rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Buttons */
  .btn { padding: 14px 24px; font-size: 0.95rem; min-height: 48px; }

  /* Section */
  .section-title { font-size: 1.5rem; }
  .section-desc { font-size: 0.85rem; }
  .services { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }

  /* Category Filters */
  .category-filters { gap: 6px; margin-bottom: 24px; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .cat-filter { padding: 7px 14px; font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }

  /* Service Cards - better touch */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 18px; }
  .service-card h3 { font-size: 1rem; }
  .service-icon { font-size: 1.5rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.8rem; }
  .service-price { font-size: 1.15rem; }
  .service-action { opacity: 0.7; font-size: 0.82rem; }

  /* Service Detail */
  .glass { padding: 20px; border-radius: 12px; }
  .service-detail { padding: 100px 0 40px !important; }
  .sd-header { flex-direction: column; text-align: center; gap: 8px; }
  .sd-icon { font-size: 2.2rem; }
  .sd-title { font-size: 1.4rem; }
  .sd-desc { font-size: 0.9rem; line-height: 1.7; }
  .sd-features ul { grid-template-columns: 1fr; }
  .sd-features li { font-size: 0.85rem; padding: 8px 12px; }
  .sd-price-amount { font-size: 2rem; }
  .sd-form h3 { font-size: 1rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  input, textarea { font-size: 16px; padding: 12px 14px; } /* 16px prevents iOS zoom */
  .btn-full { padding: 14px; }

  /* Admin Table - scrollable */
  .admin-table-wrap { overflow-x: auto; }
  .admin-table td, .admin-table th { padding: 8px 10px; font-size: 0.78rem; white-space: nowrap; }

  /* Stats */
  .admin-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Footer */
  .footer { padding: 24px 0; }
}

/* Hamburger button - hidden by default */
.hamburger { display: none; }
