@import "footer.css";
@import "slider.css";
@import "navigation.css";
@import "dynamic_bc.css";
@import "home_modules.css";
@import "about_modules.css";
@import "contact_modules.css";
@import "services_modules.css";
@import "service_widget.css";
@import "city_list.css";
@import "blog_modules.css";
@import "gallery_modules.css";
@import "packers_movers_modules.css";
@import "reviews_modules.css";
@import "template_modules.css";

:root {
  --bs-font-sans-serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --theme-primary: #e31e42;
  --theme-primary-hover: #c8102e;
  --theme-yellow: #ffb400;
  --theme-yellow-hover: #e0a000;
  --bs-primary: #e31e42;
  --bs-primary-rgb: 227, 30, 66;
  --bs-warning: #ffb400;
  --bs-warning-rgb: 255, 180, 0;
  --bs-link-color: #e31e42;
  --bs-link-hover-color: #c8102e;
}

body {
  font-family: var(--bs-font-sans-serif);
  color: #333333;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Global Theme Color Utility Overrides */
.bg-primary {
  background-color: #e31e42 !important;
}

.text-primary {
  color: #e31e42 !important;
}

.bg-primary-subtle {
  background-color: #fde8eb !important;
}

.text-primary-emphasis {
  color: #e31e42 !important;
}

.border-primary {
  border-color: #e31e42 !important;
}

/* Buttons (Logo Theme Red & Yellow as requested) */
.btn-primary {
  background-color: #e31e42 !important;
  border-color: #e31e42 !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c8102e !important;
  border-color: #c8102e !important;
  color: #ffffff !important;
}

.btn-warning,
.btn-yellow {
  background-color: #ffb400 !important;
  border-color: #ffb400 !important;
  color: #fdfdfd !important;
  font-weight: 700 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-yellow:hover,
.btn-yellow:focus {
  background-color: #e0a000 !important;
  border-color: #e0a000 !important;
  color: #000000 !important;
}

/* Custom Text Underline for Business Posts */
.title-accent-orange {
  position: relative;
  display: inline-block;
}

.title-accent-orange::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background-color: #e31e42;
  border-radius: 2px;
}

/* Line Clamp Utilities */
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Image Hover Scaling */
.img-zoom-hover {
  transition: transform 0.3s ease;
}

.card:hover .img-zoom-hover {
  transform: scale(1.05);
}

/* Global Pagination Styling (Theme Red/Warning) */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 0.35rem;
  justify-content: center;
  align-items: center;
}

