/* Contact Page Styles */
/* Hero Section */
.contact-hero {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    min-height: 300px;
    position: relative;
    text-align: left;
    background-size: cover;
    background-position: center;
}

.contact-hero-title {
    color: var(--color-text-light);
    width: 100%;
    margin: 0;
    padding: 30px 50px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}

.contact-hero-title h1 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 2.6rem;
    font-weight: normal;
    position: relative;
}

.contact-hero-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-accent);
}

.contact-hero-title p {
    color: var(--color-text-light);
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Content Section */
.contact-content-wrapper {
    background-color: #ffffff;
    padding: 4rem 0;
}

.contact-container, .map-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.contact-header {
    text-align: center;
    margin: 0 0 3rem;
}

.contact-header h1 {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.contact-header .subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #f8f8f4;
    padding: 2rem;
    border-radius: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin: 0 0 0.8rem;
    color: #666;
    font-weight: 600;
}

.contact-text h4 {
    font-size: 0.95rem;
    margin: 0 0 0.4rem;
    color: #666;
    font-weight: 500;
}

.contact-text p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--color-accent);
}

.contact-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-location {
    flex: 1;
    min-width: 190px;
    background-color: #f8f8f4;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    border-left: 3px solid var(--color-accent);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
}

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

.submit-button {
    background-color: var(--color-accent);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #8c7045;
}

/* Form Status Message Styles */
.form-status {
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: #f8f4ea;
    color: var(--color-accent);
    border-left: 4px solid var(--color-accent);
}

.form-status.error {
    background-color: #f9e9e9;
    color: #9e4b4b;
    border-left: 4px solid #9e4b4b;
}

.map-container {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.maps-header {
    text-align: center;
    margin-bottom: 2rem;
}

.maps-header h2 {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.maps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.map-box {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.map-title {
    background-color: #f8f8f4;
    color: var(--color-text-dark);
    padding: 0.8rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: normal;
    text-align: center;
}

.map-frame {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media (max-width: 960px) {
    .maps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .map-box {
        width: 100%;
    }
}

@media (max-width: 960px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100%;
        max-width: 600px;
    }
    
    .contact-form-container {
        order: -1;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .contact-numbers {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-location {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-text h3,
    .contact-text h4 {
        text-align: center;
    }
    
    .contact-text p {
        text-align: center;
    }
}