@import "navigation.css";
@import "footer.css";
@import "slider.css";
@import "home.css";

/* ----- ROOT CSS VARIABLES ----- */
:root {
  --primary-blue: #0033a0;
  --primary-blue-hover: #00226b;
  --primary-orange: #f37021;
  --primary-orange-hover: #e65c00;
  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-elastic: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ----- GLOBAL RESET & PREMIUM STYLE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fdfdfd;
  color: var(--text-dark);
}

@media (max-width: 991.98px) {
  body {
    margin-bottom: 45px;
  }
}

/*  about page */
/* ----- INNER PAGE HERO BANNER ----- */
.inner-hero-banner {
  background: linear-gradient(135deg, #001f5c 0%, var(--primary-blue) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(243, 112, 33, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

/* Breadcrumbs Custom Styling */
.custom-breadcrumb {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex !important;
  margin: 0 auto;
}

.breadcrumb-link {
  transition: var(--transition-smooth);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: var(--primary-orange) !important;
}

.breadcrumb-sep {
  font-size: 0.8rem;
  opacity: 0.6;
}

.breadcrumb-active {
  color: var(--primary-orange);
}

/* ----- SECTION SUBTITLE BADGES ----- */
.section-subtitle-badge {
  color: var(--primary-orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-orange {
  color: var(--primary-orange);
}

.text-blue {
  color: var(--primary-blue);
}

.bg-light-blue {
  background-color: rgba(0, 51, 160, 0.05);
}

.bg-light-orange {
  background-color: rgba(243, 112, 33, 0.05);
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-semibold {
  font-weight: 600;
}

/* Visual Collage styling */
.about-visual-collage {
  padding: 20px 0;
}

.collage-main-img-wrapper {
  position: relative;
  z-index: 1;
}

.collage-main-img {
  transition: transform 0.6s ease;
}

.about-visual-collage:hover .collage-main-img {
  transform: scale(1.05);
}

/* Floating Badges */
.floating-badge-about {
  min-width: 220px;
  z-index: 2;
  transition: var(--transition-elastic);
}

.top-left-badge {
  top: -10px;
  left: -20px;
}

.bottom-right-badge {
  bottom: -10px;
  right: -20px;
}

.floating-badge-about:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-lg) !important;
}

.floating-badge-about i {
  font-size: 1.8rem;
}

/* ----- ACCREDITATIONS & TRUST BADGES ----- */
.accreditations-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.accred-item {
  transition: var(--transition-smooth);
}

.accred-item:hover {
  transform: scale(1.05);
}

.accred-icon {
  font-size: 2.5rem;
  display: block;
}

@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
  }
}

/* ----- CORE CORPORATE VALUES ----- */
.value-card {
  border-width: 1px;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md) !important;
  border-color: var(--primary-orange) !important;
}

.value-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-circle i {
  font-size: 2rem;
}

/* ----- MILESTONE GROWTH GRID ----- */
.about-milestones-section {
  overflow: hidden;
}

.milestones-row-wrapper {
  padding: 20px 0;
}

.milestones-progress-line {
  position: absolute;
  top: 55%;
  left: 12%;
  right: 12%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.15;
  border-radius: 2px;
}

.milestone-grid-card {
  transition: var(--transition-elastic);
  border-width: 1px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.milestone-grid-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--primary-orange) !important;
}

.milestone-year-badge {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-top: -15px;
  margin-bottom: 15px;
  z-index: 3;
  border: 3px solid var(--white);
}

.milestone-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 51, 160, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.milestone-grid-card:hover .milestone-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
}

.milestone-icon-wrapper i {
  font-size: 1.8rem;
}

.milestone-grid-card:hover .milestone-icon-wrapper.text-blue {
  background-color: var(--primary-blue);
  color: var(--white) !important;
}

.milestone-grid-card:hover .milestone-icon-wrapper.text-orange {
  background-color: var(--primary-orange);
  color: var(--white) !important;
}

.milestone-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  transition: var(--transition-smooth);
}

.milestone-grid-card:hover .milestone-card-title {
  color: var(--primary-orange);
}

