/* Find Us Section Styles */
#find-us {
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    background-color: #E5BC5D;
}

.title-container {
    text-align: center;
    margin-bottom: 30px;
}

#find-us .title {
    font-size: 3rem;
    color: black !important;
}

.line-con {
    margin-top: 10px;
}

#find-us .line-1 {
    width: 100px;
    height: 4px;
    background-color: #000 !important;
    margin: 0 auto;
}

/* Find Us Content */
.find-us-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    height: 500px;
    margin: 1rem auto 0;
}

/* Contact Form Styles */
.contact-form-wrapper {
    flex: 1;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-wrapper input,
.contact-form-wrapper select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #2a2a2a;
    color: #fff;
}

.contact-form-wrapper button {
    background-color: #c59742;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form-wrapper button:hover {
    background-color: #a87e32;
}

.map-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .find-us-content {
        flex-direction: column;
        height: auto;
    }

    .contact-form-wrapper,
    .map-wrapper {
        width: 100%;
    }
}

/* Notification Styles */
.notification {
    background-color: #c59742;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: none;
}

.select-icon {
    margin-bottom: 0 !important;
}

label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

label select {
    width: 100%;
    padding: 0.2rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #2a2a2a;
    color: #fff;
    margin-top: 0.5rem;
}
