/* 🔹 GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #000;
}
.main-section {
  overflow-x: hidden;
}

/* 🔹 HEADER + NAVBAR */
/* ===== HEADER STYLES ===== */
header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Logo */
.logo h2 {
  font-size: 25px;
  font-weight: 800;
  /* line-height: 100%; */
  color: #000;
  width: 135px;
  height: 0px;
  font-family: inter;
  margin-left: 57px;
}
.navbar {
  width: 740px;
  height: 31px;
}

/* Navbar */
.navbar ul {
  /* background: blue; */
  width: 681px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 54px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 64px;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #555;
}
.main_li_1 {
  /* background: aqua; */
  align-items: center;
  display: flex;
  gap: 41px;
}
/* Dropdown icon beside "Features" */
.dropdown {
  display: flex;
  align-items: center;
  gap: 6px; /* space between text and icon */
}

.dropdown-icon img {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

/* Icons inside list */
.navbar ul li .account-icon,
.navbar ul li .cart-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.icon-box {
  display: flex;
  gap: 43px;
}
.account-icon img {
  border: 1px solid black;
  /* opacity: 75%; */
  border-radius: 50%;
  width: 31px;
  height: 31px;
}
.menu-open,
.menu-close {
  display: none;
}
/* .desktop-header {
  display: block;
} */
#mobileMenu,
.menu-open {
  display: none;
}

/* ===== Mobile Navbar Overlay ===== */
/* ===== MOBILE VIEW ===== */
/* ===== MOBILE VIEW ===== */
@media (max-width: 919px) {
  /* Hide desktop header on mobile */
  .desktop-header {
    display: none;
  }
  .logo h2 {
    margin-left: 20px;
  }

  /* Show hamburger icon */
  .menu-open {
    display: block;
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 2000;
    background-color: white;
    border: none;
    font-size: 26px;
    cursor: pointer;
    border-radius: 6px;
    padding: 5px 10px;
  }

  /* Mobile menu overlay */
  #mobileMenu {
    background: #000;
    color: #fff;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1999;
    display: none;
    flex-direction: column;
  }

  /* Make sure text/icons are white */
  #mobileMenu,
  #mobileMenu * {
    color: #fff !important;
  }

  .menu-close {
    display: block;
    position: fixed; /* <— make sure it's fixed, not absolute */
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 2000; /* <— higher than menu */
  }

  #mobileMenu .menu-close {
    display: none;
  }
  #mobileMenu.active .menu-close {
    display: block;
    position: fixed;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 2001;
  }

  .navbar-container2 {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    padding: 20px;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .main_li_1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 577px;
    margin-top: 29px;
  }

  .icon-box {
    display: flex;
    gap: 30px;
    margin-top: auto;
    align-self: center;
    margin-right: 154px;
  }
  .navbar ul li .account-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 52%;
    background-color: white;
    padding-left: 4px;
    padding-top: 5px;
  }

  .account-icon img {
    border: 1px solid #fff;
  }

  .dropdown-icon img {
    filter: invert(1);
  }
}
.menu-open.hide {
  display: none !important;
}

/* 🔹 MAIN CONTENT */
.main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-section {
  width: 74.75rem;
  height: 41.6875rem;
  margin: auto;
}
.hero-section {
  width: 28.875rem;
  height: 10.0625rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 29px;
}

.hero-section h2 {
  font-size: 2.5rem;
  /* margin-bottom: -2.5rem; */
  line-height: 23px;
}

.hero-section .subtitle {
  font-size: 18px;
  font-weight: 500;
  /* line-height: 23px; */
  color: #555;
  height: 25px;
  /* margin-top: 75px; */
}

.contact-box {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.contact-info {
  height: 647px;
  width: 491px;
  background: #000;
  color: #fff;
  flex: 1 1 350px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
  gap: 19px;
  border-radius: 10px;
}
.left-info-content {
  width: 335px;
  height: 430px;
  /* background: aqua; */
  margin-left: 16px;
}
.contact-info h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  width: 291px;
  height: 42px;
}
.li-icon {
  display: flex;
  gap: 26px;
  align-items: center;
}
.contact-info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-top: 2px;
  margin-left: 0px;
  width: 307px;
  height: 27px;
  color: #c9c9c9;
}