.milestone-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.bg-blue {
  background-color: var(--primary-blue);
}

.bg-orange {
  background-color: var(--primary-orange);
}

.btn-orange {
  background-color: var(--primary-orange);
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: var(--primary-orange-hover) !important;
  color: var(--white) !important;
  outline: none !important;
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.4) !important;
  transform: translateY(-3px);
}

.btn-orange:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(243, 112, 33, 0.4) !important;
}

/* ----- WHY CHOOSE US CUSTOMS ----- */
.choose-visual-wrapper {
  padding: 20px 0;
}

.bottom-left-badge-choose {
  bottom: -10px;
  left: -20px;
  min-width: 200px;
  z-index: 2;
  transition: var(--transition-elastic);
}

.bottom-left-badge-choose:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

.point-icon-badge {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-icon-badge i {
  font-size: 1.1rem;
}

/* Safety Statistics Section */
.choose-stats-section {
  z-index: 1;
}

.choose-stats-section .bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: -1;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.bg-circle-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
}

.stat-counter-card {
  transition: var(--transition-smooth);
}

.stat-counter-card:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .border-start-white-10 {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* Safeguards cards */
.safeguard-card {
  transition: var(--transition-smooth);
}

.safeguard-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md) !important;
  border-color: var(--primary-orange) !important;
}

.safeguard-icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safeguard-icon-badge i {
  font-size: 2rem;
}

/* Call to Action Shifting Banner */
.cta-inner-card {
  border-width: 1px;
}

.btn-blue {
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-blue:hover {
  background-color: var(--primary-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-orange {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-outline-orange:hover {
  background-color: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.max-w-800 {
  max-width: 800px;
}

.max-w-600 {
  max-width: 600px;
}

/* ----- STANDALONE FAQS PAGES ----- */
.faq-sidebar-card {
  border-width: 1px;
}

.faq-quick-contact {
  border-left-width: 4px;
}

.faq-accordion-details {
  border-width: 1px;
  overflow: hidden;
}

.faq-accordion-summary {
  list-style: none;
  transition: var(--transition-smooth);
}

.faq-accordion-summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-summary:hover {
  background: rgba(0, 51, 160, 0.05);
  color: var(--primary-blue);
}

.faq-accordion-details[open] .faq-accordion-summary {
  background: rgba(0, 51, 160, 0.05);
  color: var(--primary-blue);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-accordion-details[open] .toggle-icon-plus::before {
  content: "\f4fa";
  /* bi-dash-lg */
  font-family: "bootstrap-icons";
}

.faq-accordion-content {
  line-height: 1.6;
  background: #fafafa;
}

/* ----- EXPERT MOVING TIPS ----- */
.alert-caution-card {
  border-left-width: 4px !important;
}

.pro-tips-card {
  border-width: 1px;
}

.timeline-checklist-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
  transform: translateX(-50%);
}

.timeline-checklist-item {
  z-index: 1;
}

.timeline-check-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--white) !important;
}

.timeline-check-circle i {
  font-size: 1.2rem;
}

.timeline-check-card {
  border-width: 1px;
  transition: var(--transition-smooth);
}

.timeline-check-card:hover {
  box-shadow: var(--shadow-md) !important;
  border-color: var(--primary-orange);
  transform: translateX(5px);
}

.step-time {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(0, 51, 160, 0.05);
  border-radius: 30px;
  font-size: 0.85rem;
}

/* ----- LEGAL PAGES (TERMS & PRIVACY) ----- */
.legal-sidebar-sticky {
  border-width: 1px;
}

.legal-nav-menu li a {
  border-radius: 6px;
  padding-left: 10px;
}

.legal-nav-menu li a.active,
.legal-nav-menu li a:hover {
  background: rgba(0, 51, 160, 0.05);
  color: var(--primary-blue) !important;
  font-weight: 600;
  transform: translateX(4px);
}

.legal-content-body {
  border-width: 1px;
}

.small-dot {
  font-size: 0.5rem;
}

.exclusion-highlight-box {
  border-left-width: 4px !important;
}

.safety-badge {
  border-width: 1px;
}

/* Decorative Animated Circles in Hero Banner */
.about-anim-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  animation: floatCircle 8s infinite alternate ease-in-out;
}

.about-anim-circle-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  left: 10%;
  animation-duration: 6s;
}

.about-anim-circle-2 {
  width: 80px;
  height: 80px;
  bottom: 20px;
  left: 20%;
  animation-duration: 8s;
  animation-delay: 2s;
  background: rgba(243, 112, 33, 0.1);
  border-color: rgba(243, 112, 33, 0.2);
}

.about-anim-circle-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 5%;
  animation-duration: 10s;
  animation-delay: 1s;
}

