/* map section */
.map-section {
  background: #ffffff;
  padding: 60px 0;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden; /* IMPORTANT for rounded corners */
  
}

/* Map iframe */
.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }
 
}
/* end map section */

/* form section */
.contact-section {
  background: #ffffff;
}

/* Left */
.contact-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0;
  color: #2E2E2E;
  /* margin-bottom: 12px; */
}

.contact-subtitle {
   font-family: 'Manrope', sans-serif;
  font-weight: 500;      /* Regular */
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  color: #2E2E2E;
}

.contact-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 15px;
  height: 100%;
}

.contact-card h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0;
  color: #2E2E2E;
  /* margin: 12px 0 6px; */
}

.contact-card p {
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #262222;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fde6d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Right form */
.contact-form-box {
  background: #f3efe8;
  border-radius: 28px;
  padding: 56px;
  text-align: center;
  margin-top: 25px;
}

.contact-form-box .form-control {
  border-radius: 6px;
  margin-bottom: 16px;
   font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
    font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-size: 16px !important;
  color: #ADAEBc !important;;
}

.contact-form-box  .send-btn {
 font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 8px 56px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    text-align: center;
}

 form {
     font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #ADAEBC  ;
  }
.form-control::placeholder,
.form-select::placeholder {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #ADAEBC  ;
}
  .custom-select {
    /* "right 3rem" moves it 3rem from the right edge */
    background-position: left 8rem center !important; 
    
    /* You might need to adjust padding to prevent text overlap */
    padding-right: 4rem; 
   width: 100%;
  padding: 12px 40px 12px 12px;
  font-size: 16px;
  color: #ADAEBC; /* light gray text */
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background-color: #fff;

  /* remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 8l4 4 4-4' fill='none' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.send-btn:hover {
  background: #9c3d12;
  color: #fff;
}
/* end form section */

/* hero section */
.contact-hero {
  height: 55vh;
  background: url("../assets/ContactUsbanner.webp") center/cover no-repeat;
  position: relative;
  border-radius: 0 0 80px 80px; /* bottom rounded only */
  overflow: hidden;
  /* margin-bottom: 60px; */
}

/* Dark overlay */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Centered text */
.contact-hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
}
