/* Contact page specific styles */
.page-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1579253/pexels-photo-1579253.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: #1a2b49;
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    font-size: 2rem;
    color: #d4af37;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.method-details h3 {
    margin: 0 0 8px;
    color: #1a2b49;
}

.method-details p {
    margin: 0;
    line-height: 1.6;
}

.property-contacts {
    background-color: #f2f2f2;
    padding: 24px;
    border-radius: 8px;
}

.property-contacts h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a2b49;
}

.property-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-contacts li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.property-contacts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-form-container {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #1a2b49;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .page-header {
        height: 30vh;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}