/**
 * Visit Us Section Styles
 * Location, map, and contact information
 */

.visit-section {
    background: linear-gradient(135deg, #fdf8fa 0%, #fff 100%);
    padding: 80px 0;
}

.visit-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.visit-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.visit-section__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.visit-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.visit-card--map .visit-card__map {
    position: relative;
    padding-bottom: 60%;
    background: #f0f0f0;
}

.visit-card--map .visit-card__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.visit-card__content {
    padding: 24px;
}

.visit-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visit-card__address {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.visit-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4488e;
    font-weight: 600;
    text-decoration: none;
}

.visit-card__link:hover {
    text-decoration: underline;
}

.visit-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-card--contact,
.visit-card--hours {
    padding: 28px;
}

.visit-card__heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visit-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visit-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #333;
    text-decoration: none;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.visit-contact-item:hover {
    background: #f0f0f0;
}

.visit-contact-item div:last-child {
    display: flex;
    flex-direction: column;
}

.visit-contact-item strong {
    font-weight: 600;
    font-size: 15px;
}

.visit-contact-item span {
    font-size: 13px;
    color: #888;
}

.visit-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-contact-icon--pink {
    background: linear-gradient(135deg, #d4488e, #b03a78);
}

.visit-contact-icon--green {
    background: #25D366;
}

.visit-contact-icon--dark {
    background: #1a1a2e;
}

.visit-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visit-hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.visit-hours-row--last {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-hours-row span {
    color: #666;
}

.visit-hours-row strong {
    font-weight: 600;
    color: #1a1a2e;
}

.visit-emergency {
    margin-top: 16px;
    padding: 12px;
    background: #fef0f5;
    border-radius: 8px;
    font-size: 13px;
    color: #b03a78;
}

/* Responsive */
@media (max-width: 768px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-section__title {
        font-size: 1.75rem;
    }

    .visit-card--contact,
    .visit-card--hours {
        padding: 20px;
    }
}