@keyframes floatCircle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Mobile Fixed Bottom Action Bar */
.mobile-bottom-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}

.bottom-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.bottom-action-btn.call-btn {
  background-color: var(--primary-blue);
  color: var(--white);
}

.bottom-action-btn.quote-btn {
  background-color: var(--primary-orange);
  color: var(--white);
}

.bottom-action-btn:hover {
  opacity: 0.95;
  color: var(--white);
}

.bottom-action-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Animations */
.pulse-anim {
  animation: pulseIcon 1.5s infinite;
}

.bounce-anim {
  animation: bounceIcon 2s infinite;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes bounceIcon {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-4px);
  }

  60% {
    transform: translateY(-2px);
  }
}

@media (min-width: 992px) {
  .mobile-bottom-actions {
    display: none !important;
  }
}

/* Contact Page Styles */
.hs-main-section {
  margin-top: -60px;
  z-index: 10;
}

.hs-icon-box {
  width: 60px;
  height: 60px;
}

.contact-map-iframe {
  border: 0;
  min-height: 500px;
  border-radius: 12px;
}

.map-overlay-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Custom View Service Styles extracted from inline CSS */
#city-content-area {
  background-color: #f4f7f6;
}

.icon-box-50 {
  width: 50px;
  height: 50px;
}

.icon-box-40 {
  width: 40px;
  height: 40px;
}

.sticky-sidebar-custom {
  top: 120px;
  z-index: 10;
}

.dynamic-services-section {
  background-color: #051124;
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #032b69 0%, #021a42 100%);
}

.service-glare-card {
  transition: transform 0.3s, background-color 0.3s;
  background-color: transparent;
}

.service-glare-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 106, 0, 0.1);
  border-color: #ff6a00 !important;
}

.faq-modern .accordion-button:not(.collapsed) {
  color: #ff6a00 !important;
  box-shadow: none;
}

.faq-modern .accordion-button:focus {
  box-shadow: none;
}

.sidebar-quote-form input,
.sidebar-quote-form select,
.sidebar-quote-form textarea {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 10px;
}

.sidebar-quote-form input:focus,
.sidebar-quote-form select:focus,
.sidebar-quote-form textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
}

.city-seo-text p {
  font-size: 1.05rem;
  color: #475569;
}

/* service page */
.text-primary-blue {
  color: var(--primary-blue);
}

.bg-primary-blue {
  background-color: var(--primary-blue);
}

