/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

.contact-hero {
    /* Uses base .page-hero styles */
}

/* Location Section */
.location-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.location-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.location-item svg {
    width: 20px; height: 20px;
    color: var(--green-dark);
    flex-shrink: 0;
}

/* Map Placeholder */
.map-placeholder {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, #dce8dc, #c4dcc4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(0,0,0,0.05) 49.5%, rgba(0,0,0,0.05) 50.5%, transparent 50.5%),
        linear-gradient(180deg, transparent 49.5%, rgba(0,0,0,0.05) 49.5%, rgba(0,0,0,0.05) 50.5%, transparent 50.5%);
    background-size: 40px 40px;
}

.map-visual {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.map-pin {
    width: 60px; height: 60px;
    background: var(--green-dark);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45,122,53,0.4);
}

.map-pin svg {
    width: 30px; height: 30px;
    fill: white;
    transform: rotate(45deg);
}

.map-label {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    line-height: 1.4;
}

/* ====================================
   RESPONSIVE - CONTACT
   ==================================== */
@media (max-width: 768px) {
    .location-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
