/* ===== KNIPSIFY MAIN CSS ===== */
:root {
  --black: #0a0a0f;
  --dark: #111118;
  --dark2: #1a1a24;
  --card: #16161f;
  --border: #2a2a3a;
  --blue: #38bdf8;
  --blue2: #0ea5e9;
  --blue-dark: #0369a1;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-blue: 0 4px 24px rgba(56,189,248,.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--text); line-height: 1.6; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: all .3s; }
.navbar.scrolled { background: rgba(10,10,15,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 14px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; color: var(--white); }
.logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav { background: var(--blue); color: var(--black) !important; padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600; transition: background .2s !important; }
.btn-nav:hover { background: var(--blue2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56,189,248,.12) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(14,165,233,.08) 0%, transparent 60%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(56,189,248,.06) 1px, transparent 1px); background-size: 40px 40px; }
.hero-content { position: relative; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.3); color: var(--blue); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; margin-bottom: 28px; letter-spacing: 1px; }
.hero-title { font-family: var(--font-display); font-size: clamp(56px, 10vw, 100px); line-height: .95; letter-spacing: 2px; color: var(--white); margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 520px; margin-bottom: 40px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 36px; color: var(--blue); letter-spacing: 1px; }
.stat span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll { position: absolute; bottom: 40px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-lr; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--blue); color: var(--black); padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; transition: all .2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); color: var(--text); padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 500; font-size: 15px; transition: all .2s; background: transparent; cursor: pointer; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-danger { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:var(--error); color:white; padding:14px 28px; border-radius:var(--radius-sm); font-weight:700; font-size:15px; transition:all .2s; border:none; cursor:pointer; }
.btn-danger:hover { background:#dc2626; transform:translateY(-1px); }
.btn-danger.btn-sm { padding:8px 16px; font-size:13px; }
.btn-success { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:var(--success); color:var(--black); padding:14px 28px; border-radius:var(--radius-sm); font-weight:700; font-size:15px; transition:all .2s; border:none; cursor:pointer; }
.btn-success:hover { background:#16a34a; transform:translateY(-1px); }
.btn-success.btn-sm { padding:8px 16px; font-size:13px; }
.btn-warning { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:var(--warning); color:var(--black); padding:14px 28px; border-radius:var(--radius-sm); font-weight:700; font-size:15px; transition:all .2s; border:none; cursor:pointer; }
.btn-warning:hover { background:#d97706; transform:translateY(-1px); }
.btn-warning.btn-sm { padding:8px 16px; font-size:13px; }
.btn-secondary { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:var(--dark2); color:var(--text); padding:14px 28px; border-radius:var(--radius-sm); font-weight:600; font-size:15px; transition:all .2s; border:1px solid var(--border); cursor:pointer; }
.btn-secondary:hover { background:var(--border); }
.btn-secondary.btn-sm { padding:8px 16px; font-size:13px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); font-weight: 600; display: block; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); color: var(--white); letter-spacing: 1px; margin-bottom: 16px; line-height: 1; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 540px; margin: 0 auto; }
.accent { color: var(--blue); }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; }
.product-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.product-image { position: relative; height: 240px; background: var(--dark2); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--border); }
.product-placeholder svg { width: 80px; height: 80px; }
.product-badge { position: absolute; top: 16px; right: 16px; background: var(--blue); color: var(--black); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; }
.product-body { padding: 24px; }
.product-body h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.product-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.empty-state { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--text-muted); }

/* ===== EXTRAS ===== */
.extras-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.extra-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .3s; }
.extra-card:hover { border-color: rgba(56,189,248,.4); }
.extra-icon { font-size: 24px; color: var(--blue); margin-bottom: 12px; }
.extra-card h4 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.extra-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
.extra-price { font-family: var(--font-display); font-size: 26px; color: var(--blue); letter-spacing: 1px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; color: var(--white); font-size: 16px; font-weight: 500; cursor: pointer; text-align: left; gap: 16px; transition: color .2s; }
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 24px; color: var(--blue); flex-shrink: 0; transition: transform .3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== CONTACT ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; color: var(--blue); }
.contact-item strong { display: block; color: var(--white); margin-bottom: 2px; }
.contact-item span, .contact-item p { color: var(--text-muted); font-size: 14px; }

