/* Office Location Section Styles */

.office-location-section {
    padding: 60px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Fullscreen Map */
.fullscreen-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Access Info Card */
.access-info-card {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 180px;
    width: 180px;
}

/* Card Title */
.card-title {
    font-size: 0.7rem;
    font-weight: 900;
    color: #000;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

/* Compact Info */
.info-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.compact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compact-icon {
    font-size: 1rem;
    line-height: 1;
}

.compact-text {
    font-size: 0.7rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

/* Routes Compact */
.routes-compact {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Route Badges */
.route-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.route-badge:hover {
    transform: scale(1.1);
}

.route-badge.midosuji {
    background: linear-gradient(135deg, #e60012, #c40010);
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}

.route-badge.sennichimae {
    background: linear-gradient(135deg, #ee86a1, #d06080);
    box-shadow: 0 4px 15px rgba(238, 134, 161, 0.4);
}

.route-badge.yotsubashi {
    background: linear-gradient(135deg, #00a0e9, #0080c0);
    box-shadow: 0 4px 15px rgba(0, 160, 233, 0.4);
}

.route-badge.kintetsu {
    background: linear-gradient(135deg, #ffa726, #ff8c00);
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .office-location-section {
        min-height: 70vh;
    }

    .access-info-card {
        top: 15px;
        left: 15px;
        max-width: 170px;
        width: 170px;
        padding: 10px 12px;
    }

    .card-title {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .compact-text {
        font-size: 0.65rem;
    }

    .route-badge {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .office-location-section {
        min-height: 70vh;
    }

    .access-info-card {
        top: auto;
        bottom: 10px;
        left: 10px;
        max-width: 160px;
        width: 160px;
        padding: 10px 12px;
    }

    .card-title {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .info-compact {
        gap: 6px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .compact-icon {
        font-size: 0.9rem;
    }

    .compact-text {
        font-size: 0.65rem;
    }

    .routes-compact {
        gap: 5px;
    }

    .route-badge {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}