/* Contact Header Styles */
#subheader {
    padding: 200px 0 80px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

#subheader h1 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#subheader p {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

/* Contact Info Boxes */
.contact-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all .3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-box .icon {
    width: 80px;
    height: 80px;
    background: #c59d5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-box .icon i {
    font-size: 32px;
    color: #fff;
}

.contact-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.contact-box p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form Styles */
.form-container {
    padding: 50px;
    border-radius: 10px;
}

.form-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
}

.field-set {
    position: relative;
    border-bottom: solid thin #c69d5f;
    margin-bottom: 20px;
}

.field-set label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 16px;
    transition: all .3s ease;
    background: #f8f8f8;
}

.form-control:focus {
    border-color: #c59d5f;
    box-shadow: none;
    background: #fff;
}

textarea.form-control {
    height: auto;
    padding: 15px;
    resize: none;
}

.btn-submit {
    background: #c59d5f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all .3s ease;
    cursor: pointer;
    min-width: 200px;
}

.btn-submit:hover {
    background: #b38d4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

/* Map Styles */
.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

#map {
    height: 100%;
}

#map iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #subheader {
        padding: 150px 0 60px;
    }
    
    #subheader h1 {
        font-size: 36px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 30px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .map-container {
        margin-top: 30px;
        min-height: 300px;
    }
} 