/* Cleanup Commandos - Brand Design System & Core Stylesheet */

/* ==========================================================================
   1. DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --color-bg-dark: #0B0F19;         /* Premium midnight slate */
  --color-bg-card: #131A2B;         /* Tactical slate gray */
  --color-bg-card-light: #1E293B;   /* Active/hover slate card */
  --color-text-white: #FFFFFF;
  --color-text-primary: #F1F5F9;    /* Clean off-white */
  --color-text-muted: #94A3B8;      /* Cool slate gray */
  --color-text-dark: #0F172A;       /* High-contrast dark slate */

  /* Theme Accents (Eco-Tactical Action Palette) */
  --color-primary-green: #1E3F20;   /* Deep ecology green */
  --color-primary-green-light: #2A582C;
  --color-accent-lime: #D1FD0A;     /* High-vis tactical lime-yellow */
  --color-accent-lime-rgb: 209, 253, 10;
  --color-accent-cyan: #06B6D4;     /* Eco hydration cyan */
  --color-accent-cyan-rgb: 6, 182, 212;
  --color-alert-gold: #EAB308;      /* Glowing star gold */

  /* Borders & Shadows */
  --border-light: 1px solid rgba(255, 255, 255, 0.08);
  --border-active: 1px solid rgba(209, 253, 10, 0.4);
  --shadow-glow-lime: 0 0 20px rgba(209, 253, 10, 0.3);
  --shadow-glow-cyan: 0 0 20px rgba(6, 182, 212, 0.25);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. SYSTEM RESET & BASE STYLING
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Premium Dark Mode Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 5px;
  border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-lime);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 760px;
}

section {
  padding: 96px 0;
  position: relative;
}

/* ==========================================================================
   3. TYPOGRAPHY & GRADIENTS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--color-accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   4. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-lime) 0%, #AEE004 100%);
  color: var(--color-text-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lime);
  filter: brightness(1.05);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.7);
  color: var(--color-text-primary);
  border: var(--border-light);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: var(--color-bg-card-light);
  border-color: var(--color-accent-lime);
  color: var(--color-text-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}
.btn-block {
  display: flex;
  width: 100%;
}

.btn-glow {
  box-shadow: 0 0 15px rgba(209, 253, 10, 0.2);
}

/* ==========================================================================
   5. TOP ALERT BANNER & STICKY HEADER
   ========================================================================== */
