/* ===================================================
   RUANG RENTAL PKU — Design System v2
   Dark & Light Mode with CSS Custom Properties
   =================================================== */

/* ── Theme Variables ──────────────────────────────── */
:root {
  --bg:         #ffffff;
  --bg-2:       #f8fafc;
  --bg-3:       #f1f5f9;
  --surface:    #ffffff;
  --surface-2:  #f8fafc;
  --border:     #e2e8f0;
  --border-2:   #cbd5e1;
  --text:       #0f172a;
  --text-2:     #475569;
  --text-3:     #94a3b8;
  --accent:     #f59e0b;
  --accent-dk:  #d97706;
  --accent-lt:  #fef3c7;
  --accent-rgb: 245,158,11;
  --green:      #22c55e;
  --green-dk:   #16a34a;
  --blue:       #3b82f6;
  --pink:       #ec4899;
  --purple:     #8b5cf6;
  --red:        #ef4444;
  --wa:         #25D366;
  --navy:       #0f172a;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.15);
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:50px;
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

[data-theme="dark"] {
  --bg:         #0c0c14;
  --bg-2:       #111120;
  --bg-3:       #181828;
  --surface:    #14142a;
  --surface-2:  #1c1c35;
  --border:     #1e2240;
  --border-2:   #2a2d50;
  --text:       #f1f5f9;
  --text-2:     #94a3b8;
  --text-3:     #475569;
  --accent:     #f59e0b;
  --accent-dk:  #d97706;
  --accent-lt:  rgba(245,158,11,0.12);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow:     0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.6);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.7);
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  transition: background var(--transition-slow), color var(--transition-slow);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* ── Typography ───────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(26px,4vw,40px); font-weight: 800;
  color: var(--text); margin-bottom: 16px; line-height: 1.2;
}
.section-header p { color: var(--text-2); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: all var(--transition); line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--navy);
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--accent-rgb),.35); }
.btn-secondary {
  background: var(--bg-3); color: var(--text); border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--border); }
.btn-ghost {
  background: transparent; color: var(--text-2); border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-2); }
.btn-wa { background: var(--wa); color: white; }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { opacity: .9; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn[disabled], .btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 66px;
  background: rgba(12,12,20,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
[data-theme="light"] .navbar {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; letter-spacing: .3px; color: white;
}
[data-theme="light"] .nav-brand { color: var(--text); }
.nav-brand strong { color: var(--accent); }
.nav-brand .brand-emoji { font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 7px 13px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500;
  transition: all var(--transition);
}
[data-theme="light"] .nav-links a { color: var(--text-2); }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,.1); }
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active { color: var(--text); background: var(--bg-3); }
.nav-links a.active { color: var(--accent) !important; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Theme toggle button */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
[data-theme="light"] .theme-toggle {
  border-color: var(--border); background: var(--bg-3); color: var(--text-2);
}
.theme-toggle:hover { background: rgba(255,255,255,.15); color: white; }
[data-theme="light"] .theme-toggle:hover { background: var(--border); }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: all .3s;
}
[data-theme="light"] .nav-toggle span { background: var(--text); }

