.form-label {
    margin-bottom: .5rem;
    font-size:17px;
    color:#555;
}
.form-check-label  {
    margin-bottom: .5rem;
    font-size:16px;
    color:#555;
}
.form-control {
    display: block;
    width: 100%;
    padding: 16px 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #efefef;
    background-image: none;
    border: 1px solid #efefef; 
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
}
input.form-control.submitb {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 2;
    font-size: 14px;
    padding: 12px 24px;
    position: relative;
    color: #fff;
    display: inline-block;
    overflow: hidden;
    transition: all 0.5s;
    background-color: #e6af5d;
    min-width: 150px;
    margin-bottom: 15px;
    width: auto;
    border-radius: 35px;
    margin-top: 15px;
}

.factory-locations .flex-reason {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin: 45px 0;
}
.factory-locations .reason {
display: flex;
width: 30%;
}
.factory-locations .reason__figure {
margin-right: 10px;
display: flex;
flex-direction: column;
justify-content: flex-start;
min-width: 70px;
}
.factory-locations .reason__figure img {
width: 64px;
height: auto;
max-width: 100%;
}
.factory-locations .reason__title {
color: #65696f;
font-weight: 500;
margin: 0 0 8px;
}
.factory-locations .reason__text {
color: #60636c;
font-size: 16px;
line-height: 23px;
margin-bottom: 0;
}

@media screen and (max-width: 768px) {
.factory-locations {
    margin: 0px auto;
    padding: 50px 15px;
}
.factory-locations .flex-reason {
    flex-direction: column;
    margin: 0;
}
.factory-locations .reason {
    width: 100%;
    margin-bottom: 2.5rem;
}
.factory-locations .reason__figure {
    margin-right: 1rem;
    min-width: 70px;
}
}
.contact-details .grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 20px;
}

.contact-details .stat-block {
    padding: 15px;
    border-radius: 10px;
    transition: all .3s ease;
    width: 30%;
    text-align: center;
    background: #f8f8f8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-details .stat-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-details .icon img {
    width: 50px;
    vertical-align: middle;
    margin: 10px auto;
}

.contact-details .stat-number {
    color: #111;
    margin: 7px 0;
    font-weight: 600;
}

.contact-details .stat-block p a {
    color: #60636c;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-details .stat-block {
        width: 100%;
    }
}



.hero-checklist-section {
  width: 100%;
  padding: 80px 40px;
  background-color: transparent;
  font-family: 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.hero-checklist-left {
  flex: 1 1 450px;
}

.hero-checklist-left h2 {
  font-size: 2.8rem;
  font-weight: 350;
  color: #111;
  margin-bottom: 20px;
}

.hero-checklist-left p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.hero-checklist-right {
  flex: 1 1 400px;
}

.hero-checklist-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  border-left: 1px solid #e0e0e0;
}

.hero-checklist-right li {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.hero-checklist-right li strong {
  display: inline-block;
  width: 60px;
  font-weight: 700;
  color: #111;
  margin-right: 20px;
  font-family: monospace;
}

.hero-checklist-right li span {
  color: #333;
}

.hero-explore {
  width: 100%;
  min-height: 100vh;
  padding: 60px 40px;
  background-color: #fff;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-explore h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 60px;
  color: #111;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}

.hero-card {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-card .card-body {
  padding: 30px;
  flex-grow: 1;
}

.hero-card small {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 15px 0;
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero-card .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
}

.hero-card .card-footer span {
  font-size: 1.8rem;
  border: 1px solid #aaa;
  padding: 5px 12px;
  border-radius: 4px;
  background-color: #fff;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .hero-checklist-section,
  .hero-explore,
  .sub-section {
    padding: 40px 20px;
  }

  .hero-checklist {
    flex-direction: column;
    gap: 24px;
  }

  .hero-checklist-left h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-checklist-left p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-checklist-right ul {
    border-left: none;
    padding-left: 0;
  }

  .hero-checklist-right li {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  .hero-checklist-right li strong {
    width: 50px;
  }

  .form-label {
    font-size: 0.95rem;
  }

  .form-control,
  .form-check-label,
  .btn-six {
    font-size: 1rem;
  }

  .btn-six {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
  }

  .form-check,
  .form-group {
    margin-bottom: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .hero-card .card-body {
    padding: 20px;
  }

  .factory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .factory-item p {
    font-size: 0.95rem;
  }

  .grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stat-block {
    text-align: center;
  }

  .stat-block p {
    font-size: 1rem;
  }
}