.top-banner {
  background-color: var(--color-primary-green);
  border-bottom: 2px solid var(--color-accent-lime);
  font-size: 0.85rem;
  padding: 8px 0;
  z-index: 100;
  position: relative;
}
.banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.banner-badge {
  background-color: var(--color-accent-lime);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.banner-text {
  color: var(--color-text-primary);
  font-weight: 500;
  text-align: center;
}
.banner-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-lime);
  font-weight: 600;
}
.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-lime);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: var(--border-light);
  padding: 10px 0;
  z-index: 99;
  transition: all var(--transition-normal);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-item {
  color: var(--color-text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}
.nav-item:hover {
  color: var(--color-accent-lime);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  background: var(--color-bg-dark);
  border-bottom: var(--border-light);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-item {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================================
   6. HERO SECTION & CSS RADAR TERMINAL
   ========================================================================== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 120px;
  background: radial-gradient(circle at 10% 20%, rgba(30, 63, 32, 0.15) 0%, rgba(11, 15, 25, 0) 50%);
  overflow: hidden;
}
.hero-bg-accent {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(209, 253, 10, 0.05) 0%, rgba(11, 15, 25, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(30, 41, 59, 0.5);
  border: var(--border-light);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}
.hero-badge i {
  width: 14px;
  height: 14px;
  color: var(--color-accent-lime);
}
.hero-badge.accent-badge {
  border-color: rgba(6, 182, 212, 0.3);
}
.hero-badge.accent-badge i {
  color: var(--color-accent-cyan);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Stats Row */
.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-white);
  font-family: var(--font-heading);
}
.stat-lbl {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.stat-stars {
  display: flex;
  gap: 2px;
}
.stat-stars i {
  width: 14px;
  height: 14px;
  color: var(--color-alert-gold);
}
.fill-gold {
  fill: var(--color-alert-gold);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Tactical Terminal Container */
.hero-visual {
  position: relative;
}
.tactical-terminal {
  background: rgba(15, 23, 42, 0.6);
  border: var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(12px);
  position: relative;
}
.tactical-terminal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(209, 253, 10, 0.25), rgba(6, 182, 212, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.terminal-header {
  background: rgba(15, 23, 42, 0.9);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border-light);
}
.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }
.terminal-title {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.terminal-body {
  padding: 24px;
}

/* Real Animated CSS Radar */
.radar-ping-container {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(30, 63, 32, 0.5);
  background-color: rgba(15, 23, 42, 0.8);
  margin: 0 auto 24px auto;
  position: relative;
  overflow: hidden;
}
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(209, 253, 10, 0.15);
  border-radius: 50%;
}
.ring-1 { width: 80px; height: 80px; }
.ring-2 { width: 160px; height: 160px; }
.ring-3 { width: 240px; height: 240px; }

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  background: linear-gradient(45deg, rgba(209, 253, 10, 0.15) 0%, rgba(209, 253, 10, 0) 60%);
  transform-origin: top left;
  border-radius: 0 100% 0 0;
  animation: rotateSweep 4s linear infinite;
}

.radar-target {
  position: absolute;
  color: var(--color-accent-lime);
  filter: drop-shadow(0 0 4px var(--color-accent-lime));
  opacity: 0.2;
  animation: fadePing 4s ease-in-out infinite;
}
.radar-target i {
  width: 18px;
  height: 18px;
}
.target-1 { top: 25%; left: 30%; animation-delay: 0.5s; }
.target-2 { top: 60%; left: 70%; animation-delay: 2.1s; color: var(--color-accent-cyan); filter: drop-shadow(0 0 4px var(--color-accent-cyan)); }
.target-3 { top: 40%; left: 55%; animation-delay: 1.3s; }

.terminal-logs {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.log-line {
  margin-bottom: 6px;
  line-height: 1.4;
}
.log-time {
  color: rgba(6, 182, 212, 0.7);
}
.text-lime {
  color: var(--color-accent-lime);
}

/* Animations */
@keyframes rotateSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fadePing {
  0% { opacity: 0.1; transform: scale(0.9); }
  25% { opacity: 1; transform: scale(1.1); }
  50% { opacity: 0.1; transform: scale(0.9); }
  100% { opacity: 0.1; }
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.section-services {
  background-color: #0F1626; /* Darker card support background */
}
.section-header {
  margin-bottom: 60px;
}
.section-header.text-center {
  text-align: center;
}
.section-subtitle {
  color: var(--color-accent-lime);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-title.text-white {
  color: var(--color-text-white);
}
.section-desc {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Service Card Design */
.service-card {
  background: var(--color-bg-card);
  border: var(--border-light);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(209, 253, 10, 0.3);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
}
.card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(209, 253, 10, 0.04) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.service-card.featured {
  border-color: rgba(209, 253, 10, 0.35);
  background: linear-gradient(180deg, var(--color-bg-card) 0%, rgba(30, 63, 32, 0.25) 100%);
  box-shadow: var(--shadow-glow-lime);
}
.featured-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-accent-lime);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: var(--border-light);
  transition: all var(--transition-normal);
}
.service-icon {
  width: 26px;
  height: 26px;
  color: var(--color-accent-lime);
}
.service-card:hover .service-icon-wrap {
  border-color: var(--color-accent-lime);
  background: var(--color-primary-green);
  box-shadow: var(--shadow-glow-lime);
}

.service-name {
  font-size: 1.35rem;
  color: var(--color-text-white);
  margin-bottom: 12px;
  font-weight: 800;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.service-checklist {
  list-style: none;
  margin-bottom: 32px;
  margin-top: auto;
}
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.check-icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent-lime);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-card.featured .check-icon {
  color: var(--color-accent-lime);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--border-light);
  padding-top: 20px;
}
.price-info {
  display: flex;
  flex-direction: column;
}
.price-lbl {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.price-amt {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-white);
  font-family: var(--font-heading);
}

/* ==========================================================================
   8. WHO WE ARE SECTION
   ========================================================================== */
.section-who {
  background-color: var(--color-bg-dark);
}
.who-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.who-graphics {
  position: relative;
}
.hq-card-outer {
  background: var(--color-bg-card);
  border: var(--border-light);
  border-radius: 20px;
  padding: 16px;
  position: relative;
  box-shadow: var(--shadow-premium);
}
.hq-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}
.map-vector {
  width: 100%;
  height: 100%;
  display: block;
}

/* Radar Location Pin */
.hq-radar-marker {
  position: absolute;
  top: 52%; /* Minnesota Metro target approximate center */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.hq-marker-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent-lime);
  filter: drop-shadow(0 0 8px var(--color-accent-lime));
}
.radar-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px solid var(--color-accent-lime);
  border-radius: 50%;
  animation: radarPingAnim 2s infinite linear;
}
@keyframes radarPingAnim {
  0% { width: 10px; height: 10px; opacity: 1; }
  100% { width: 80px; height: 80px; opacity: 0; }
}

