.contact-container-wrapper{
       display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact-container{
                     max-width: 1200px;
        padding: 4rem;
     display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.contact-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.contact-left h1{
    color: #522E14;
    font-size: 35px;
    font-weight: 600;
}

.contact-left p{
    color: #956D50;
    font-size: 16px;
}


.contact-box{
      background-color: white;
    border: 2px solid #F2E3D9;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-radius: 16px;
    padding: 1rem 1rem;
    width: 100%;
}

.contact-box-left{
    width: auto;
}

.contact-icon{
         width: 3rem;
    height: 3rem;
    display: flex;
     justify-content: center;
    align-items: center;
    border-radius: 12rem;
    background-color: #F97415;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.contact-icon img{
    width: 1.5rem;
}

.contact-box-right{
       width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.contact-box-heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 18px;
    color: #522E14;
}

.contact-box-text{
    font-size: 15px;
    line-height: 20px;
    color: #956D50;
}


.contact-right{
    width: 40%;
    border: 2px solid #F2E3D9;
    height: auto;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.send-msg-heading{
        font-size: 25px;
    font-weight: 600;
    line-height: 18px;
    color: #522E14;
}

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #4a3b28;
}

form label span {
  color: #e74c3c;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #f0d9c5;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #f97415;
}

button {
  width: 100%;
  background: #f97415;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e5630f;
}

.map-box-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-top: 2rem;
    gap: 2rem;
    width: 100%;

}

.map-box{
    background-color: white;
    width: 100%;
    height: 20rem;
    border: 4px solid #F9741580;
    border-radius: 15px;
}

.map-box iframe{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}


@media (max-width:1200px){
    .contact-container{
        padding: 2rem;
    }

}

@media (max-width:900px){
    .contact-container{
        padding: 1rem;
    }
      .map-box-container{
        gap: 1rem;
    }
}

@media (max-width:700px){
    .contact-container{
        flex-direction: column;
    }

    .contact-left{
        width: 100%;
    }
    .contact-right{
        width: 100%;
    }

    .map-box-container{
        grid-template-columns: repeat(1,1fr);
        gap: 1rem;
    }
}