/* Contact Page Specific Styles */

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    position: relative;
    z-index: 2;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Illustrator-style vector graphics */
.vector-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.vector-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.vector-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background-color: var(--primary);
}

.vector-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background-color: var(--secondary);
}

.vector-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    background-color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
    background-color: var(--light);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none"><path d="M0 0H100V100H0V0Z" fill="%23F3F4F6"/><path d="M50 0V50H0V0H50Z" fill="%23E51E2A" fill-opacity="0.05"/><path d="M100 50V100H50V50H100Z" fill="%230C4A6E" fill-opacity="0.05"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.contact-info-content {
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.contact-details p, 
.contact-details a {
    color: var(--gray-dark);
}

.contact-details a:hover {
    color: var(--primary);
}

.business-hours {
    margin-top: 40px;
}

.business-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.hours-list li span:first-child {
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 30, 42, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}