/* ==========================================================================
   Contact Page Styles
   ========================================================================== */


/* Contact Hero */
.contact-hero {
    padding: 2rem 0 1.5rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
}

.contact-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #9ca3af;
}

.contact-breadcrumbs a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.contact-breadcrumbs a:hover {
    color: #3b82f6;
}

/* Contact Location */
.contact-location {
    padding: 1.5rem 0 3rem;
}

/* Contact Info Row */
.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f0f9ff;
    border-radius: 12px;
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-size: 0.8125rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
}

a.contact-info-value {
    transition: color 0.2s ease;
}

a.contact-info-value:hover {
    color: #3b82f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.contact-photo-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: #f1f5f9;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-info-row {
        flex-wrap: wrap;
    }

    .contact-info-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info-item {
        flex: 1 1 100%;
    }

    .contact-info-value {
        white-space: normal;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-photo,
    .contact-map {
        height: 300px;
    }
}