/* ===== FORMS ===== */
.contact-form, .auth-form, .booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); padding: 12px 16px; font-size: 15px; font-family: var(--font-body);
  transition: border-color .2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-check { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color .2s; }
.form-check:hover { border-color: var(--blue); }
.form-check input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--blue); flex-shrink: 0; }
.form-check-label { flex: 1; }
.form-check-label strong { display: block; font-size: 15px; color: var(--white); }
.form-check-label small { color: var(--text-muted); font-size: 13px; }
.form-check-label .price { color: var(--blue); font-weight: 600; }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; border: 1px solid; }
.alert-success { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: #86efac; }
.alert-error { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: #fca5a5; }
.alert-info { background: rgba(56,189,248,.1); border-color: rgba(56,189,248,.3); color: var(--blue); }
.alert-warning { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); color: #fcd34d; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding-bottom: 48px; }
.footer-brand .logo { font-size: 24px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h5 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; text-align: center; }

/* ===== PAGE LAYOUTS ===== */
.page-hero { padding: 140px 0 80px; text-align: center; background: var(--dark); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); color: var(--white); letter-spacing: 2px; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 17px; }
.page-content { max-width: 860px; margin: 0 auto; padding: 80px 24px; }
.page-content h2 { font-size: 26px; color: var(--white); margin: 32px 0 12px; }
.page-content h3 { font-size: 18px; color: var(--text); margin: 24px 0 8px; }
.page-content p { color: var(--text-muted); margin-bottom: 12px; line-height: 1.8; }
.page-content a { color: var(--blue); }

/* ===== AUTH ===== */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--black); }
.auth-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-logo .logo { font-size: 32px; }
.auth-card h1 { font-size: 26px; color: var(--white); margin-bottom: 8px; text-align: center; }
.auth-card p { color: var(--text-muted); text-align: center; margin-bottom: 32px; }

/* ===== CUSTOMER PORTAL ===== */
.portal-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.portal-sidebar { background: var(--dark); border-right: 1px solid var(--border); padding: 32px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar-logo { padding: 0 24px 32px; border-bottom: 1px solid var(--border); }
.sidebar-nav { padding: 24px 0; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: all .2s; }
.sidebar-link:hover { color: var(--white); background: rgba(56,189,248,.05); }
.sidebar-link.active { color: var(--blue); background: rgba(56,189,248,.08); border-right: 2px solid var(--blue); }
.sidebar-link .icon { width: 20px; text-align: center; }
.portal-main { padding: 40px; overflow-y: auto; }
.portal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.portal-header h1 { font-size: 28px; font-weight: 700; color: var(--white); }
.portal-header p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ===== CARDS / TABLES ===== */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.stat-card .s-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.stat-card .s-value { font-family: var(--font-display); font-size: 36px; color: var(--white); }
.stat-card .s-sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid rgba(42,42,58,.5); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(56,189,248,.03); }

