/* Contact Page Styles */

/* Page specific styles */
.page.contact {
    padding-top: 120px;
}

@media (max-width: 767.98px) {
    .page.contact {
        padding-top: 80px;
    }
}

/* Contact intro */
.contact-intro {
    margin-bottom: 80px;
}

.contact-intro h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 767.98px) {
    .contact-intro h1 {
        font-size: 2rem;
    }
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 991.98px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact info section */
.contact-info-section {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-detail-value {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6;
}

.contact-detail-value a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-detail-value a:hover {
    opacity: 0.7;
}

/* Social links */
.contact-socials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-socials a {
    color: #fff;
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

.contact-socials a:hover {
    opacity: 0.7;
}

/* Map section */
.contact-map {
    margin-bottom: 80px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 4px;
    filter: grayscale(100%) invert(100%) contrast(0.9);
}

/* Contact form section */
.contact-form-section {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* CTA section */
.contact-cta {
    text-align: center;
    padding: 80px 0;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.contact-cta .cta-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta .cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}