.hq-stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.hq-stat {
  background: rgba(30, 41, 59, 0.4);
  border: var(--border-light);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.hq-stat-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent-lime);
  font-family: var(--font-heading);
}
.hq-stat-lbl {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.who-content h2 {
  margin-bottom: 24px;
}
.who-p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.code-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.code-card {
  display: flex;
  gap: 16px;
  background: var(--color-bg-card);
  padding: 20px;
  border-radius: 12px;
  border: var(--border-light);
  transition: all var(--transition-normal);
}
.code-card:hover {
  border-color: rgba(209, 253, 10, 0.25);
  transform: translateX(4px);
}
.code-icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent-lime);
  flex-shrink: 0;
}
.code-card h4 {
  color: var(--color-text-white);
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.code-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================================================
   9. INTERACTIVE CALENDAR & SCHEDULER SECTION
   ========================================================================== */
.section-scheduler {
  background: radial-gradient(circle at 90% 80%, rgba(30, 63, 32, 0.15) 0%, rgba(11, 15, 25, 0) 50%), #0F1626;
  border-top: var(--border-light);
}

.scheduler-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.scheduler-config-card, .scheduler-calendar-card {
  background: var(--color-bg-card);
  border: var(--border-light);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-premium);
}

.config-card-title {
  font-size: 1.35rem;
  color: var(--color-text-white);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num {
  width: 28px;
  height: 28px;
  background-color: var(--color-accent-lime);
  color: var(--color-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

/* Option selector buttons */
.service-selector-buttons, .frequency-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}
.svc-select-btn, .freq-btn {
  background: rgba(30, 41, 59, 0.5);
  border: var(--border-light);
  border-radius: 8px;
  padding: 12px;
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}
.svc-select-btn i {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
}
.svc-select-btn.active, .freq-btn.active {
  background: var(--color-primary-green);
  border-color: var(--color-accent-lime);
  color: var(--color-text-white);
  box-shadow: 0 0 10px rgba(209, 253, 10, 0.15);
}
.svc-select-btn.active i {
  color: var(--color-accent-lime);
}
.discount {
  background-color: var(--color-accent-lime);
  color: var(--color-text-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Slider Controls */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.slider-val {
  color: var(--color-accent-lime);
  font-weight: 800;
  font-size: 1.1rem;
}
.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  outline: none;
  background: #1e293b;
  -webkit-appearance: none;
  appearance: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent-lime);
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-accent-lime);
  transition: transform 0.1s;
}
.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--color-accent-lime);
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-accent-lime);
  transition: transform 0.1s;
}
.range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}
.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* Room selectors counters */
.rooms-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.room-selector-item {
  background: rgba(30, 41, 59, 0.3);
  border: var(--border-light);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.room-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cnt-btn {
  background: #1e293b;
  border: none;
  width: 24px;
  height: 24px;
  color: var(--color-text-white);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
}
.cnt-btn:hover {
  background: var(--color-accent-lime);
  color: var(--color-text-dark);
}
.cnt-val {
  font-weight: 700;
  font-family: monospace;
}

/* Estimator Result Output */
.estimator-result-panel {
  background: linear-gradient(135deg, #152A18 0%, #1E3F20 100%);
  border: var(--border-active);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.est-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 767px) {
  .est-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
}
.est-lbl {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
}
.est-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent-lime);
  font-family: var(--font-heading);
  line-height: 1;
}
.est-per {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.estimator-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Custom Calendar Styling */
.calendar-wrapper {
  background: rgba(30, 41, 59, 0.3);
  border: var(--border-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cal-nav-btn {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
}
.cal-nav-btn:hover {
  color: var(--color-accent-lime);
}
.cal-month-title {
  color: var(--color-text-white);
  font-weight: 700;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  font-weight: bold;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-cell {
  aspect-ratio: 1.1;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--color-text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.cal-day-cell:hover:not(.disabled) {
  background-color: var(--color-bg-card-light);
  color: var(--color-accent-lime);
}
.cal-day-cell.disabled {
  color: rgba(255,255,255,0.1);
  cursor: not-allowed;
}
.cal-day-cell.selected {
  background-color: var(--color-accent-lime);
  color: var(--color-text-dark);
  font-weight: 800;
  box-shadow: 0 0 10px rgba(209, 253, 10, 0.3);
}

/* Time slots selection */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.time-slot-btn {
  background: rgba(30, 41, 59, 0.4);
  border: var(--border-light);
  border-radius: 8px;
  padding: 12px;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
  text-align: center;
}
.time-slot-btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.time-slot-btn.active {
  background-color: var(--color-primary-green);
  border-color: var(--color-accent-lime);
  color: var(--color-text-white);
  box-shadow: 0 0 10px rgba(209, 253, 10, 0.15);
}
.time-slot-btn.active i {
  color: var(--color-accent-lime);
}
.time-slot-btn strong {
  display: block;
  font-size: 0.85rem;
}
.time-slot-btn span {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}
.time-slot-btn.active span {
  color: rgba(255,255,255,0.6);
}

/* Premium Floating Label Inputs */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group-float {
  position: relative;
  margin-bottom: 20px;
}
.form-group-float input, .form-group-float textarea {
  width: 100%;
  background: rgba(30, 41, 59, 0.4);
  border: var(--border-light);
  border-radius: 8px;
  padding: 16px 12px 6px 12px;
  color: var(--color-text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}
.form-group-float textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group-float label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 24px);
}
.form-group-float textarea ~ label {
  top: 24px;
}

/* Active Floating Focus styles */
.form-group-float input:focus, .form-group-float textarea:focus {
  border-color: var(--color-accent-lime);
  background-color: var(--color-bg-card-light);
}
.form-group-float input:focus ~ label,
.form-group-float input:not(:placeholder-shown) ~ label,
.form-group-float input.has-value ~ label,
.form-group-float textarea:focus ~ label,
.form-group-float textarea:not(:placeholder-shown) ~ label,
.form-group-float textarea.has-value ~ label {
  top: 10px !important;
  font-size: 0.75rem !important;
  transform: translateY(0) !important;
  color: var(--color-accent-lime) !important;
  font-weight: bold !important;
}

/* Specific active styling for centered passcode label */
#admin-passcode:focus ~ label,
#admin-passcode:not(:placeholder-shown) ~ label,
#admin-passcode.has-value ~ label {
  left: 50% !important;
  transform: translate(-50%, 0) !important;
}

@media (max-width: 1199px) {
  .admin-content .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Light styling for the Quote Form (Glassmorphism highlight) */
.form-group-float.light input, .form-group-float.light textarea {
  background: rgba(255,255,255,0.04);
}
.form-group-float.light input:focus, .form-group-float.light textarea:focus {
  background: rgba(255,255,255,0.08);
}

.scheduler-summary-ribbon {
  background: rgba(209, 253, 10, 0.05);
  border-left: 3px solid var(--color-accent-lime);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.summary-details {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}
.sum-lbl {
  color: var(--color-text-muted);
}
.sum-val {
  color: var(--color-text-white);
  font-weight: 700;
}
.mt-4 { margin-top: 24px; }

/* ==========================================================================
   10. SPECIAL QUOTE SECTION
   ========================================================================== */
.section-quote {
  background-color: var(--color-bg-dark);
}
.glass-form-card {
  background: rgba(30, 41, 59, 0.35);
  border: var(--border-light);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(16px);
  position: relative;
  box-shadow: var(--shadow-premium);
}
.glass-form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.quote-header-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent-lime);
  filter: drop-shadow(0 0 10px var(--color-accent-lime));
  margin-bottom: 16px;
}

.custom-op-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 24px;
}
.chk-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-light);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.chk-label:hover {
  background: rgba(255, 255, 255, 0.06);
}
.chk-label input {
  accent-color: var(--color-accent-lime);
  width: 18px;
  height: 18px;
}
.chk-label span {
  font-size: 0.85rem;
  color: var(--color-text-primary);
  font-weight: 500;
}
.chk-label input:checked ~ span {
  color: var(--color-accent-lime);
}
.text-slate-300 { color: var(--color-text-primary); }

/* ==========================================================================
   11. FAQ ACCORDION SECTION
   ========================================================================== */
.section-faq {
  background-color: #0F1626;
  border-top: var(--border-light);
}
.faq-accordion-group {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--color-bg-card);
  border: var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-normal);
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.faq-item.active {
  border-color: rgba(209, 253, 10, 0.25);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.3);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-accent-lime);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 24px;
}
.faq-panel p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding-bottom: 24px;
  line-height: 1.6;
}

