/* ============================================================
   booking-nav.css
   Shared navbar + footer styles used in booking/quote pages:
   - Booking/HomeRemovals.blade.php
   - Booking/confirmation.blade.php
   - Booking/thank-you.blade.php
   - quote-calculation.blade.php
   ============================================================ */

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 40px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

.logo {
  height: 100px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  color: #333;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Right Side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 60px;
}

.partner-btn {
  background: #f97316;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.partner-btn:hover {
  background: #e5640f;
}

/* Contact CTA */
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon {
  font-size: 40px;
  color: #000000;
}

.call-text p {
  margin: 0;
  font-size: 20px;
  color: #444;
}

.call-text h4 {
  margin: 0;
  color: #f97316;
  font-weight: 700;
}

/* Burger Menu */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #ddd;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 99;
}

.suggestion-list li {
  color: #0c0c20;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: #f9f9f9;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-right {
    gap: 15px;
  }

  .partner-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .call-text p {
    font-size: 12px;
  }

  .call-text h4 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav-left .dropdown {
    display: none;
  }

  .nav-right > *:not(.burger) {
    display: none;
  }

  .burger {
    display: block;
  }
}

/* FOOTER */
.footer {
  background: #0b0c10;
  color: #ddd;
  padding-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 0 5% 10px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-left p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc !important;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.socials i {
  color: #fff;
  margin-right: 15px;
}

/* Suggestion box (quote-calculation) */
.form-group {
  position: relative;
}

.suggestion-box {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 200px;
  top: 45px;
  left: 0;
  padding: 7px 7px;
  list-style: none;
  background: #fff;
  box-shadow: 3px 3px 5px 1px #dedede;
  border: 1px solid #dedede;
  border-radius: 5px;
  overflow: auto;
}

.suggestion-box .suggestion-item {
  border-bottom: 1px solid #dedede;
  padding: 8px 0;
  line-height: 23px;
  cursor: pointer;
  color: #333333;
}
