/* D' Oragon Movers Logistic Services - Main Stylesheet */

:root {
  --primary-color: #2c5aa0;
  --secondary-color: #f39c12;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --warning-color: #f39c12;
  --info-color: #3498db;
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --border-color: #dee2e6;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #f5f6fa;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--primary-color), #1e3d72);
  color: white;
  padding: 1rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: background-color 0.3s;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-content {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

/* Card Styles */
.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  overflow: hidden;
}

.card-header {
  background: var(--light-color);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.card-body {
  padding: 1.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-col {
  flex: 1;
  min-width: 200px;
}

.form-col-2 {
  flex: 0 0 calc(50% - 0.5rem);
  min-width: 200px;
}

.form-col-3 {
  flex: 0 0 calc(33.333% - 0.67rem);
  min-width: 150px;
}

/* Pricing Calculator Styles */
.pricing-calculator-form {
  background: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  gap: 0.5rem;
}

.input-group .form-control:first-child {
  flex: 1;
}

.calculation-results {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 2rem;
}

.results-header {
  text-align: center;
  margin-bottom: 2rem;
}

.results-header h3 {
  color: var(--primary-color);
  margin: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.result-item {
  background: var(--light-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.result-label {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-color);
}

.total-cost {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 2rem;
}

.total-label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.total-value {
  font-size: 2rem;
  font-weight: bold;
}

.results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.results-actions .btn {
  min-width: 150px;
}

.comparison-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.comparison-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.table-active {
  background-color: rgba(44, 90, 160, 0.1) !important;
}

/* Pricing Info Grid */
.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.pricing-info-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-info-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.pricing-info-item p {
  color: #666;
  line-height: 1.6;
}

.pricing-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-top: 1rem;
}

.pricing-note p {
  margin: 0;
  color: #856404;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.5;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #1e3d72;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-success {
  background-color: var(--success-color);
  color: white;
}

.btn-danger {
  background-color: var(--danger-color);
  color: white;
}

.btn-warning {
  background-color: var(--warning-color);
  color: white;
}

.btn-info {
  background-color: var(--info-color);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.table th,
.table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.table th {
  background-color: var(--light-color);
  font-weight: 600;
  color: var(--dark-color);
}

.table tbody tr:hover {
  background-color: rgba(44, 90, 160, 0.05);
}

/* Alert Styles */
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

.badge-success {
  background-color: var(--success-color);
  color: white;
}

.badge-danger {
  background-color: var(--danger-color);
  color: white;
}

.badge-warning {
  background-color: var(--warning-color);
  color: white;
}

.badge-info {
  background-color: var(--info-color);
  color: white;
}

.badge-secondary {
  background-color: #6c757d;
  color: white;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.status-confirmed {
  background-color: #d1ecf1;
  color: #0c5460;
}

.status-picked_up {
  background-color: #cce5ff;
  color: #004085;
}

.status-in_transit {
  background-color: #e2e3ff;
  color: #383d41;
}

.status-out_for_delivery {
  background-color: #fff2cc;
  color: #533f03;
}

.status-delivered {
  background-color: #d4edda;
  color: #155724;
}

.status-cancelled {
  background-color: #f8d7da;
  color: #721c24;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* Loading Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 3px var(--primary-color);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(44, 90, 160, 0.3);
  }
  100% {
    box-shadow: 0 0 0 3px var(--primary-color);
  }
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  margin: 0.5rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #495057;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .form-row {
    flex-direction: column;
  }

  .form-col,
  .form-col-2,
  .form-col-3 {
    flex: none;
    width: 100%;
  }

  .table-responsive {
    font-size: 0.875rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .btn:last-child {
    margin-bottom: 0;
  }

  .pricing-calculator-form {
    padding: 1rem;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-actions {
    flex-direction: column;
  }

  .results-actions .btn {
    width: 100%;
  }

  .pricing-info-grid {
    grid-template-columns: 1fr;
  }

  .total-value {
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .tracking-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline::before {
    left: 11px;
  }

  .timeline-marker {
    left: -19px;
  }

  .bookings-grid {
    grid-template-columns: 1fr;
  }

  .booking-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .route-item,
  .info-row,
  .meta-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .booking-actions {
    justify-content: center;
  }

  .login-card {
    margin: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .card-body {
    padding: 1rem;
  }

  .main-content {
    padding: 1rem 0;
  }

  .logo {
    font-size: 1.25rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .input-group {
    flex-direction: column;
  }

  .calculation-results {
    padding: 1rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .tracking-form {
    padding: 1.5rem;
  }

  .tracking-info,
  .tracking-timeline {
    padding: 1.5rem;
  }

  .booking-details {
    padding: 1rem;
  }

  .booking-actions {
    padding: 1rem;
  }

  .login-card {
    padding: 1rem;
  }

  .logo-section h1 {
    font-size: 1.5rem;
  }
}

/* Compact Login/Register Styles */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #1e3d72);
  padding: 1rem;
}

.login-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  width: 100%;
  max-width: 380px; /* smaller box */
  text-align: center;
}

.logo-section {
  margin-bottom: 1rem;
}

.logo-section h1 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.logo-section p {
  color: #666;
  margin: 0;
  font-size: 0.85rem;
}

.login-form .form-group {
  margin-bottom: 0.65rem; /* tighter spacing */
  text-align: left;
}

.login-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: var(--dark-color);
  font-size: 0.85rem;
}

.login-form input {
  width: 100%;
  padding: 0.5rem; /* smaller padding */
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.12);
}

.login-form .btn {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.login-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.login-footer p {
  margin: 0.4rem 0;
  color: #666;
}

.login-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* Navigation Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color), #1e3d72);
  color: white;
  padding: 1rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: background-color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Page Header Styles */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.page-header p {
  color: #666;
  font-size: 1.125rem;
  margin: 0;
}

/* Tracking Styles */
.tracking-form-container {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.tracking-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.tracking-result {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tracking-header {
  background: var(--light-color);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.tracking-header h2 {
  margin: 0;
  color: var(--primary-color);
}

.tracking-info {
  padding: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-item label {
  font-weight: 600;
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.info-item span {
  color: var(--dark-color);
  font-size: 1rem;
}

/* Timeline Styles */
.tracking-timeline {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

.tracking-timeline h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e9ecef;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -23px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #e9ecef;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-item.completed .timeline-marker {
  background-color: var(--success-color);
  box-shadow: 0 0 0 3px var(--success-color);
}

.timeline-item.active .timeline-marker {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-color);
  animation: pulse 2s infinite;
}

.timeline-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--dark-color);
  font-size: 1rem;
}

.timeline-content p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
}

/* My Bookings Styles */
.empty-state {
  text-align: center;
  padding: 3rem 0;
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.booking-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.booking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.booking-header {
  background: var(--light-color);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.booking-id {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  color: var(--primary-color);
}

.booking-details {
  padding: 1.5rem;
}

.route-info {
  margin-bottom: 1.5rem;
}

.route-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.route-item label {
  font-weight: 600;
  color: #666;
}

.route-item span {
  color: var(--dark-color);
}

.package-info {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.info-row label {
  font-weight: 500;
  color: #666;
  font-size: 0.875rem;
}

.info-row span {
  color: var(--dark-color);
  font-size: 0.875rem;
}

.booking-meta {
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.meta-item label {
  font-weight: 500;
  color: #666;
  font-size: 0.875rem;
}

.meta-item .cost {
  font-weight: bold;
  color: var(--success-color);
  font-size: 1rem;
}

.booking-actions {
  padding: 1rem 1.5rem;
  background: var(--light-color);
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-menu-toggle {
    display: none;
  }

  .main-content {
    padding: 0;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
/* Override header sticky for mobile */
@media (max-width: 768px) {
  .header {
    position: relative; /* remove sticky on mobile */
  }
}