/* ── Mobile Nav ───────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999; padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 16px; border-radius: var(--radius);
  color: var(--text-2); font-size: 16px; font-weight: 500; margin-bottom: 4px;
  transition: all var(--transition); border: 1px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--text); background: var(--bg-3); border-color: var(--border);
}
.mobile-nav a.active { color: var(--accent); }
.mobile-nav .mobile-nav-wa {
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: white; margin-top: 16px;
  padding: 14px 16px; border-radius: var(--radius); font-weight: 700;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
[data-theme="light"] .hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }

.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 40%, rgba(245,158,11,.18) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 80% 70%, rgba(139,92,246,.12) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 50% 10%, rgba(59,130,246,.08) 0%, transparent 50%);
}
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.12); color: var(--accent);
  border: 1px solid rgba(245,158,11,.25); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px,5.5vw,58px); font-weight: 800;
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn { padding: 14px 28px; font-size: 15px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-item { }
.stat-number {
  font-size: 32px; font-weight: 800; color: var(--accent);
  line-height: 1; display: block;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Hero visual cards */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  backdrop-filter: blur(8px); transition: all .3s;
}
.hero-card:hover {
  background: rgba(245,158,11,.08);
  border-color: rgba(245,158,11,.25);
  transform: translateY(-4px);
}
.hero-card .icon { font-size: 36px; margin-bottom: 10px; }
.hero-card h3 { color: white; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.hero-card p { color: rgba(255,255,255,.4); font-size: 12px; }

/* ── Page Hero ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  padding: 116px 0 56px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(245,158,11,.1) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(28px,4vw,46px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto; font-size: 16px; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-top: 18px; font-size: 13px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--border); }

/* Service cards */
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px; text-align: center;
  transition: all .3s; cursor: pointer; display: block;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--accent); }
.service-icon { font-size: 48px; margin-bottom: 18px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; }

/* Product cards */
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  padding: 28px; text-align: center; font-size: 44px;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .product-thumb { background: linear-gradient(135deg, var(--bg-3) 0%, var(--surface-2) 100%); }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); font-weight: 700; margin-bottom: 5px;
}
.product-name { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.product-spec { font-size: 13px; color: var(--text-3); margin-bottom: auto; }
.product-pricing {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--border);
}
.price-val { font-size: 20px; font-weight: 800; color: var(--text); }
.price-per { font-size: 11px; color: var(--text-3); }
.price-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-3); }
.deposit-val { font-size: 13px; font-weight: 600; color: var(--text-2); text-align: right; }

/* Package cards */
.package-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all .3s; position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.package-card.featured { border-color: var(--accent); }
[data-theme="dark"] .package-card.featured {
  box-shadow: 0 0 0 1px rgba(245,158,11,.3), 0 24px 48px rgba(0,0,0,.5);
}
.pkg-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: var(--navy);
  padding: 4px 14px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800; text-transform: uppercase;
}
.pkg-header { padding: 28px 28px 16px; }
.pkg-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.pkg-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.pkg-desc { font-size: 14px; color: var(--text-2); }
.pkg-price-block { padding: 0 28px 18px; }
.pkg-price { font-size: 34px; font-weight: 800; line-height: 1; }
.pkg-price-sub { font-size: 13px; color: var(--text-3); font-weight: 400; }
.pkg-discount {
  display: inline-block; background: rgba(34,197,94,.12); color: var(--green-dk);
  padding: 3px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; margin-top: 8px;
}
[data-theme="dark"] .pkg-discount { color: #4ade80; background: rgba(34,197,94,.15); }
.pkg-contents { padding: 0 28px 24px; }
.pkg-contents-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-3); margin-bottom: 10px;
}
.pkg-contents p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ── Catalog Filters ──────────────────────────────── */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 8px; margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px; border-radius: var(--radius-full);
  border: none; background: transparent;
  font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--text-2); transition: all var(--transition);
}
.filter-btn:hover { color: var(--text); background: var(--bg-3); }
.filter-btn.active { background: var(--accent); color: var(--navy); }