.contact-form {
  flex: 2 1 500px;
  padding: 40px;
}
/* .form-group{
  margin-top: 20px;
} */

.info-list {
  width: 396px;
  margin-top: 70px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: baseline;
}

.info-list li {
  margin: 10px 0;
}

.social-icons {
  /* margin-top: 188px; */
  display: flex;
  gap: 24px;
  margin-left: 17px;
  height: 50px;
}
.social-icons .icon {
  display: block;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 29px;
  margin-top: 7px;
  margin-left: 8px;
}

.form-group input,
textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  outline: none;
  background: transparent;
}
.form-group .form-labeld {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #8d8d8d;
}
.form-group .form-label {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: #000000;
}
.form-group .bold-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.radio-group {
  font-size: 12px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 2px;
  padding-left: 8px;
  margin-top: 16px;
  color: #000000;
}

.btn {
  background: #000000;
  display: block;
  color: #fff;
  padding: 18px 56px;
  border: none;
  line-height: 100%;
  font-size: 16px;

  margin-top: 4px;
  margin-left: 382px;

  gap: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* new footer */
/* Footer Base */
.footer {
  background-color: #0e0e0e;
  color: #ffffff;
  padding: 36px 79px;
  font-family: "Poppins", sans-serif;
}
.footer-section-h2 {
  align-items: center;
  text-align: center;
  margin-top: 74px;
  width: 96%;
  margin-bottom: 34px;
  font-size: 24px;
  line-height: 100%;
  font-weight: 800;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 77px;
  border-top: 1px solid #444;
  padding-top: 40px;
}
.footer-section1 {
  width: 381px;
}
.footer-section2 {
  width: 92px;
}
.footer-section3 {
  width: 136px;
}
.footer-section4 {
  width: 133px;
}
.footer-parent {
  width: 481px;
  display: flex;
  flex-direction: row;
  /* row-gap: 171px; */
  column-gap: inherit;
}

/* Section Styling */
.footer-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 10px;
  /* cursor: pointer; */
}

.footer-section p:hover {
  color: #fff;
  cursor: pointer;
}

/* Reach Us Items */
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-item .icon {
  width: 20px;
  height: 20px;
  background-color: #555; /* placeholder for icons */
  border-radius: 50%;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.newsletter-box button {
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

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

.note {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  /* ---- HERO SECTION ---- */
  .hero-section {
    width: 100%;
    padding: 20px;
    height: auto;
    gap: 15px;
  }

  .hero-section h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-section .subtitle {
    font-size: 1rem;
    height: auto;
  }

  /* ---- CONTACT SECTION ---- */
  .contact-section {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 15px;
  }

  .contact-box {
    flex-direction: column;
    align-items: center;
    width: 108%;
    height: auto;
  }

  .contact-info {
    width: 100%;
    margin: 0;
    padding: 25px;
    border-radius: 10px;
  }

  .left-info-content {
    width: 100%;
    height: auto;
    margin-left: 0;
    text-align: center;
    margin-bottom: 208px;
    align-items: center;
    justify-content: center;
  }

  .left-info-content h3,
  .left-info-content p {
    text-align: center;
    margin: 0 auto;
  }

  .left-info-content .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
  }

  .info-list {
    width: 100%;
    gap: 18px;
    margin-top: 40px;
  }

  .contact-form {
    width: 100%;
    padding: 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-group {
    width: 100%;
    margin-left: 0;
  }

  .btn {
    width: 100%;
    margin: 20px 0 0 0;
    text-align: center;
  }

  /* ---- FOOTER ---- */
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 30px;
  }

  .footer-section-h2 {
    font-size: 24px;
    margin: 20px 0;
  }

  .footer-parent {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .footer-section1,
  .footer-section2,
  .footer-section3,
  .footer-section4,
  .newsletter {
    width: 100%;
  }

  .newsletter-box {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
    border-radius: 4px;
  }

  .note {
    text-align: left;
  }
}

/* ---- EXTRA SMALL MOBILE FIX ---- */
@media (max-width: 480px) {
  .hero-section h2 {
    font-size: 1.5rem;
  }

  .contact-info h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    line-height: 20px;
  }

  .contact-info p {
    font-size: 11px;
    text-align: center;
    font-weight: 400;
    margin-left: -14px;
  }

  .left-info-content .social-icons {
    gap: 10px;
  }
}
