:root {
  h1,
  h2,
  h3,
  h4,
  p {
    font-family: "Jost", sans-serif;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
header {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(17, 15, 15, 0.35);

  z-index: 2000;
  transition: background 0.3s ease;
}
.logo img {
  width: 80px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 45px;
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: 0.3s;
}
.nav-links a:hover {
  opacity: 0.7;
}
.icons i {
  font-size: 18px;
  margin-left: 18px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.icons i:hover {
  transform: scale(1.1);
}
.menu-btn {
  display: none;
  cursor: pointer;
}
.menu-btn i {
  color: white;
  font-size: 26px;
}

@media (max-width: 768px) {
  header {
    padding: 20px 25px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 25px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px 30px;
    text-align: right;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 450px) {
  .logo img {
    width: 120px;
  }
}

.search-bar-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 130px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.15);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.search-bar-container.active {
  display: flex;
}

.search-input {
  width: 70vw;
  max-width: 600px;
  padding: 13px 20px;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.close-search {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  color: #555;
}

.hide-header {
  display: none !important;
}
/* Overlay Search Bar Responsive Styles */

.search-bar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.1);
  z-index: 201;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.search-bar-overlay.active {
  display: flex;
}

.search-bar-content {
  display: flex;
  align-items: center;
  width: 90vw;
  max-width: 900px;
  margin: 0 auto;
  gap: 22px;
}

.search-logo {
  width: 100px;
  min-width: 54px;
  height: auto;
}

.search-input {
  flex: 1 1 110px;
  padding: 13px 18px;
  min-width: 50px;
  font-size: 17px;
  border-radius: 7px;
  border: 1px solid #ebeaea;
}

.search-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-icons i {
  font-size: 22px;
  color: #2d2d2d;
  cursor: pointer;
}

.close-search {
  font-size: 27px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #333;
  margin-left: 10px;
}

.hide-header {
  display: none !important;
}
.login-btn {
  padding: 8px 22px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #ffffff71;
  color: #000;
  transform: scale(1.05);
}

/* Tablet Responsiveness */
@media (max-width: 900px) {
  .search-bar-content {
    width: 98vw;
    max-width: 99vw;
    gap: 12px;
    padding: 0 6px;
  }
  .search-input {
    font-size: 15px;
  }
}

/* Desktop nav visible only desktop */
.desktop-nav {
  display: flex;
}

.menu-btn {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: 0.4s ease;
  z-index: 4000;
  border-right: 1px solid #ddd;
}

.mobile-menu a {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #ff4b4b;

  .mobile-menu.active {
    left: 0;
  }

  .close-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 36px;
    cursor: pointer;
  }

  /* Hide desktop nav in mobile */
  @media (max-width: 768px) {
    .nav-links {
      display: none !important;
    }
    .menu-btn {
      display: block;
    }
  }

  /* Mobile Responsiveness */
  @media (max-width: 600px) {
    .search-bar-overlay {
      height: auto;
      min-height: 94px;
      padding: 14px 0;
    }
    .search-bar-content {
      flex-direction: column;
      width: 97vw;
      gap: 12px;
      align-items: stretch;
      padding: 0 5px;
    }
    .search-logo {
      margin-bottom: 2px;
      width: 65px;
      align-self: flex-start;
    }
    .search-input {
      width: 100%;
      min-width: 90px;
      padding: 11px 9px;
      border-radius: 6px;
    }
    .search-icons {
      width: 100%;
      justify-content: flex-end;
      gap: 16px;
    }
  }
  .search-bar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.1);
    z-index: 201;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
  }

  .search-bar-overlay.active {
    display: flex;
  }

  .search-bar-content {
    display: flex;
    align-items: center;
    width: 90vw;
    max-width: 900px;
    margin: 0 auto;
    gap: 22px;
  }

  .search-logo {
    width: 100px;
    min-width: 54px;
    height: auto;
  }

  .search-input {
    flex-grow: 1;
    padding: 13px 18px;
    min-width: 50px;
    font-size: 17px;
    border-radius: 7px;
    border: 1px solid #ebeaea;
  }

  .search-icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .search-icons i {
    font-size: 22px;
    color: #2d2d2d;
    cursor: pointer;
  }

  .close-search {
    font-size: 27px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    margin-left: 10px;
  }

  .hide-header {
    display: none !important;
  }
  .login-btn {
    padding: 8px 22px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .login-btn:hover {
    background: #ffffff71;
    color: #000;
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .login-btn {
      display: none !important;
    }
  }

  @media (max-width: 600px) {
    .search-bar-overlay {
      height: auto;
      min-height: 94px;
      padding: 14px 0;
    }
    .search-bar-content {
      flex-direction: column;
      width: 97vw;
      gap: 12px;
      align-items: stretch;
      padding: 0 5px;
    }
    .search-logo {
      margin-bottom: 2px;
      width: 65px;
      align-self: flex-start;
      display: none;
    }
    .search-input {
      width: 100%;
      min-width: 90px;
      padding: 11px 9px;
      border-radius: 6px;
    }
    .search-icons i.fa-regular.fa-heart {
      display: none;
    }
    .search-icons {
      width: 100%;
      justify-content: flex-end;
      gap: 16px;
    }
  }
}

.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  color: white;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown .dropbtn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 15px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  padding: 10px 0;
  z-index: 3000;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* --- Mobile Dropdown --- */
.mobile-dropdown {
  display: none;
}

.mobile-dropdown a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
}