/* ==========================================================================
   12. REVIEWS SECTION
   ========================================================================== */
.section-reviews {
  background-color: var(--color-bg-dark);
}
.reviews-slider-container {
  margin-top: 48px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.review-card {
  background: var(--color-bg-card);
  border: var(--border-light);
  border-radius: 16px;
  padding: 30px;
  transition: transform var(--transition-normal);
}
.review-card:hover {
  transform: translateY(-4px);
}
.stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars-row i {
  width: 16px;
  height: 16px;
  color: var(--color-alert-gold);
}
.review-text {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-light);
  color: var(--color-accent-lime);
}
.author-avatar i {
  width: 16px;
  height: 16px;
}
.review-author h4 {
  color: var(--color-text-white);
  font-size: 0.95rem;
  font-weight: 700;
}
.review-author span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.main-footer {
  background-color: #080C14;
  border-top: 2px solid var(--color-accent-lime);
  padding: 80px 0 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-p {
  color: var(--color-text-muted);
  max-width: 320px;
  font-size: 0.9rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}
.footer-contact i {
  width: 16px;
  height: 16px;
  color: var(--color-accent-lime);
}

.footer-links-col h3 {
  color: var(--color-text-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--color-accent-lime);
}

.footer-sectors-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-sectors-list li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: var(--border-light);
  padding: 24px 0;
  background-color: #06090F;
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.bottom-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bottom-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
}
.bottom-links a:hover {
  color: var(--color-accent-lime);
}
.bottom-links span {
  color: rgba(255,255,255,0.1);
}