/* ── Forms ────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-label .req { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-2); border: 2px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 14px; font-family: inherit;
  transition: all var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; }
.form-check {
  display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px;
}
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }

/* ── Alerts ───────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; }
.alert-success { background: rgba(34,197,94,.1); color: #16a34a; border: 1px solid rgba(34,197,94,.2); }
.alert-error   { background: rgba(239,68,68,.1);  color: #dc2626; border: 1px solid rgba(239,68,68,.2);  }
.alert-info    { background: rgba(59,130,246,.1);  color: #2563eb; border: 1px solid rgba(59,130,246,.2);  }
.alert-warning { background: rgba(245,158,11,.1);  color: #d97706; border: 1px solid rgba(245,158,11,.2);  }
[data-theme="dark"] .alert-success { color: #4ade80; }
[data-theme="dark"] .alert-error   { color: #f87171; }
[data-theme="dark"] .alert-info    { color: #60a5fa; }
[data-theme="dark"] .alert-warning { color: #fbbf24; }

/* ── Badges ───────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.badge-pending   { background: rgba(245,158,11,.12);  color: #d97706; }
.badge-confirmed { background: rgba(59,130,246,.12);  color: #2563eb; }
.badge-active    { background: rgba(34,197,94,.12);   color: #16a34a; }
.badge-completed { background: var(--bg-3);           color: var(--text-3); }
.badge-cancelled { background: rgba(239,68,68,.12);   color: #dc2626; }
[data-theme="dark"] .badge-pending   { color: #fbbf24; }
[data-theme="dark"] .badge-confirmed { color: #60a5fa; }
[data-theme="dark"] .badge-active    { color: #4ade80; }
[data-theme="dark"] .badge-cancelled { color: #f87171; }

/* ── Tables ───────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.table-wrap table { width: 100%; border-collapse: collapse; background: var(--surface); }
.table-wrap th {
  background: var(--bg-3); color: var(--text-2);
  padding: 12px 16px; text-align: left; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}
.table-wrap td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; vertical-align: middle; color: var(--text);
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: var(--bg-2); }
.table-wrap code { background: var(--bg-3); padding: 2px 8px; border-radius: 4px; font-size: 12px; }

/* ── Tabs ─────────────────────────────────────────── */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 10px 22px; border-radius: var(--radius-full);
  border: 2px solid var(--border); background: var(--surface);
  font-size: 13px; font-weight: 600; color: var(--text-2); cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--border-2); color: var(--text); }
.tab-btn.active-wedding { border-color: var(--pink); background: var(--pink); color: white; }
.tab-btn.active-seminar { border-color: var(--blue); background: var(--blue); color: white; }
.tab-btn.active-concert { border-color: var(--purple); background: var(--purple); color: white; }
.tab-btn.active-all { border-color: var(--accent); background: var(--accent); color: var(--navy); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden; background: var(--surface);
}
.faq-q {
  padding: 18px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15px; transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-2); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 20px;
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-a.open { max-height: 300px; padding: 0 20px 18px; }
.faq-icon { font-size: 20px; color: var(--accent); transition: transform .3s; }
.faq-icon.open { transform: rotate(45deg); }

/* ── Policy/Info boxes ────────────────────────────── */
.info-box {
  background: var(--accent-lt); border: 1px solid rgba(var(--accent-rgb),.25);
  border-radius: var(--radius); padding: 20px;
}
.info-box h4 { color: var(--accent-dk); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.info-box ul { list-style: none; }
.info-box ul li { padding: 4px 0; font-size: 13px; color: #78350f; }
.info-box ul li::before { content: '✓ '; color: var(--accent-dk); font-weight: 700; }
[data-theme="dark"] .info-box ul li { color: #fcd34d; }

/* ── Booking Sidebar ──────────────────────────────── */
.booking-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px; margin-bottom: 18px;
}
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--accent); }
.sidebar-row {
  display: flex; gap: 12px; margin-bottom: 12px; font-size: 14px;
}
.sidebar-row .lbl { color: var(--text-3); min-width: 110px; flex-shrink: 0; }
.sidebar-row .val { color: var(--text); font-weight: 500; }

