
/* Contact Section - Enhanced */
.contact-section {
    padding: 5rem 0;
    position: relative;
    background-color: #fff8e6;
}

.contact-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.contact-form {
    flex: 1;
    background-color: #F5ECD7;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #695c34, #a18d58);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #4a4030;
    font-size: 1rem;
    color: #4a4030;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #695c34;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-image {
    flex: 1;
}

.contact-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.contact-img:hover {
    transform: scale(1.03);
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0eada;
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #695c34;
}