/* ==========================================================================
   14. SUCCESS NOTIFICATION POPUP MODAL
   ========================================================================== */
.notification-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.notification-modal.active {
  opacity: 1;
  pointer-events: all;
}
.notif-content {
  background: var(--color-bg-card);
  border: var(--border-active);
  box-shadow: var(--shadow-glow-lime);
  border-radius: 16px;
  padding: 40px;
  max-width: 440px;
  text-align: center;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}
.notification-modal.active .notif-content {
  transform: scale(1);
}
.notif-icon {
  width: 56px;
  height: 56px;
  color: var(--color-accent-lime);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--color-accent-lime));
}
.notif-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-text-white);
  letter-spacing: 1px;
}
.notif-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================================
   15. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
  section {
    padding: 72px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    text-align: center;
  }
  .badge-row {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .scheduler-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .nav-menu, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .main-header.menu-open + .mobile-nav {
    display: flex;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rooms-selectors {
    grid-template-columns: 1fr;
  }
  .time-slots-grid {
    grid-template-columns: 1fr;
  }
  .bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   16. COMMANDER HQ ADMIN PORTAL SPECIFIC STYLING
   ========================================================================== */
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 991px) {
  .admin-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .scheduler-missions-col,
  .admin-grid .admin-col {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
  }
}

.admin-bookings-list::-webkit-scrollbar {
  width: 6px;
}
.admin-bookings-list::-webkit-scrollbar-thumb {
  background: var(--color-bg-card-light);
  border-radius: 4px;
}
.admin-bookings-list::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-lime);
}