/* ── Calculator ───────────────────────────────────── */
.calc-wrap {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; margin-bottom: 28px;
}
.calc-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.calc-subtitle { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.calc-item {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  animation: fadeIn .2s ease;
}
.calc-item-name { flex: 1; font-size: 14px; font-weight: 500; }
.calc-item-qty { display: flex; align-items: center; gap: 8px; }
.calc-qty-btn {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-3); color: var(--text); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--transition);
}
.calc-qty-btn:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.calc-qty-num { width: 32px; text-align: center; font-weight: 700; font-size: 15px; }
.calc-item-price { font-size: 14px; font-weight: 700; color: var(--accent); min-width: 80px; text-align: right; }
.calc-item-remove { color: var(--red); background: none; border: none; font-size: 18px; cursor: pointer; padding: 0 4px; }
.calc-total {
  background: var(--navy); color: white; border-radius: var(--radius);
  padding: 18px 20px; margin-top: 16px;
}
[data-theme="light"] .calc-total { background: var(--navy); }
.calc-total-rows { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.calc-total-rows strong { color: white; float: right; }
.calc-grand { font-size: 22px; font-weight: 800; color: var(--accent); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.15); }
.calc-grand span { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 400; }

/* ── Contact ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; margin-bottom: 18px;
}
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.contact-row { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 14px; }
.contact-row a { color: var(--accent); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

/* ── Portfolio grid ───────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.portfolio-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all .3s;
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.portfolio-thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), #1e3a6b);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
  position: relative; overflow: hidden;
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-type {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.6); color: white;
  padding: 4px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700;
}
.portfolio-body { padding: 20px; }
.portfolio-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.portfolio-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.portfolio-meta { display: flex; gap: 12px; margin-top: 12px; font-size: 12px; color: var(--text-3); }

/* ── Testimonials ─────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
}
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-event { font-size: 12px; color: var(--text-3); }

/* ── Blog ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; transition: all .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; }
.blog-meta { display: flex; gap: 12px; margin-top: 16px; font-size: 12px; color: var(--text-3); }

/* Booking tracking */
.tracking-result {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
}
.tracking-header {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.tracking-code { font-size: 28px; font-weight: 800; letter-spacing: 2px; }
.tracking-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tracking-info-item label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); display: block; margin-bottom: 4px; }
.tracking-info-item span { font-size: 15px; font-weight: 600; }

