.contact-us{
    background-color:white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.contact-us-main-container{
    padding: 100px 10px;
    width: 100%;
    max-width: 1124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact-text-form {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px;  */
    justify-content: space-between;
}

.contact-texts{
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}
.text-head{
    font-size: 18px;
    font-weight: 600;
    color: blue;
}
.contact-text{
    font-size: 15px;
    text-align: justify;
    line-height: 1.5em;
}


.contact-form {
    width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 8px;
    color: blue;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 20px;
    border-radius: 2px;
    border: 2px solid #ccc; /* Ensure inputs are visible */
    font-size: 15px;
    color: #333;
    background-color: white; 
    outline-color: #ffcb00;
}
.form-names{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contact-company-name{
    width: 48%;
}
.contact-person-name{
    width: 48%;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.form-buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contact-form input[type="submit"],
.contact-form input[type="reset"] {
    margin-top: 14px;
    display: inline-block;
    padding: 12px 60px;
    border-radius: 3px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s;
}
.contact-form input[type="submit"]{
    background-color: blue;
}
.contact-form input[type="reset"] {
    background-color: rgb(224, 43, 43);
}

.contact-form input[type="submit"]:hover{
    background-color: rgb(0, 0, 171);
}
.contact-form input[type="reset"]:hover {
    background-color: rgb(169, 20, 20);
}

.contact-info{
    position: absolute;
    padding: 25px 5px;
    background-color: #ffcb00;
    width: 100%;
    max-width: 1124px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    bottom: -70px;
}
.address-line{
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.address-line.location{
    width: 36%;
}
.contact-logo-container{
    height: 40px;
}
.contact-logo{
    height: 100%;
    filter: invert(1) brightness(100%) grayscale(100%);
}
.address{
    padding: 6px 0px 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:flex-start;
    gap: 8px;
}
.title-address{
    font-size: 16px;
    font-weight: 500;
    color: blue;
}
.contact-address{
    font-size: 15px;
    font-weight: 500;
    color: black;
}
.contact-address a{
    color: black;
}

.form-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-20px);
  z-index: 9999;
}

.form-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.form-toast.success {
  background-color: #28a745;
}

.form-toast.error {
  background-color: #dc3545;
}

@media screen and (max-width: 800px) {
    .contact-text-form{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact-form, .contact-texts{
        width: 90vw;
    }
    .contact-form {
        padding-top: 20px;
    }
    .form-names{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contact-company-name, .contact-person-name{
        width: 90vw;
    }
    .contact-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        position: relative;
        bottom: 0px;
    }
    .address-line, .address-line.location{
        width: 90vw;
    }
}