/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}
:root {
  --primary-navy: #003366;
  --accent-gold: #f59e0b;
}

/* ========== HEADER SECTION ========== */

/* Top Social Bar (Dark Blue) */
.top-social {
  background-color: var(--primary-navy);
  font-size: 1rem;
    z-index: 2;
  position: relative;
}
.top-social a {
  color: white;
  transition: color 0.3s;
}
.top-social a:hover {
  color: #f59e0b;
}

/* Gold Contact Bar */
.top-bar a {
  color: white;
}
.top-bar a:hover {
  color: #003366;
  text-decoration: underline;
}
.top-bar-wrapper {
  position: relative;
  z-index: 3;
}
.top-bar {
 background-color: #f59e0b;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 6px 0;
  position: relative;
  z-index: 3;
  height: 100px;
}

.header-accent {
  width: 150%;
  height: 100px;
  background: #003366;
  clip-path: polygon(75% 0, 100% 0, 100% 160%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}



.top-bar .icon-links {
  position: relative;
  z-index: 10;
}
.custom-header {
  height: 200px;
  display: flex;
  align-items: center;
}


/* Branding */
.brand-heading {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #003366;
  text-shadow: 2px 2px #f7b731;
  line-height: 1;
}

.brand-subheading {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  color: #003366;
  text-shadow: 1px 1px #f7b731;
  line-height: 1;
}


/* Ensure navbar is always on top */
.navbar-collapse {
  z-index: 1001;
  position: relative;
  background-color: #1f2937;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 1rem;
  transition: all 0.3s ease;
}

/* Ensure header sits above images */
.custom-header {
  position: relative;
  z-index: 1002;
}

/* Ensure toggler shows up and works well */
.navbar-toggler {
  z-index: 1003;
  border: none;
  background-color: #fbbf24;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

/* Animate mobile nav links */
.navbar-nav .nav-link {
  transition: all 0.2s ease-in-out;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: #fbbf24;
  color: #1f2937 !important;
  border-radius: 6px;
}


.hire-us-section {
  background: url('images/hireus.webp') center center/cover no-repeat;
  height: 100vh;
  position: relative;
}

.hire-us-content {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hire-logo {
  max-width: 200px;
  height: auto;
}

.hire-us-section .btn-warning {
  font-size: 1.2rem;
  padding: 14px 36px;
  background-color: #f7b731;
  color: black;
  border: none;
  border-radius: 4px;
}

.hire-us-section .btn-warning:hover {
  background-color: #e0a200;
  color: white;
}

.storage-section {
  background-color: #f59e0b; /* matching your orange theme */
}

.storage-section .btn-warning {
  background-color: #f59e0b;
  border: none;
  color: white;
}

.storage-section .btn-warning:hover {
  background-color: #d97706;
  color: white;
}
.modal-content {
  border-radius: 10px;
}
.modal-open {
  overflow: hidden;
  padding-right: var(--modal-padding, 0);
}

.modal-header {
  border-bottom: none;
}

.modal-body .btn {
  min-width: 180px;
  font-weight: bold;
}


#quotePopup .modal-dialog {
  max-width: 400px;
  margin: 1.75rem auto;
}
#quotePopup .modal-body {
  padding: 2rem 1.5rem;
  text-align: center;
}

#quotePopup .form-check-input {
  margin-top: 0.25rem;
}

#quotePopup .form-check-label {
  font-size: 0.9rem; /* better scaling on mobile */
  color: #6c757d;
}
  #globalItemSection .form-check {
    display: none; /* Start hidden */
  }
/* ========== HERO SECTION ========== */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  /* Remove the background image */
  /* background: url('images/hero-truck.webp') center center/cover no-repeat; */
  background-color: #000; /* or transparent / whatever fallback you want */
  height: 600px;
  position: relative;
}

.hero-moving {
  background: url('images/move-image1.webp') center center/cover no-repeat;
}
.hero-storage {
  background: url('images/storage-more-vault.webp') center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: rgba(0, 33, 71, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
}

.hero-box {
  color: white;
  font-family: Georgia, serif;
  max-width: 90%;
}

.hero-box h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: normal;
}



.btn-hero {
  background-color: #f7b731;
  color: black;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
}

.text-offwhite {
  color: #212529; /* or #333, or #000 */
}