.chk-label input:checked ~ span {
  color: var(--color-accent-lime) !important;
}

/* Expanded Admin Tab Styles */
.admin-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.admin-tab-btn.active {
  background: var(--color-accent-lime);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-glow-lime);
}

/* Status Badges */
.status-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}
.status-dispatched {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
}
.status-in-progress {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.status-completed {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.status-cancelled {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.squad-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
.squad-assigned {
  background: rgba(209, 253, 10, 0.05);
  color: var(--color-accent-lime);
  border: 1px solid rgba(209, 253, 10, 0.15);
}

/* Timeline Feed */
.timeline-item {
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  padding-bottom: 6px;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
}
.timeline-item.timeline-accent::after {
  background: var(--color-accent-lime);
  box-shadow: 0 0 4px var(--color-accent-lime);
}
.timeline-item.timeline-cyan::after {
  background: var(--color-accent-cyan);
  box-shadow: 0 0 4px var(--color-accent-cyan);
}
.timeline-time {
  color: var(--color-text-muted);
  font-family: monospace;
  font-size: 0.65rem;
  display: block;
}

/* Service Distribution Progress Bar */
.dist-progress-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dist-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.dist-progress-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.dist-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--color-accent-lime);
  transition: width 0.6s ease-out;
}
.dist-progress-fill.fill-res { background: var(--color-accent-lime); }
.dist-progress-fill.fill-junk { background: var(--color-accent-cyan); }
.dist-progress-fill.fill-exp { background: #f43f5e; }
.dist-progress-fill.fill-comm { background: #a855f7; }

/* Submodal overlays overlaying dashboard content */
.admin-submodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-submodal-content {
  background: var(--color-bg-card-light);
  border: var(--border-active);
  box-shadow: var(--shadow-glow-lime);
  border-radius: 16px;
  padding: 24px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

/* Quick styles to hide tabs */
.admin-tab-content {
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HQ Premium Testimonials & Invoice Print Styling
   ========================================================================== */

/* Testimonials Carousel styles */
.review-slide {
  flex-shrink: 0;
  width: 100%;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-stars {
  color: var(--color-alert-gold);
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-stars i {
  width: 16px;
  height: 16px;
  fill: var(--color-alert-gold);
}
.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.review-author {
  font-weight: 700;
  color: var(--color-accent-lime);
  font-family: var(--font-heading);
}
.review-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Star selector in form */
.star-select-btn {
  color: #475569;
  transition: transform 0.1s ease, color 0.1s ease;
}
.star-select-btn:hover {
  transform: scale(1.2);
}
.star-select-btn.active {
  color: var(--color-alert-gold);
}

/* Squad Utilization Progress Bars */
.dist-progress-fill.fill-squad-alpha { background: #10B981; } /* Green */
.dist-progress-fill.fill-squad-bravo { background: #3B82F6; } /* Blue */
.dist-progress-fill.fill-squad-charlie { background: #EC4899; } /* Pink */

/* PRINT SYSTEM OVERRIDES */
@media print {
  body * {
    visibility: hidden;
  }
  body.print-receipt-mode #admin-receipt-modal,
  body.print-receipt-mode #admin-receipt-modal * {
    visibility: visible;
  }
  body.print-receipt-mode #admin-receipt-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    backdrop-filter: none !important;
    display: block !important;
    padding: 0 !important;
  }
  body.print-receipt-mode .receipt-printable-content {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body.print-receipt-mode .receipt-no-print {
    display: none !important;
  }
}

/* Responsive Scrollable Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

/* Database Connection Status Badges */
.db-status-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.db-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}
.db-status-online {
  color: var(--color-accent-lime);
  background-color: var(--color-accent-lime);
}
.db-status-offline {
  color: var(--color-accent-cyan);
  background-color: var(--color-accent-cyan);
}

/* Tactical Toast Notifications System */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.tactical-toast {
  pointer-events: auto;
  min-width: 300px;
  max-width: 420px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.tactical-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.toast-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.toast-body {
  flex-grow: 1;
}
.toast-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.toast-message {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
/* Toast color schemes */
.tactical-toast.toast-success {
  border-color: rgba(209, 253, 10, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 15px rgba(209, 253, 10, 0.15);
}
.tactical-toast.toast-success .toast-title {
  color: var(--color-accent-lime);
}
.tactical-toast.toast-error {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 15px rgba(239, 68, 68, 0.15);
}
.tactical-toast.toast-error .toast-title {
  color: #EF4444;
}
.tactical-toast.toast-info {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 15px rgba(6, 182, 212, 0.15);
}
.tactical-toast.toast-info .toast-title {
  color: var(--color-accent-cyan);
}

/* Admin Proposal Generator Modal & Print sheets */
.proposal-paper-content {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 40px !important;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}
.proposal-header-logo {
  border-bottom: 2px solid #0f172a;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.proposal-label {
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}
.proposal-value {
  color: #0f172a;
  font-weight: 500;
}
.proposal-items-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.8rem;
}
.proposal-items-table th {
  border-bottom: 2px solid #cbd5e1;
  padding: 8px 4px;
  text-align: left;
  font-weight: 700;
}
.proposal-items-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 4px;
}

/* Print Override for Proposal sheet */
@media print {
  body.print-proposal-mode #admin-proposal-modal,
  body.print-proposal-mode #admin-proposal-modal * {
    visibility: visible;
  }
  body.print-proposal-mode #admin-proposal-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    backdrop-filter: none !important;
    display: block !important;
    padding: 0 !important;
  }
  body.print-proposal-mode .proposal-paper-content {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body.print-proposal-mode .proposal-no-print {
    display: none !important;
  }
}

/* Hide spin buttons to prevent layout clipping and match premium aesthetic */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

#cfg-rate-res,
#cfg-rate-exp,
#cfg-fee-exp,
#cfg-rate-junk {
  width: 130px !important;
}

@media (max-width: 575px) {
  .settings-rates-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  #cfg-rate-res,
  #cfg-rate-exp,
  #cfg-fee-exp,
  #cfg-rate-junk {
    width: 100% !important;
    text-align: left !important;
  }
}