.pagination .page-item .page-link,
.pagination .page-item span.page-link {
  border: 1px solid #dee2e6 !important;
  color: #212529 !important;
  font-weight: 600;
  border-radius: 50% !important;
  /* Make all pagination items perfect circles */
  width: 38px;
  height: 38px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pagination .page-item .page-link:hover {
  background-color: #ffb400 !important;
  /* Theme Yellow */
  color: #000000 !important;
  border-color: #ffb400 !important;
}

.pagination .page-item.active .page-link,
.pagination .page-item.active span.page-link {
  background-color: #e31e42 !important;
  /* Theme Red */
  color: #ffffff !important;
  border-color: #e31e42 !important;
  box-shadow: 0 4px 10px rgba(227, 30, 66, 0.25);
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.disabled span.page-link {
  background-color: #f8fafc !important;
  color: #cbd5e1 !important;
  border-color: #e2e8f0 !important;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Optimize Large Form Buttons and Inputs on Mobile */
@media (max-width: 575.98px) {
  .btn-lg {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.95rem !important;
    height: auto !important;
  }

  .premium-tracking-input {
    height: 48px !important;
    font-size: 15px !important;
  }

  .premium-tracking-btn {
    height: 48px !important;
    font-size: 15px !important;
  }

  .modal-dialog .btn-lg {
    font-size: 0.95rem !important;
    padding: 0.55rem 1.5rem !important;
  }
}

/* Premium Pulse and Shake animations */
@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes phoneWiggle {
  0% {
    transform: rotate(0deg);
  }

  5% {
    transform: rotate(-15deg);
  }

  10% {
    transform: rotate(15deg);
  }

  15% {
    transform: rotate(-10deg);
  }

  20% {
    transform: rotate(10deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  30% {
    transform: rotate(5deg);
  }

  35% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Pulsing buttons - applying to all main CTA buttons across the website */
.btn-danger,
.btn-warning,
.btn-primary,
.btn-outline-danger {
  animation: buttonPulse 2.5s infinite ease-in-out;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn-danger:hover,
.btn-warning:hover,
.btn-primary:hover,
.btn-outline-danger:hover {
  animation-play-state: paused;
  /* Pause pulsing on hover to allow interactive scaling */
  transform: scale(1.06) !important;
}

/* Wiggling phone icons inside navbar call pill, footer, and offcanvas triggers */
.bi-telephone-fill,
.bi-telephone {
  display: inline-block;
  animation: phoneWiggle 3s ease-in-out infinite;
  transform-origin: center;
}

/* Mega Menu Circular Header Icons */
.mega-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #e31e42;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 10px rgba(227, 30, 66, 0.15);
}

/* Link badges in Mega Menu */
.mega-menu-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fde8eb;
  color: #e31e42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.65rem;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover .mega-menu-link-icon {
  background-color: #e31e42;
  color: #ffffff;
}

#horizontalMegaOffcanvas .border-end-md {
  border-right: 1.5px solid #dee2e6 !important;
}

@media (max-width: 991.98px) {
  #horizontalMegaOffcanvas .border-end-md {
    border-right: none !important;
    border-bottom: 1px solid #e9ecef !important;
    padding-bottom: 1.5rem !important;
  }
}

/* Clean, subtle section gap across all website pages */
section {
  margin-bottom: 1.75rem !important;
}

section:last-of-type, footer, header {
  margin-bottom: 0 !important;
}

/* Universal Dimension & Typography Helper Classes */
.rounded-circle,
.btn.rounded-circle,
.badge.rounded-circle,
[class*="icon-box-"] {
  aspect-ratio: 1 / 1 !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.btn-sm.rounded-circle,
.btn.rounded-circle.btn-sm {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.icon-box-26 { width: 26px; height: 26px; min-width: 26px; min-height: 26px; }
.icon-box-32 { width: 32px; height: 32px; min-width: 32px; min-height: 32px; }
.icon-box-34 { width: 34px; height: 34px; min-width: 34px; min-height: 34px; }
.icon-box-38 { width: 38px; height: 38px; min-width: 38px; min-height: 38px; }
.icon-box-40 { width: 40px; height: 40px; min-width: 40px; min-height: 40px; }
.icon-box-42 { width: 42px; height: 42px; min-width: 42px; min-height: 42px; }
.icon-box-44 { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
.icon-box-46 { width: 46px; height: 46px; min-width: 46px; min-height: 46px; }
.icon-box-48 { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
.icon-box-50 { width: 50px; height: 50px; min-width: 50px; min-height: 50px; }
.icon-box-54 { width: 54px; height: 54px; min-width: 54px; min-height: 54px; }
.card-img-wrap-220 { height: 220px; }
.card-img-wrap-100 { width: 100px; height: 75px; }
.map-min-h-350 { min-height: 350px; }
.tracking-form-max { max-width: 650px; }
.review-alert-max { max-width: 800px; }
.empty-review-max { max-width: 600px; }
.icon-5rem { font-size: 5rem; opacity: 0.7; }
.icon-tracking-pos { left: 20px; top: 50%; transform: translateY(-50%); color: #B81D24; font-size: 1.1rem; }
.tracking-input-style { padding-left: 55px; border-radius: 50px; border: 2px solid #f1f5f9; box-shadow: none; font-size: 16px; height: 54px; background-color: #f8fafc; }
.tracking-btn-style { border-radius: 50px; background-color: #084b8e; color: white; font-weight: 700; border: none; transition: all 0.3s; height: 54px; min-width: 150px; }
.tracking-clear-style { width: 54px; height: 54px; border: 2px solid #f1f5f9; color: #64748b; transition: all 0.3s; flex-shrink: 0; }
.modal-img-max { max-height: 80vh; object-fit: contain; }
.gallery-card-220 { height: 220px; }
.tracking-title-color { color: #1e293b; }