/* ===== BADGES / STATUS ===== */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-pending { background: rgba(245,158,11,.15); color: #fcd34d; }
.badge-approved { background: rgba(34,197,94,.15); color: #86efac; }
.badge-rejected { background: rgba(239,68,68,.15); color: #fca5a5; }
.badge-cancelled { background: rgba(148,163,184,.15); color: #94a3b8; }
.badge-draft { background: rgba(148,163,184,.15); color: #94a3b8; }
.badge-sent { background: rgba(56,189,248,.15); color: var(--blue); }
.badge-paid { background: rgba(34,197,94,.15); color: #86efac; }

/* ===== BOOKING PAGE ===== */
.booking-steps { display: flex; gap: 8px; margin-bottom: 40px; }
.step { flex: 1; position: relative; }
.step-num { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--dark2); border: 1px solid var(--border); color: var(--text-muted); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.step.active .step-num { background: var(--blue); color: var(--black); border-color: var(--blue); }
.step.done .step-num { background: rgba(34,197,94,.2); border-color: var(--success); color: var(--success); }
.step-label { font-size: 12px; color: var(--text-muted); }
.step.active .step-label { color: var(--blue); }
.step-line { position: absolute; top: 18px; left: 36px; right: 0; height: 1px; background: var(--border); z-index: -1; }

/* ===== SIGNATURE ===== */
.signature-pad { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
#signatureCanvas { display: block; cursor: crosshair; }

/* ===== CALENDAR BLOCKED ===== */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day { padding: 8px 6px; border-radius: 6px; font-size: 13px; text-align: center; cursor: pointer; transition: all .2s; }
.cal-day:hover { background: rgba(56,189,248,.1); }
.cal-day.blocked { background: rgba(239,68,68,.15); color: #fca5a5; cursor: not-allowed; }
.cal-day.booked { background: rgba(245,158,11,.15); color: #fcd34d; cursor: not-allowed; }
.cal-day.today { border: 1px solid var(--blue); }
.cal-day.other-month { opacity: .3; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; }
.modal-header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 18px; color: var(--white); font-weight: 600; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; transition: color .2s; }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 28px; }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 12px; }

/* ===== ADMIN ===== */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
/* Mobile bar and overlay are always outside grid flow via position:fixed */
.admin-mobile-bar { display: none; position: sticky; top: 0; z-index: 200; background: var(--dark); border-bottom: 1px solid var(--border); padding: 14px 20px; align-items: center; justify-content: space-between; } /* hidden on desktop */
.admin-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 299; backdrop-filter: blur(3px); }
.admin-overlay.active { display: block !important; }
.admin-sidebar { background: var(--dark); border-right: 1px solid var(--border); padding: 28px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar .sidebar-logo { padding: 0 20px 24px; border-bottom: 1px solid var(--border); }
.admin-nav-group { padding: 16px 0; border-bottom: 1px solid var(--border); }
.admin-nav-group:last-child { border-bottom: none; }
.admin-nav-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); padding: 0 20px 8px; }
.admin-link { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: var(--text-muted); font-size: 14px; transition: all .2s; }
.admin-link:hover { color: var(--white); background: rgba(56,189,248,.05); }
.admin-link.active { color: var(--blue); background: rgba(56,189,248,.08); }
.admin-link .badge-count { margin-left: auto; background: var(--blue); color: var(--black); font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.admin-main { padding: 36px; overflow-y: auto; background: var(--black); }
.admin-mobile-bar { display: none; position: sticky; top: 0; z-index: 200; background: var(--dark); border-bottom: 1px solid var(--border); padding: 14px 20px; align-items: center; justify-content: space-between; }
.mobile-menu-btn { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; cursor: pointer; color: var(--text); display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.mobile-menu-btn:hover { border-color: var(--blue); color: var(--blue); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.admin-header h1 { font-size: 26px; font-weight: 700; color: var(--white); }

/* ===== INVOICE ===== */
.invoice-print { background: white; color: #111; padding: 48px; max-width: 800px; margin: 0 auto; font-family: 'Inter', sans-serif; }
.invoice-print h1 { font-size: 32px; color: #0369a1; }
.invoice-items { width: 100%; border-collapse: collapse; margin: 20px 0; }
.invoice-items th { background: #f1f5f9; padding: 10px; text-align: left; font-size: 13px; }
.invoice-items td { padding: 10px; border-bottom: 1px solid #e2e8f0; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; background: var(--dark2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; gap: 12px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { display: none; }
  .admin-main { padding: 20px 16px; }
  .admin-layout { grid-template-columns: 1fr; position: relative; }
  .admin-mobile-bar { display: flex !important; }
  .admin-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    z-index: 300 !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    transform: translateX(-100%) !important;
    transition: transform .3s cubic-bezier(.4,0,.2,1) !important;
    box-shadow: 4px 0 32px rgba(0,0,0,.7) !important;
    background: var(--dark) !important;
  }
  .admin-sidebar.mobile-open {
    transform: translateX(0) !important;
  }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .booking-steps { gap: 4px; }
  .step-label { display: none; }
}

/* ===== UTILS ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
