/* ============================================
   Parlour Management – Premium Responsive CSS
   ============================================ */

:root {
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --bg-color: #0b0c10;
  --text-primary: #f5f6f8;
  --text-secondary: #a9b2c3;
  --accent-gold: #c5a059;
  --accent-gold-hover: #b48e47;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: rgba(0, 0, 0, 0.4);

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: #030406;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(197, 160, 89, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(197, 160, 89, 0.04) 0%, transparent 55%);
}

/* =============================================
   TOP APP BAR
   ============================================= */
.app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 500;
  position: sticky;
  top: 0;
}

.app-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.app-logo:hover { opacity: 0.85; }

.small-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: #0b0c10;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(197, 160, 89, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.small-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.3);
}

/* =============================================
   CONTENT AREA
   ============================================= */
.app-content-area {
  padding: 1.5rem;
  min-height: calc(100vh - 60px);
  -webkit-overflow-scrolling: touch;
}

.app-content-area::-webkit-scrollbar { display: none; }

.mobile-screen { animation: fadeIn 0.35s ease; }

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

/* =============================================
   HERO SECTION  (Landing Page)
   ============================================= */
.hero-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #d1d5db 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content > p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  perspective: 800px;
}

.decorative-card {
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 140px;
  animation: floatCard 5s ease-in-out infinite;
}
.decorative-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}
.decorative-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 2.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* =============================================
   GLASS CARD  (Shared component)
   ============================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(197, 160, 89, 0.18);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.25);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.price {
  display: inline-block;
  background: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 30px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =============================================
   BOOKING SECTION
   ============================================= */
.booking-section {
  padding: 2rem 0;
}

.booking-container h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #0b0c10;
}
.btn-primary:hover:not(:disabled) {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-secondary:disabled { opacity: 0.4; }

.btn-block { display: block; width: 100%; }
.btn-sm    { padding: 0.35rem 1rem; font-size: 0.8rem; }
.btn-lg    { padding: 0.9rem 2rem; font-size: 1rem; }
.rounded-pill { border-radius: 50px; }

/* =============================================
   CARDS (Glass)
   ============================================= */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* =============================================
   SECTION TITLE
   ============================================= */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--accent-gold);
}

/* =============================================
   CLOCK IN / OUT
   ============================================= */
.status-banner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.status-banner.success {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6b7280;
}
.status-dot.success {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.status-dot.warning {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.clock-display {
  font-family: var(--font-sans);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-align: center;
}

.clock-date {
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 2rem;
}

.clock-actions-row {
  display: flex;
  gap: 1rem;
}

.btn-clock {
  flex: 1;
  padding: 1rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-in {
  background-color: var(--accent-gold);
  color: #0b0c10;
}
.btn-in:hover:not(:disabled) {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
}
.btn-in:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-out {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-out:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}
.btn-out:disabled { opacity: 0.4; cursor: not-allowed; }

.gps-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1.25rem;
}

/* =============================================
   TIMELINE  (Check-in History)
   ============================================= */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  position: relative;
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 60px; top: 1.5rem; bottom: -1rem;
  width: 1px;
  background: var(--glass-border);
}
.timeline-item:last-child::after { display: none; }

.timeline-meta {
  width: 55px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: right;
  padding-top: 0.1rem;
}

.timeline-details {
  flex: 1;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0.8rem 1rem;
}

.timeline-empty {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 1.5rem 0;
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

input, select, textarea {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.08);
}

/* =============================================
   DIVIDER
   ============================================= */
.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-size: 0.75rem;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}
.divider span { padding: 0 0.75rem; }

/* =============================================
   BOTTOM NAVIGATION BAR
   ============================================= */
body:not(.logged-in) .bottom-nav-bar {
  display: none !important;
}

.bottom-nav-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 68px;
  background-color: rgba(11, 12, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 5px);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  flex: 1;
  padding: 0.5rem 0;
}
.nav-icon  { font-size: 1.25rem; margin-bottom: 0.15rem; }
.nav-label { font-size: 0.7rem; font-weight: 500; }
.nav-item.active { color: var(--accent-gold); }
.nav-item:hover  { color: var(--text-primary); }

/* =============================================
   PROFILE
   ============================================= */
.profile-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.big-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: #0b0c10;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.15);
}

.role-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 30px;
  padding: 0.3rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* =============================================
   BADGES
   ============================================= */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-approved {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge-pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.badge-rejected {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.badge-outline {
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* =============================================
   LIST CARDS
   ============================================= */
.list-card-item {
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 16px;
}

.list-empty {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 2.5rem 0;
  border-radius: 16px;
}

/* =============================================
   ADMIN SUBTABS
   ============================================= */
.admin-tab-selection {
  display: flex;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 1.5rem;
  padding: 0.3rem;
  gap: 0.25rem;
}

.admin-subtab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: var(--transition-smooth);
}
.admin-subtab-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.admin-subtab-btn.active {
  background: var(--accent-gold);
  color: #0b0c10;
}

/* =============================================
   GOOGLE LOGIN BUTTON
   ============================================= */
.google-login-btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.05);
  transition: var(--transition-smooth);
}
.google-login-btn-wrap:hover {
  border-color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.05);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
}