/* Buttons */
.btn-primary-orange {
  background-color: var(--primary-orange);
  color: var(--white);
  border: 2px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.btn-primary-orange:hover {
  background-color: transparent;
  color: var(--primary-orange);
}

/* Sidebar Layout Additions */
.border-primary-orange {
  border-color: var(--primary-orange) !important;
}

.bg-orange-light {
  background-color: rgba(243, 112, 33, 0.1);
}

.bg-blue-light {
  background-color: rgba(0, 51, 160, 0.1);
}

/* Sidebar Services List */
.hs-services-list li {
  margin-bottom: 10px;
}

.hs-services-list li:last-child {
  margin-bottom: 0;
}

.hs-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background-color: #f8f9fa;
  color: var(--text-dark, #333);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.hs-services-list a:hover,
.hs-services-list a.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-left-color: var(--primary-orange);
  transform: translateX(5px);
}

/* Premium Household Shifting Overrides */
.hs-bg-pattern {
  background-color: #f4f6fb;
  background-image: radial-gradient(#e0e5f2 1px, transparent 1px);
  background-size: 20px 20px;
}

.hs-card-premium {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hs-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.hs-premium-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background-color: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  font-weight: bold;
  border-radius: 5px 0 0 5px;
  box-shadow: -5px 5px 15px rgba(243, 112, 33, 0.3);
  z-index: 5;
}

.hs-premium-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border-width: 5px;
  border-style: solid;
  border-color: #c45717 transparent transparent #c45717;
}

.hs-feature-box {
  transition: all 0.3s ease;
  border-color: #eee !important;
}

.hs-feature-box:hover {
  background-color: rgba(0, 51, 160, 0.03);
  border-color: var(--primary-blue) !important;
}

/* Inner Process Grid */
.hs-process-box {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.hs-process-box:hover {
  background-color: #fff !important;
  border-color: var(--primary-blue);
  box-shadow: 0 10px 20px rgba(0, 51, 160, 0.08);
}

.hs-process-num {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: 1;
  transition: all 0.3s ease;
}

.hs-process-box:hover .hs-process-num {
  color: rgba(0, 51, 160, 0.08);
  transform: scale(1.1);
}

/* Inner Testimonial & FAQ */
.hs-reviewer-avatar {
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
}

.hs-review-card {
  border-left: 4px solid var(--primary-blue);
}

.hs-accordion .accordion-button {
  box-shadow: none !important;
}

.hs-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-blue) !important;
  background-color: #fff !important;
  border-bottom: 1px solid #eee;
}

.hs-accordion .accordion-button::after {
  background-size: 1rem;
}

/* Sidebar Details */
.hs-sidebar-wrapper {
  padding-left: 15px;
}

.hs-help-pattern {
  top: -20px;
  right: -20px;
  transform: rotate(15deg);
}

.hs-phone-link {
  transition: all 0.3s ease;
}

.hs-phone-link:hover {
  transform: scale(1.05);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sidebar Contact Card Animations */
.hs-animated-ring {
  display: inline-block;
  animation: ring 2s ease infinite;
  transform-origin: center;
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  5% {
    transform: rotate(15deg);
  }

  10% {
    transform: rotate(-10deg);
  }

  15% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  25% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

.hs-help-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: ripple 2s linear infinite;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.hs-btn-pulse {
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Premium Glassmorphism Breadcrumb */
.hs-premium-breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hs-bc-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hs-bc-link:hover {
  color: var(--primary-orange);
  text-shadow: 0 0 10px rgba(243, 112, 33, 0.5);
}

.hs-bc-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.hs-bc-active {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Warehouse Address Widget Styles */
.hs-address-widget {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hs-address-widget:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.hs-address-badge {
  top: 0;
  width: 85%;
  z-index: 2;
}

.hs-address-inner .hs-address-gradient {
  background: linear-gradient(45deg, rgba(253, 126, 20, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* ==========================================================================
   GLOBAL RESPONSIVE FIXES (Mobile, Tablet, Desktop)
   ========================================================================== */
html,
body {
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {

  h1,
  .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }

  h2,
  .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }

  h3,
  .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }

  h4,
  .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }

  section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 767.98px) {
  .custom-breadcrumb {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .about-anim-circle {
    display: none;
    /* Hide large decorative circles on mobile to prevent overflow */
  }

  .choose-stats-section .bg-circle {
    display: none;
  }
}

/* ----- EXTRACTED INLINE CSS FOR PAGES ----- */

/* Why Choose Us Widget Styles */
.why-choose-section {
  background: var(--bg-light);
}

.why-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

.why-point i {
  color: var(--primary-orange);
  font-size: 18px;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 30px;
  }
}

/* Sidebar and Sticky custom positions */
.sticky-sidebar-130 {
  top: 130px !important;
  z-index: 10;
}

.sticky-sidebar-140 {
  top: 140px !important;
  z-index: 10;
}

/* Services Detail Page Styles */
.hs-featured-img {
  max-height: 450px;
}