/* Contact Left Container */
.contactLeftContainer {
    height: auto;
    background: #E2E2DD;
    padding-inline: 50px !important;
    padding-bottom: 30px !important;
}

/* Contact Form Bottom Text */
.conractFormBottomText {
    margin-top: 15px;
    color: black;
    font-size: 16px;
}

.conractFormBottomText a {
    color: black;
    text-decoration: underline;
}

/* Contact Right Container */
.contactRightContainer {
    background: #F5F5F0;
    padding-inline: 50px !important;
    height: auto;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Right Top */
.contactRightTop label {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.contactRightTop ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contactRightTop ul li {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contactRightTop ul li p {
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.contactRightTop ul li a {
    color: black;
    padding: 0;
    margin: 0;
}

/* Contact Info Boxes */
.contactInfoBoxs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contactInfoBox {
    padding-bottom: 15px;
    border-bottom: 3px solid #E4B65D;
}

.contactInfoBox label {
    font-size: 20px;
}

.contactInfoBox ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contactInfoBox ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
    align-items: center;
}

.contactInfoBox ul li p,
.contactInfoBox ul li a {
    padding: 0;
    margin: 0;
    color: black;
}

/* Footer Links */
.footerLinks label {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px;
}

.footerLinks ul {
    padding: 0;
    margin: 0;
}

.footerLinks ul li {
    list-style: none;
}

.footerLinks ul li,
.footerLinks ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

/* Social Footer */
.socialFooter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.socialFooter a {
    text-decoration: none;
}

/* Form Controls - General Input Styles */
input[type="text"],
input[type="email"],
textarea,
select {
    font-family: 'Bai Jamjuree', sans-serif !important;
}

select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAVCAYAAAAuJkyQAAAACXBIWXMAACxLAAAsSwGlPZapAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADwSURBVHgBvdLLDcIwDAZgV12kIzBCR+gGlElgE8KNEThmA2ADuDEGjpSi0DoPO4//krRR5E+xAYiM47iDxllq9sTBEZfrMAwvzBMaBGvucblhTegIzMn5NWutL1AxFqOW7845ME92J+5UQ60xJr+WYXs++GRv3E6re1ON9lGYP5BFPVqgfBjMYTPUtVEhDI6G6qlLtVAxjNn0vsulUSmYIKgkKhUTBZVAcTBJoBwUF5MMkqAkGBaIg5JiTDoQYMQgCKJBiTFgtcxNonxiTBYoEcXDZoAiKBEmOIxg26HXZwvh1DWsnSWvY8AAAAASUVORK5CYII=');
    background-position: 98%;
    background-repeat: no-repeat;
    background-size: 10px;
    color: #000;
}

/* Button Styles */
.btn {
    font-family: 'Bai Jamjuree', sans-serif !important;
}

.btn-dark {
    background-color: #000;
    color: #fff;
    border: none;
}

.btn-block {
    width: 100%;
}

/* Font Awesome Icons */
.fa {
    font-family: 'FontAwesome', sans-serif;
}

.fa-paper-plane:before {
    content: "\f1d8";
}

.ms-1 {
    margin-left: 0.25rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-7 {
    margin-top: 5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pt-8 {
    padding-top: 6rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.justify-content-center {
    justify-content: center;
}

.w-100 {
    width: 100%;
}

/* Form Control */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Container Fluid */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Row and Column */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .flex-md-row {
        flex-direction: row !important;
    }
    
    .pt-md-8 {
        padding-top: 6rem !important;
    }
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

/* Section Styles */
section {
    position: relative;
}

#page-contact {
    padding-top: 0;
    padding-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .contactLeftContainer,
    .contactRightContainer {
        padding: 20px !important;
    }

    .contactRightTop ul {
        gap: 8px;
    }
}

@media screen and (max-width: 768px) {
    .footerLinks label {
        font-size: 18px;
    }

    .footerLinks ul li,
    .footerLinks ul li a {
        font-size: 14px;
    }
}