/* ==========================================================================
   Homecoming Movers - Global Stylesheet (style.css)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0B1B3D;
  --accent-orange: #FF6600;
  --accent-orange-hover: #E55C00;
  --text-dark: #0B1B3D;
  --text-body: #475569;
  --text-muted: #64748B;
  --border-color: #CBD5E1;
  --transition: all 0.25s ease-in-out;
}

html {
  overflow-x: hidden !important;
  max-width: 100% !important;
}



body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background-color: #FFFFFF;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Global Section Tagline */
.section-tag {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-orange) !important;
  margin-bottom: 10px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 1040;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 8px 30px rgba(11, 27, 61, 0.12) !important;
  animation: headerSlideDown 0.35s ease forwards;
}

.site-header.is-sticky .top-contact-bar {
  display: none !important;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Top Contact Bar */
.top-contact-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--primary-navy, #0B1B3D) !important;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-pill:hover {
  color: var(--accent-orange);
}

.pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Logo Styling */
.header-logo-img {
  
  width: auto;
  max-width: 125px;
  display: block;
  object-fit: contain;
}

/* Nav Links */
.navbar-custom .nav-link {
  color: var(--primary-navy) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--accent-orange) !important;
}

/* Navy Pill Button */
.btn-navy-pill {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(11, 27, 61, 0.2);
  transition: var(--transition);
  text-decoration: none;
}

.btn-navy-pill:hover {
  background-color: #06122C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 27, 61, 0.3);
}

/* ==========================================================================
   Footer Styling (Refined)
   ========================================================================== */
.footer-main {
  background-color: #0B1B3D !important;
  color: #CBD5E1;
  padding-top: 65px;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
  /* background-color: #FFFFFF; */
  padding: 6px 14px;
  border-radius: 8px;
}

.footer-desc {
  color: #94A3B8;
  line-height: 1.6;
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-heading {
  color: #FFFFFF !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-link-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  color: #CBD5E1 !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-link-list a:hover {
  color: var(--accent-orange) !important;
  transform: translateX(4px);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #CBD5E1;
  font-size: 0.9rem;
}

.footer-contact-row i {
  font-size: 1rem;
}

.legal-link {
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.legal-link:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.text-muted-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

.footer-contact-row a {
  color: #CBD5E1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-row a:hover {
  color: var(--accent-orange);
}

.footer-social-icon,
.social-icon-google {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-icon:hover,
.social-icon-google:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Mobile & Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 16px 0 10px 0;
    text-align: center;
  }

  .navbar-nav {
    margin-bottom: 12px;
  }

  .navbar-custom .nav-link {
    padding: 8px 0 !important;
  }
}

@media (max-width: 767.98px) {
  .top-contact-bar {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 8px 16px !important;
    padding: 8px 0;
  }

  .contact-pill {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .pill-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .top-contact-bar {
    gap: 6px 12px !important;
  }

  .contact-pill {
    font-size: 0.75rem;
  }

  .pill-text {
    white-space: nowrap;
  }

  .header-logo-img {
    height: 38px;
    max-width: 160px;
  }

  .navbar-custom .nav-link {
    text-align: center;
    padding: 8px 0 !important;
  }

  .btn-navy-pill {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}