/* =================
FONT
=================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&display=swap');
/* ============================================
BASE STYLES
============================================ */
body, html {height: 100%;background: #fff;font-family: 'Nunito Sans', sans-serif !important;  touch-action: pan-y;}
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ============================================
HEADER & NAVIGATION
============================================ */
header.site-header {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.hamburger-btn {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
}
.hamburger-btn:hover {transform: scale(1.1);}
.hamburger-btn span,
.menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-bar {background: #fff;}
/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 999;
  animation: slideDown 0.3s ease;
}
.mobile-nav-menu.is-active {display: flex;}
.mobile-nav-menu ul {list-style: none; padding: 0;}
.mobile-nav-menu li {margin: 10px 0;}
.mobile-nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.mobile-nav-menu a:hover {color: #ff903f;transform: translateX(5px);}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 1001;
}
.close-btn:hover {transform: rotate(90deg);color: #ff903f;}
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.login-modal.is-visible {display: flex !important;}
.login-modal form {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-modal .form-input {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  background-color: #f7f7f7;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  color: #000;
}
.login-modal .form-input::placeholder {color: #999;}
.login-modal .form-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(255, 144, 63, 0.25);
  background-color: #f7f7f7;
}
.login-modal .btn {
  width: 100%;
  max-width: 350px;
  border: 2px solid #f58220;
  color: #f58220;
  background-color: white;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 20px;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.login-modal .btn:hover {background-color: #f58220;color: #fff;}
/* Desktop Navigation Links */
.nav-link {position: relative; transition: color 0.3s ease;}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff903f;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after {width: 100%;left: 0;}
.nav-link:hover {color: #ff903f;}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ============================================
HERO SECTION
============================================ */
.hero-home {
  position: relative;
}
.hero-cta-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(135deg, #ff903f, #e65514);
  z-index: 0;
  border-radius: 50px 50px 0 0;
}
.hero-content {position: relative;z-index: 1;}
.hero-welcome-text {
  color: #f69052;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-content img {transition: transform 0.3s ease;cursor: pointer;}
.hero-content img:hover {
  transform: scale(1.1);
}
/* ============================================
HOW IT WORKS SECTION
============================================ */
.how-it-works-section { background: linear-gradient(135deg, #ff903f, #e65514);color: #fff;}
.feature-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover {transform: translateY(-5px);background: rgba(255, 255, 255, 0.25);}
.feature-icon {
  width: 100px;                              
  height: 100px;                             
  background: rgba(255, 255, 255, 0.3);     
  border-radius: 20px;                       
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;                             
}
.feature-icon img {width: 100%;height: 100%;object-fit: contain;                       }
/* ============================================
BOOKING FORM SECTION
============================================ */
.booking-section {background-color: #fff;border-radius: 40px;}
.text-orange {color: #ff903f;}
.btn-primary-orange {
  border: 2px solid #f58220;
  color: #f58220;
  background-color: white;
  transition: all 0.3s ease;
}
.btn-primary-orange:hover {background-color: #f58220;color: #fff;}
.size-option-card {
  border: 2px solid #f0f0f0;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.size-option-card:hover {transform: translateY(-5px);box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);}
.size-option-card.is-selected {
  border: 2px solid #ff903f;
  background-color: rgba(255, 144, 63, 0.1);
}
.load-size-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: #f7f7f7;
}
.form-input {
  border-radius: 12px;
  background-color: #f7f7f7;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
}
.form-input:focus { outline: none;box-shadow: 0 0 0 0.25rem rgba(255, 144, 63, 0.25);
}
/* ============================================
SPECIFY ITEMS SECTION
============================================ */
.specify-items{
  background: linear-gradient(180deg, #ff903f, #e65514);
  font-family: 'Segoe UI', sans-serif;
  border-radius: 40px 40px 40px 40px;
}
.move-details-section {
  background: linear-gradient(180deg, #ff903f, #e65514);
  font-family: 'Segoe UI', sans-serif;
  border-radius: 40px 40px 0 0;
}
.price-summary-card {
  background: linear-gradient(253deg, rgba(246, 181, 106, 1) 11%, rgba(252, 210, 164, 1) 100%);
  border-radius: 18px;
}
.load-size-preview {
  width: 60px;
  height: 60px;
  background-color: #f6b56a;
  border-radius: 10px;
}
#load-time .time-slots-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
#load-time .btn-time {
  background-color: white;
  color: #333;
  border: 2px solid #ddd;
  border-radius: 8px !important;
  padding: 0.5rem 0.25rem; 
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  flex: 1 1 calc(20% - 0.5rem); 
  min-width: 60px;
  max-width: 80px;         
  text-align: center;
  transition: all 0.2s ease;
}

#load-time .btn-time:hover {border-color: #f77f00; background-color: #fff8f0}
#load-time .btn-time.active {
  background-color: #f77f00;
  color: white;
  border-color: #f77f00;
}
.items-counter-card {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 30px;
  color: #fff;
}
.counter input {
  width: 50px;
  border-radius: 6px;
  border: none;
  height: 32px;
}
.counter button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-weight: bold;
  padding: 0;
}
.btn-light {
  background: #fff;
  color: #000;
  font-size: 16px;
  padding: 10px 0;
  border-radius: 10px;
  font-weight: 600;
}
.icon-circle {
  width: 45px; height: 45px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle img { max-width: 28px; max-height: 28px; }
.contact-section {
  background: linear-gradient(180deg, #ff903f, #e65514);
}
.user-avatar {
  background: radial-gradient(circle at top, #ffe0b0, #f7931e);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
}
.contact-input {
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  background-color: #fff;
  color: #000;
  font-size: 15px;
}
.contact-input::placeholder {color: #c95e17;}
.form-input-contact {
  border-radius: 12px;
  background-color: #f7f7f7;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
}
.form-input:focus { outline: none;box-shadow: 0 0 0 0.25rem rgba(255, 144, 63, 0.25);
}
.payment-card-display {background-color: #fcd2a4;border-radius: 20px;}
.payment-tab-active {border-bottom: 2px solid #fff;padding-bottom: 3px;}
.country-flag-icon {
  width: 40px;
  height: 30px;
  background-color: #ddd;
  border-radius: 4px;
}
.btn-outline-light {border-radius: 12px;font-weight: 500;}
.payment-method {
  display: flex;
  flex-direction: column; /* stack text above image */
  align-items: center;    /* center horizontally */
  justify-content: center; /* center vertically inside card */
  border: 2px solid #eee !important;
  border-radius: 12px;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}
.payment-method img {
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.payment-method p {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.payment-method:hover,
.payment-method:focus,
.payment-method.is-selected, .req-box {
  border-color: #ff903f !important;
  box-shadow: 0 0 8px rgba(255, 144, 63, 0.6);
}
.req-box {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #333;
}
.req-box p {font-weight: 400; font-size: 17px;}
/* ============================================
CONFIRMATION SECTION
============================================ */
.booking-confirmation-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}
.trip-details-card {
  border: 2px solid #ff903f;
  border-radius: 20px;
  padding: 25px;
  width: 100%;
  max-width: 600px;
  background: #fff;
}
.trip-details-card hr {border-top: 1px solid #ff903f; opacity: 0.3}
.load-size-badge {text-align: center;}
.load-size-badge img {max-width: 70px;}
.confirm-booking-btn {
  border: 1px solid #000;
  background: #fff;
  border-radius: 10px;
  padding: 8px 30px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.confirm-booking-btn:hover {background: #000;color: #fff;}
.form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border-color: #ff903f;
}
.form-check-label {color: #ff903f;font-size: 15px;}
#viewjob {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}
.swal-button--confirm {color: #FF9800; background-color: #fff !important; border: 2px solid #FF9800}
.swal-footer {text-align: center;}
.swal-button:focus {box-shadow: 0 0 0 1px rgba(255, 87, 34, 0.5)}
.alert-warning {background-color: #fff2e3}
.primary-bg {background: linear-gradient(180deg, #ff903f, #e65514);}
#viewjob a {color: #333; text-decoration: none}
.btn-remove-stop {background:none; border:none; color:#f77f00; font-size:1.2rem; cursor:pointer}
.form-check-input:checked {
  background-color: #333;
  border-color: #333;
}
.bg-orange {background: #ff903f; color: #fff;}
.modal-backdrop {background-color: white;}
#hoove-modal .modal-body {
    position: static;
    flex: 0 0 auto;
    padding: 1rem;
}
@media (min-width: 768px) {
  .mobile-nav-menu {display: none !important}
  .desktop-nav {display: flex !important}
  .hamburger-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .desktop-nav {
    display: none !important;
  }
  .login-modal .form-input,
  .login-modal .btn {
    max-width: 100%;
  }
}