/* ── Admin Layout ─────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; background: var(--bg-2); }
.admin-sidebar {
  width: 250px; background: var(--navy); flex-shrink: 0;
  position: fixed; top: 0; left: 0; bottom: 0;
  overflow-y: auto; z-index: 100;
  display: flex; flex-direction: column;
}
[data-theme="dark"] .admin-sidebar { background: #080810; border-right: 1px solid var(--border); }
.sidebar-logo {
  padding: 22px 22px 18px; font-size: 16px; font-weight: 800;
  color: white; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-logo span { color: var(--accent); }
.sidebar-section-label {
  padding: 18px 22px 6px; font-size: 10px; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,.25); font-weight: 700;
}
.sidebar-nav { flex: 1; padding: 8px 0; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 22px; color: rgba(255,255,255,.55); font-size: 14px; font-weight: 500;
  transition: all .2s; border-left: 3px solid transparent;
}
.sidebar-nav a:hover { color: white; background: rgba(255,255,255,.06); }
.sidebar-nav a.active { color: white; background: rgba(245,158,11,.12); border-left-color: var(--accent); }
.sidebar-nav a .nav-icon { font-size: 16px; width: 22px; text-align: center; }
.sidebar-badge {
  margin-left: auto; background: var(--red); color: white;
  border-radius: var(--radius-full); padding: 1px 7px; font-size: 11px; font-weight: 700;
}
.sidebar-bottom { padding: 16px 0 24px; border-top: 1px solid rgba(255,255,255,.08); }

.admin-main { margin-left: 250px; min-width: 0; flex: 1; }
.admin-topbar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar h1 { font-size: 20px; font-weight: 800; }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-2); }
.admin-content { padding: 28px 32px; }

/* Admin stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
}
.stat-card .stat-icon { font-size: 26px; margin-bottom: 12px; }
.stat-card .stat-num { font-size: 32px; font-weight: 800; line-height: 1; color: var(--text); }
.stat-card .stat-lbl { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.stat-card .stat-change { font-size: 12px; margin-top: 8px; }
.stat-card.stat-amber .stat-num { color: var(--accent); }
.stat-card.stat-green .stat-num { color: var(--green); }
.stat-card.stat-blue .stat-num  { color: var(--blue); }
.stat-card.stat-red .stat-num   { color: var(--red); }

/* Admin section card */
.section-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px;
}
.section-card-header {
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.section-card-header h2 { font-size: 16px; font-weight: 700; }
.section-card-body { padding: 24px; }

/* Mini bar chart */
.mini-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.mini-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(var(--accent-rgb),.3); transition: height .5s ease;
  position: relative; cursor: pointer;
}
.mini-bar.active { background: var(--accent); }
.mini-bar:hover { background: var(--accent); }
.mini-bar-tooltip {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--navy); color: white; padding: 3px 8px;
  border-radius: 4px; font-size: 11px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s;
}
.mini-bar:hover .mini-bar-tooltip { opacity: 1; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--navy); color: white; padding: 64px 0 0; }
[data-theme="dark"] .footer { background: #060610; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand-logo { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.footer-brand-logo span { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-col p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 13px; }

/* ── WA Float ─────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45); transition: all .3s;
  animation: fabPulse 2.5s infinite;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.6); animation: none; }
@keyframes fabPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,.7); }
}

/* ── Animations ───────────────────────────────────── */
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes scaleIn   { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

.animate-in  { opacity:0; transform:translateY(24px); transition:opacity .5s ease,transform .5s ease; }
.animate-in.visible { opacity:1; transform:translateY(0); }

/* ── Utilities ────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-3); }
.text-center  { text-align: center; }
.fw-800       { font-weight: 800; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-grid { display: grid; gap: 24px; }
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: repeat(3,1fr); }
.four-col { grid-template-columns: repeat(4,1fr); }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg,#f59e0b 0%,#f97316 100%); padding: 72px 0;
}
.cta-section h2 { color: var(--navy); font-size: clamp(24px,4vw,38px); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: rgba(15,23,42,.65); font-size: 16px; max-width: 500px; margin: 0 auto 32px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; margin: 0 auto 18px;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-2); }

/* Modal comparison */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface); border-radius: var(--radius-xl);
  max-width: 860px; width: 95%; max-height: 90vh; overflow-y: auto;
  padding: 32px; box-shadow: var(--shadow-xl);
  transform: scale(.95); transition: transform .25s;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-close { background: none; border: none; font-size: 24px; color: var(--text-2); cursor: pointer; padding: 4px; }

/* Print */
@media print {
  .navbar, .wa-fab, .footer, .btn-wa, .admin-sidebar { display: none !important; }
  body { background: white; }
  .booking-grid { grid-template-columns: 1fr; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-topbar { padding: 0 20px; }
  .admin-content { padding: 20px; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; }
  .tracking-info-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}

/* Dark mode glass cards (special treatment) */
[data-theme="dark"] .service-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .package-card,
[data-theme="dark"] .sidebar-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .testimonial-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .service-card:hover { border-color: rgba(245,158,11,.3); background: rgba(245,158,11,.04); }
[data-theme="dark"] .product-card:hover { border-color: rgba(245,158,11,.3); }

/* Install page */
.install-box { max-width: 620px; margin: 60px auto; padding: 40px; background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }

/* ── Admin v2 Layout ──────────────────────────────── */
/* Outer wrapper: sidebar + body */
.admin-wrap { display:flex; min-height:100vh; background:var(--bg-2); }

/* Sidebar */
.admin-sidebar {
  width:240px; flex-shrink:0; position:fixed; top:0; left:0; bottom:0;
  background:#0d0d1a; border-right:1px solid rgba(255,255,255,.06);
  display:flex; flex-direction:column; z-index:200; overflow-y:auto;
  transition:transform .25s;
}
[data-theme="light"] .admin-sidebar { background:#1e2235; }

.admin-sidebar-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 20px; border-bottom:1px solid rgba(255,255,255,.06);
}
.admin-logo {
  font-size:15px; font-weight:800; color:white; text-decoration:none; letter-spacing:.5px;
}
.admin-logo span { color:var(--accent); }
.admin-sidebar-close {
  background:none; border:none; color:rgba(255,255,255,.4); font-size:22px;
  cursor:pointer; line-height:1; padding:2px 6px; border-radius:4px;
  display:none;
}
.admin-sidebar-footer { padding:16px 20px 24px; margin-top:auto; border-top:1px solid rgba(255,255,255,.06); }

.admin-nav { flex:1; padding:12px 0; }
.admin-nav-section {
  padding:16px 20px 5px; font-size:10px; text-transform:uppercase;
  letter-spacing:2px; color:rgba(255,255,255,.2); font-weight:700;
}
.admin-nav a {
  display:flex; align-items:center; gap:10px; padding:10px 20px;
  color:rgba(255,255,255,.5); font-size:13.5px; font-weight:500;
  text-decoration:none; transition:all .15s; border-left:3px solid transparent;
}
.admin-nav a:hover { color:rgba(255,255,255,.85); background:rgba(255,255,255,.05); }
.admin-nav a.active { color:white; background:rgba(245,158,11,.12); border-left-color:var(--accent); }
.admin-nav a svg { flex-shrink:0; opacity:.6; }
.admin-nav a.active svg { opacity:1; }

/* Body = topbar + main */
.admin-body { margin-left:240px; flex:1; min-width:0; display:flex; flex-direction:column; }

.admin-topbar {
  background:var(--surface); border-bottom:1px solid var(--border);
  height:60px; padding:0 28px; position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:16px;
}
.admin-menu-toggle {
  background:none; border:none; cursor:pointer; color:var(--text-2);
  padding:6px; border-radius:6px; display:none;
}
.admin-menu-toggle:hover { background:var(--bg-2); }
.admin-topbar-title { font-size:16px; font-weight:700; flex:1; }
.admin-topbar-right { display:flex; align-items:center; gap:12px; }

.admin-main { flex:1; padding:24px 28px; }

/* Page header */
.admin-page-header {
  display:flex; align-items:start; justify-content:space-between;
  margin-bottom:24px; flex-wrap:wrap; gap:12px;
}
.admin-page-title { font-size:22px; font-weight:800; line-height:1.2; margin-bottom:4px; }
.admin-page-sub { font-size:13px; color:var(--text-3); }

/* Stat cards v2 */
.stat-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:20px;
  display:flex; align-items:center; gap:16px;
}
.stat-icon {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.stat-body { min-width:0; }
.stat-label { font-size:12px; color:var(--text-3); font-weight:600; text-transform:uppercase; letter-spacing:.5px; margin-bottom:4px; }
.stat-value { font-size:28px; font-weight:800; line-height:1; }

/* Section card override (no overflow hidden by default) */
.section-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:24px;
}

/* Alert warning */
.alert-warning {
  background:rgba(245,158,11,.1); border:1px solid rgba(245,158,11,.3);
  color:#92400e; border-radius:var(--radius); padding:14px 18px; font-size:14px;
}
[data-theme="dark"] .alert-warning { color:#fbbf24; }

/* Responsive form grid */
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:640px) { .form-grid-2 { grid-template-columns:1fr; } }

/* About page responsive */
@media(max-width:768px) {
  .about-story-grid { grid-template-columns:1fr!important; }
  .vm-grid { grid-template-columns:1fr!important; }
}

/* Admin responsive */
@media(max-width:900px) {
  .admin-sidebar { transform:translateX(-100%); }
  .admin-sidebar.open { transform:translateX(0); box-shadow:8px 0 32px rgba(0,0,0,.4); }
  .admin-sidebar-close { display:flex; }
  .admin-menu-toggle { display:flex; }
  .admin-body { margin-left:0; }
}