.access-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f7b731;
  color: #003366;
  border-radius: 50%;
  width: 44px;          /* fixed size box */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 1.3rem;    /* icon size */
}

/* Optional: keep icon itself from doing weird line-height stuff */
.access-icon .bi {
  line-height: 1;
}


.bg-custom-light {
  background-color: #f8f1dc; /* Match the warm beige color from screenshot */
}

.btn-warning {
  background-color: #f59e0b;
  color: white;
  border: none;
}
.btn-warning:hover {
  background-color: #d97706;
  color: white;
}
.btn-high-contrast {
  background-color: #ff9800;
  color: #000;
  border-radius: 6px;
  padding: 10px 20px;
}

.btn-high-contrast:hover {
  background-color: #e0a200;
  color: #fff;
}

.btn-navy {
  background-color: #002855;
  color: #fff;
}

.btn-navy:hover {
  background-color: #001a40;
}


/* ========== OTHER STYLES ========== */

/* Primary Buttons */
.btn-primary {
  background-color: #f59e0b;
  border: none;
  color: black;
}
.btn-primary:hover {
  background-color: #f39c12;
  color: white;
}
.text-primary {
  color: #003366;
}


/* Section Layout */
.section {
  padding: 60px 0;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Georgia', serif;
  font-weight: bold;
  color: var(--primary-navy);
}

.bg-navy {
  background-color: #002855;
}
.gallery-section {
  border-top: 3px solid #f59e0b;
  border-bottom: 3px solid #f59e0b;
}
.gallery-image-wrapper {
  border: 2px solid #f59e0b;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(255, 166, 0, 0.5);
}
.gallery-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .gallery-image {
    height: 250px;
  }
}

@media (min-width: 1200px) {
  .gallery-image {
    height: 300px;
  }
}



.bg-orange {
  background-color: #f59e0b;
}
.row.g-4.justify-content-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px; /* ensures uniform height */
}

.service-card:hover {
  transform: translateY(-5px);
}
.service-card h4 {
  font-weight: 700;
  border-bottom: 2px solid #f59e0b;
  display: inline-block;
  margin-bottom: 10px;
}



/* Testimonials */
.testimonial-contact-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}

.testimonial-area, .contact-form-area {
  flex: 1 1 500px;
  padding: 40px;
}

.contact-form-area .form-control {
  border-radius: 0;
  border: none;
  background-color: #fff;
  color: #000;
}
.contact-form-area .form-control:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.testimonial-box {
  border: 2px solid #002855;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 800px;
}

.carousel-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.carousel-control-prev, .carousel-control-next {
  width: 50px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #002855;
  border-radius: 50%;
  padding: 10px;
}



/* Footer */
footer {
  background-color: #343a40;
  color: white;
  padding: 30px 0;
  text-align: center;
}
footer p {
  margin: 0;
}
.site-footer {
  background-color: #002855;
  color: #fff;
}

.site-footer .bi {
  color: #f7b731;
}

.site-footer h6 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.site-footer ul li {
  margin-bottom: 6px;
}
@media (max-width: 768px) {

  /* Header & Logo */
  .top-bar {
    height: auto;
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .top-bar .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .custom-header {
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
  }

.custom-header img {
  max-height: 80px;
  height: auto;
  width: auto;
}


  .brand-heading {
    font-size: 1.6rem;
    text-shadow: 1px 1px #f7b731;
  }

  .brand-subheading {
    font-size: 1rem;
  }


  /* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%; /* Full width */
  max-width: 600px; /* Optional max width */
  background: rgba(0, 33, 71, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}


.hero-box h1 {
  font-size: 2rem;
}

.hero-box p {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .hero-box h1 {
    font-size: 2.8rem;
  }
  .hero-box p {
    font-size: 1.1rem;
  }
}


  /* Services Section */
  .service-card {
    padding: 20px;
    text-align: center;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }


  /* Footer */
  .site-footer .row {
    text-align: center;
  }

  .site-footer .col-md-4 {
    margin-bottom: 20px;
  }

  .site-footer ul {
    padding: 0;
  }

  /* Testimonial & Contact Stack */
  .testimonial-contact-section {
    flex-direction: column;
  }

  .testimonial-area,
  .contact-form-area {
    padding: 20px;
  }
}
