/**
 * Visit Us Page Styles
 */

.visit-us-page {
    padding: 60px 24px 80px;
    background: linear-gradient(180deg, #f5f5f0 0%, #ffffff 100%);
    min-height: 80vh;
}

.visit-us-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em;
}

.visit-us-subtitle {
    font-size: 1.25rem !important;
    color: #4b5563 !important;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.7;
}

.visit-us-content {
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px !important;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.info-card {
    background: #ffffff !important;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.info-card h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.info-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px !important;
}

.info-card hr {
    border-color: #e5e7eb !important;
    margin: 24px 0 !important;
}

/* Dark mode */
.dark .visit-us-page {
    background: linear-gradient(180deg, #1a3d4d 0%, #15171b 100%);
}

.dark .visit-us-title {
    color: #ffffff !important;
}

.dark .visit-us-subtitle {
    color: #9ca3af !important;
}

.dark .info-card {
    background: #1f2937 !important;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3) !important;
}

.dark .info-card p {
    color: #d1d5db;
}

.dark .info-card hr {
    border-color: #374151 !important;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .visit-us-page {
        padding: 40px 20px 60px;
    }

    .visit-us-title {
        font-size: 2.25rem !important;
    }

    .visit-us-subtitle {
        font-size: 1.1rem !important;
    }

    .visit-us-content {
        flex-direction: column !important;
    }

    .visit-us-content .wp-block-column {
        flex-basis: 100% !important;
        width: 100% !important;
    }

    .map-container iframe {
        height: 300px !important;
    }
}

@media screen and (max-width: 480px) {
    .visit-us-title {
        font-size: 1.875rem !important;
    }

    .info-card {
        padding: 24px !important;
    }
}