/* =============================================
   ROLE SELECTOR
   ============================================= */
.role-selector {
  background-color: #0b0c10;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 8px;
  outline: none;
}

/* =============================================
   LEGACY COMPAT  (Welcome/service bubbles)
   ============================================= */
.welcome-card {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.02) 100%);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.welcome-card h1 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.welcome-card p { color: var(--text-secondary); font-size: 0.95rem; }

.horizontal-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.horizontal-scroll::-webkit-scrollbar { display: none; }

.service-bubble {
  flex: 0 0 130px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.service-bubble:hover { border-color: var(--accent-gold); transform: translateY(-2px); }
.service-bubble .icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.service-bubble h4 { font-size: 0.9rem; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-bubble p { color: var(--accent-gold); font-size: 0.8rem; font-weight: 600; }

/* =============================================
   MOBILE  (≤ 480px) — Extra small tweaks
   ============================================= */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content > p { font-size: 0.9rem; }
  .cta-group { flex-direction: column; gap: 0.75rem; }
  .cta-group .btn { width: 100%; text-align: center; }
  .hero-image-container { flex-direction: column; align-items: center; gap: 0.75rem; }
  .decorative-card { min-width: auto; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  body.logged-in .app-content-area { padding-bottom: 80px; }
}

/* =============================================
   TABLET (481px – 767px)
   ============================================= */
@media (min-width: 481px) and (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-container { gap: 1rem; }
  body.logged-in .app-content-area { padding-bottom: 80px; }
}

/* =============================================
   DESKTOP  (≥ 768px)
   ============================================= */
@media (min-width: 768px) {
  /* --- App bar --- */
  .app-bar {
    padding: 1.25rem 5%;
  }

  /* --- Content area (Public pages) --- */
  .app-content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
    min-height: calc(100vh - 70px);
  }

  /* --- Hero split layout --- */
  .hero-section {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 3rem;
    padding: 4rem 0 3rem;
  }
  .hero-content { flex: 1.2; }
  .hero-content > p { margin: 0 0 2rem; }
  .cta-group { justify-content: flex-start; }
  .hero-image-container {
    flex: 0.8;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0;
  }
  .decorative-card { min-width: 200px; padding: 1.5rem 2rem; }

  /* --- Services 3-col --- */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .service-card { padding: 2.5rem 2rem; }

  /* --- Booking centered --- */
  .booking-section {
    display: flex;
    justify-content: center;
  }

  /* --- Wider form row --- */
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* --- Clock card centered --- */
  .clock-action-card {
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  /* --- Audit / Leave / Roles grid --- */
  .audit-list, .leave-list, .roles-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* ===== Logged-In: Left Sidebar ===== */
  body.logged-in .bottom-nav-bar {
    position: fixed;
    top: 0; left: 0;
    bottom: auto;
    width: 250px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5.5rem;
    border-right: 1px solid var(--glass-border);
    border-top: none;
    background-color: rgba(11, 12, 16, 0.96);
    gap: 0.5rem;
    padding-bottom: 2rem;
  }

  body.logged-in .bottom-nav-bar .nav-item {
    flex: none;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 0.8rem 1.25rem;
    flex-direction: row;
    gap: 0.85rem;
    justify-content: flex-start;
    border-radius: 12px;
  }
  body.logged-in .bottom-nav-bar .nav-item.active {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(197, 160, 89, 0.18);
  }
  body.logged-in .bottom-nav-bar .nav-item:hover {
    background: rgba(255, 255, 255, 0.03);
  }
  body.logged-in .bottom-nav-bar .nav-item .nav-icon {
    margin-bottom: 0;
    font-size: 1.3rem;
  }
  body.logged-in .bottom-nav-bar .nav-item .nav-label {
    font-size: 0.92rem;
    font-weight: 500;
  }

  /* --- Content shifts for sidebar --- */
  body.logged-in .app-content-area {
    margin-left: 250px;
    padding: 2.5rem 3rem;
    max-width: none;
    padding-bottom: 3rem;
  }
  body.logged-in .app-bar {
    margin-left: 250px;
    width: calc(100% - 250px);
    padding: 1.25rem 3rem;
  }
}

/* =============================================
   LARGE DESKTOP  (≥ 1200px)
   ============================================= */
@media (min-width: 1200px) {
  .app-content-area {
    max-width: 1400px;
  }
  .hero-section { padding: 5rem 0 4rem; }
  .hero-content h1 { font-size: 3.2rem; }
  .service-card { padding: 2.5rem; }
}