.mobile-dropdown i {
  transition: transform 0.3s ease;
}

.mobile-dropdown.open i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  margin-top: 5px;
  transition: max-height 0.4s ease;
}

.mobile-dropdown-content a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  padding: 6px 0;
}

.mobile-dropdown-content a:hover {
  color: #ff4b4b;
}

/* --- RESPONSIVE BEHAVIOR --- */

@media (max-width: 768px) {
  .dropdown {
    display: none;
  }
  .mobile-dropdown {
    display: block;
  }

  .mobile-dropdown-content a {
    font-size: 15px;
    padding: 6px 4px;
  }
}

.map iframe {
  width: 100%;
  height: 100vh;
}

#contact {
  padding: 60px 80px;
  background: #fff;
  color: #000;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  width: 300px;
}

.contact-info h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f7f7f7;
}

.contact-info p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info a {
  color: #000;
  text-decoration: underline;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item img {
  margin-top: 8px;
  margin-right: 10px;
}

.info-item h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 5px;
}

.info-item p {
  color: #555;

  margin: 0%;
}

.contact-form {
  flex: 1;
  width: 300px;
}

.contact-form h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
}

.contact-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #333;
}

.newsletter {
  padding: 10px 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.newsletter-text {
  flex: 1;
  min-width: 250px;
}

.newsletter-text h2 {
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 16px;
  color: #f1f1f1;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  padding: 0 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #333;
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-icon i {
    font-size: 50px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 0;
  }

  .newsletter-form button {
    border-radius: 0 0 8px 8px;
  }
}

.main-footer {
  background: #f7f7f7;
  padding: 50px 70px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f7f7f7;
}

.footer-col-logo .logo {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col-logo p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-ection {
  display: flex;
  margin-bottom: 25px;
}

.newsletter-ection input[type="email"] {
  padding: 10px 15px;
  border: 1px solid #ddd;
  flex-grow: 1;
  font-size: 14px;
  outline: none;
}

.newsletter-ection button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.social-icons .icon {
  font-size: 16px;
  color: #666;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.2s;
}

.social-icons .icon:hover {
  color: #000;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.footer-bottom .copyright {
  font-size: 13px;
  color: #666;
}

.footer-bottom .payment-methods img {
  height: 20px;
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .map iframe {
    height: 50vh;
  }

  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
  }

  .footer-col-logo {
    grid-column: 1 / span 3;
  }

  .newsletter-ection input {
    font-size: 13px;
  }

  .newsletter-ection button {
    font-size: 14px;
  }

  .main-footer {
    padding: 40px 40px 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-col-logo {
    grid-column: 1 / span 2;
  }

  .footer-col h4 {
    font-size: 15px;
  }

  .newsletter-ection {
    flex-direction: column;
  }

  .newsletter-ection input,
  .newsletter-ection button {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom .payment-methods img {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .main-footer {
    padding: 30px 25px 15px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col-logo p {
    font-size: 13px;
  }

  .footer-bottom .copyright {
    font-size: 12px;
  }

  .social-icons {
    margin-bottom: 10px;
  }
}

/* FOOTER CSS STYLING */

.main-footer {
  background-color: #212020;
  color: #f7f3f3;
  padding-top: 50px;
  font-family: sans-serif;
  height: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 30px;
  /* border-bottom: 1px solid #ddd; */
}

/* Footer Column Titles */
.col-title {
  font-size: 14px;
  font-weight: bold;
  color: #f2eeee;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Contact Info Column */
.footer-bagging-logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fcfafa;
}

.call-us-free {
  font-size: 12px;
  font-weight: bold;
  color: #fbf7f7;
  margin-top: 20px;
}

.phone-number {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fffefe;
}

.address-details {
  font-size: 13px;
  line-height: 1.6;
  color: #f6f2f2;
}

#address {
  color: #fff;
}

/* Links Columns */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #faf8f8;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f9f4f4;
}

/* Newsletter Column */
.newsletter-text {
  font-size: 13px;
  color: #efeded;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  border: 1px solid #ddd;
  flex-grow: 1;
  font-size: 14px;
}

.newsletter-form .submit-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon-box {
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #f8f6f6;
  transition: background-color 0.2s, border-color 0.2s;

  border-radius: 50%;
}

.social-icon-box:hover {
  background-color: #eee;
  border-color: #bbb;
}

/* Copyright Bar */
.copyright-bar {
  background-color: #fff;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.copyright-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

.payment-icons i {
  font-size: 20px;
  margin-left: 10px;
  color: #f7f3f3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-col:nth-child(5) {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 90%;
    margin: 0 auto 20px auto;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .copyright-content {
    flex-direction: column;
    text-align: center;
  }

  .copyright-content p {
    margin-bottom: 10px;
  }
}
