/* CSS Custom Properties */
:root {
  --primary-color: #3C2415;
  --secondary-color: #6F4E37;
  --accent-color: #A67B5B;
  --light-accent: #C4915C;
  --background-color: #F5F0E8;
  --text-color: #3C2415;
  --text-light: #6F4E37;
  --white: #FFFFFF;
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(60, 36, 21, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --header-height: 64px;
  --bottom-nav-height: 64px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-height);
  padding-bottom: var(--bottom-nav-height);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* SVG Icon Styles */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.black-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 30px;
background-color: #000000;
z-index: 1001;

}


.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

/* Header - Fixed */
.header {
  background: var(--gradient);
  color: var(--white);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  height: var(--header-height);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo .icon {
  stroke: var(--white);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Bottom Navigation - Mobile Only */
.bottom-nav {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  height: var(--bottom-nav-height);
  box-shadow: 0 -4px 20px rgba(60, 36, 21, 0.1);
  z-index: 1000;
  margin-bottom: 80px;
}

.bottom-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav-item {
  flex: 1;
  height: 100%;
}

.bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.65rem;
  font-weight: 500;
  gap: 4px;
  transition: var(--transition);
  padding: 8px 4px;
}

.bottom-nav-link .icon {
  stroke: var(--text-light);
  transition: var(--transition);
}

.bottom-nav-link.active,
.bottom-nav-link:hover {
  color: var(--primary-color);
}

.bottom-nav-link.active .icon,
.bottom-nav-link:hover .icon {
  stroke: var(--primary-color);
}

/* Main Content */
.main {
  min-height: calc(100vh - var(--header-height));
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-title .icon {
  stroke: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Cleaning Section */
.cleaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.cleaning-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(60, 36, 21, 0.15);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.step-title {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.step-description {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.step-materials {
  list-style: none;
  margin-bottom: 0.75rem;
}

.step-materials li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.step-materials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
}

.step-tips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip {
  font-size: 0.85rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tip .icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-color);
}

.step-warning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(244, 67, 54, 0.1);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.step-warning .icon {
  stroke: var(--error);
  flex-shrink: 0;
}

/* Forms */
.form,
.cleaning-form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form h3,
.cleaning-form h3 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(60, 36, 21, 0.15);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(60, 36, 21, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary .icon {
  stroke: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(60, 36, 21, 0.3);
}

.btn-secondary {
  background: var(--accent-color);
  color: var(--white);
}

.btn-secondary .icon {
  stroke: var(--white);
}

.btn-secondary:hover {
  background: var(--light-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(166, 123, 91, 0.3);
}

/* Alerts Section */
.alerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.alert-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.alert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
}

.alert-card.urgent::before {
  background: var(--error);
}

.alert-card.moderate::before {
  background: var(--warning);
}

.alert-card.normal::before {
  background: var(--success);
}

.alert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(60, 36, 21, 0.15);
}

.alert-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.alert-icon .icon {
  width: 48px;
  height: 48px;
}

.alert-card.urgent .alert-icon .icon {
  stroke: var(--error);
}

.alert-card.moderate .alert-icon .icon {
  stroke: var(--warning);
}

.alert-card.normal .alert-icon .icon {
  stroke: var(--success);
}

.alert-title {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.alert-symptoms {
  list-style: none;
  margin-bottom: 1rem;
}

.alert-symptoms li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(60, 36, 21, 0.1);
  font-size: 0.9rem;
}

.alert-symptoms li:last-child {
  border-bottom: none;
}

.alert-action {
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(60, 36, 21, 0.08);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

/* Symptom Checker */
.symptom-checker {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.symptom-checker h3 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.symptom-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(60, 36, 21, 0.04);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.symptom-item:hover {
  background: rgba(60, 36, 21, 0.08);
}

.symptom-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary-color);
}

.symptom-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  display: none;
  font-size: 0.95rem;
}

.symptom-result.show {
  display: block;
}

.symptom-result.urgent {
  background: rgba(244, 67, 54, 0.1);
  border: 2px solid var(--error);
  color: var(--error);
}

.symptom-result.moderate {
  background: rgba(255, 152, 0, 0.1);
  border: 2px solid var(--warning);
  color: var(--warning);
}

.symptom-result.normal {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid var(--success);
  color: var(--success);
}

/* Monitoring Section */
.monitoring-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dashboard-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(60, 36, 21, 0.15);
}

.card-icon {
  background: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon .icon {
  stroke: var(--white);
}

.card-title {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-size: 0.85rem;
}

.card-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Monitoring Form */
.monitoring-form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.monitoring-form h3 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Observations */
.recent-observations {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.recent-observations h3 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.observations-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.observation-item {
  padding: 1rem;
  background: rgba(60, 36, 21, 0.04);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.observation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.observation-type {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.observation-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.observation-notes {
  color: var(--text-color);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Prevention Section */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.prevention-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.prevention-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(60, 36, 21, 0.15);
}

.prevention-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.prevention-icon .icon {
  width: 48px;
  height: 48px;
  stroke: var(--primary-color);
}

.prevention-title {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.prevention-list {
  list-style: none;
  text-align: left;
}

.prevention-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.prevention-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* Schedule */
.prevention-schedule {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.prevention-schedule h3 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  text-align: center;
  font-size: 1.1rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.schedule-item {
  background: rgba(60, 36, 21, 0.04);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.schedule-item:hover {
  background: rgba(60, 36, 21, 0.08);
  transform: translateY(-2px);
}

.schedule-frequency {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.schedule-task {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  margin-bottom: 60px;
}

.footer-text {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ====================== */
/* RESPONSIVE DESIGN */
/* ====================== */

/* Tablet */
@media (max-width: 992px) {
  .cleaning-grid,
  .monitoring-dashboard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.35rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
    --bottom-nav-height: 60px;
  }

  /* Header Mobile */
  .header .container {
    padding: 0 0.75rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  /* Bottom Nav - Show on Mobile */
  .bottom-nav {
    display: block;
  }

  /* Hero Mobile */
  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Sections Mobile */
  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.25rem;
    flex-wrap: wrap;
  }

  .section-subtitle {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Grids Mobile */
  .alerts-grid,
  .prevention-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .symptom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* Cards Mobile */
  .step,
  .alert-card,
  .prevention-card,
  .dashboard-card {
    padding: 1.25rem;
  }

  .form,
  .cleaning-form,
  .monitoring-form,
  .symptom-checker,
  .recent-observations,
  .prevention-schedule {
    padding: 1.25rem;
  }

  /* Footer Mobile */
  .footer {
    margin-bottom: 0;
    padding-bottom: calc(1.5rem + var(--bottom-nav-height));
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .dashboard-card {
    flex-direction: column;
    text-align: center;
  }

  .bottom-nav-link {
    font-size: 0.6rem;
  }

  .bottom-nav-link .icon {
    width: 22px;
    height: 22px;
  }
}

/* ====================== */
/* ANIMATIONS */
/* ====================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out forwards;
}

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

.slide-in {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s ease-out forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .bottom-nav,
  .nav-toggle {
    display: none !important;
  }

  body {
    padding: 0;
  }

  .section {
    page-break-inside: avoid;
  }
}
